Joinutility seperatorLogin utility separator Infobright.com
   
 
Infobright DomainExpert error log
Posted: 07 February 2012 04:10 AM   Ignore ]  
Newbie
Rank
Total Posts:  7
Joined  2012-02-07

I need some help.My English is poor.
ICE_User_Guide document”
A value inserted into a column with a decomposition defined does not have to match the rule. Such non-matching values are inserted into a separate subcollection. This subcollection of outliers is compressed and stored independently of other subcollections.
You can obtain the accuracy of decomposition rules by setting the ControlMessages parameter in the brighthouse.ini file to 2 (or higher):ControlMessages = 2
If the parameter is set on each COMMIT for each column, Infobright reports the number of outliers among the committed values (from INSERTs and LOADs).For example:
2011-05-25 16:59:03 Decomposition of ./network/connection.ip left 15 outliers.


I set ControlMessages = 4,but I didn’t find in bh.err

mysqlshow variables like 'version_comment';
+-----------------+--------------------------------------------------+
Variable_name   Value                                            |
+-----------------+--------------------------------------------------+
version_comment build number (revision)=IB_4.0_r13151_13690(ice) |
+-----------------+--------------------------------------------------+

mysqlshow variables like 'brighthouse_ini_controlmessages';
+---------------------------------+-------+
Variable_name                   Value |
+---------------------------------+-------+
brighthouse_ini_controlmessages 4     |
+---------------------------------+-------+

mysqldesc t8;
+-------+----------+------+-----+---------+-------+
Field Type     Null Key | Default | Extra |
+-------+----------+------+-----+---------+-------+
n     char(10) | YES  |     | NULL    |       |
+-------+----------+------+-----+---------+-------+
1 row in set (0.00 sec)

mysqlCALL sys_infobright.SHOW_DECOMPOSITION('test','t8');                 
+---+-------------+-----------+---------------+--------+
# | column name | data type | decomposition | rule   |
+---+-------------+-----------+---------------+--------+
n           char      t8r           | :::.%|
+---+-------------+-----------+---------------+--------+

mysqlbegin;
Query OK0 rows affected (0.00 sec)

mysqlload data infile '/tmp/b.txt' into table t8;
Query OK1 row affected (0.03 sec)
Records1  Deleted0  Skipped0  Warnings0

mysql
commit;
Query OK0 rows affected (0.00 sec)



[root@test /tmp]# cat b.txt
"abcde" 


rule is :::.%d
“abcde” is non-matching values
but I didn’t find in bh.err,why ?

Profile
 
Posted: 07 February 2012 05:33 AM   Ignore ]   [ # 1 ]  
Jr. Member
RankRank
Total Posts:  61
Joined  2009-10-07

There was a bug in ICE that the statistics on outliers were not reported. It is fixed in the newest release 4.0.5.

Profile