KYLIN-2545 improve Number2BytesConverter to accept malformed numbers

Project: http://git-wip-us.apache.org/repos/asf/kylin/repo
Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/d31e7e09
Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/d31e7e09
Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/d31e7e09

Branch: refs/heads/2.0.x-hbase0.98
Commit: d31e7e0934dff7363b897d772c0d28215cc49574
Parents: 8f59aa8
Author: Li Yang <liy...@apache.org>
Authored: Fri Apr 14 15:26:32 2017 +0800
Committer: Yang Li <liy...@apache.org>
Committed: Tue Apr 18 20:41:42 2017 +0800

----------------------------------------------------------------------
 .../kylin/dict/Number2BytesConverter.java       |  22 +-
 .../mr/steps/NumberDictionaryForestTest.java    |  86 +++-
 .../flatten_data_for_without_slr_left_join.csv  | 402 -------------------
 .../ITDoggedCubeBuilderStressTest.java          |   4 +-
 .../inmemcubing/ITDoggedCubeBuilderTest.java    |   4 +-
 .../inmemcubing/ITInMemCubeBuilderTest.java     |   6 +-
 6 files changed, 95 insertions(+), 429 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/d31e7e09/core-dictionary/src/main/java/org/apache/kylin/dict/Number2BytesConverter.java
----------------------------------------------------------------------
diff --git 
a/core-dictionary/src/main/java/org/apache/kylin/dict/Number2BytesConverter.java
 
b/core-dictionary/src/main/java/org/apache/kylin/dict/Number2BytesConverter.java
index 814c95a..397ca9f 100644
--- 
a/core-dictionary/src/main/java/org/apache/kylin/dict/Number2BytesConverter.java
+++ 
b/core-dictionary/src/main/java/org/apache/kylin/dict/Number2BytesConverter.java
@@ -17,9 +17,10 @@
 */
 package org.apache.kylin.dict;
 
-import org.apache.kylin.common.util.Bytes;
-
 import java.io.Serializable;
+import java.math.BigDecimal;
+
+import org.apache.kylin.common.util.Bytes;
 
 /**
  * Created by xiefan on 17-1-20.
@@ -59,12 +60,28 @@ public class Number2BytesConverter implements 
BytesConverter<String>, Serializab
 
     @Override
     public byte[] convertToBytes(String v) {
+        v = normalizeNumber(v);
         NumberBytesCodec codec = getCodec(this.maxDigitsBeforeDecimalPoint);
         byte[] num = Bytes.toBytes(v);
         codec.encodeNumber(num, 0, num.length);
         return Bytes.copy(codec.buf, codec.bufOffset, codec.bufLen);
     }
 
+    public static String normalizeNumber(String v) {
+        boolean badBegin = (v.startsWith("0") && v.length() > 1 && v.charAt(1) 
!= '.') //
+                || (v.startsWith("-0") && v.length() > 2 && v.charAt(2) != 
'.') //
+                || v.startsWith("+");
+        if (badBegin) {
+            v = new BigDecimal(v).toPlainString();
+        }
+        
+        while (v.contains(".") && (v.endsWith("0") || v.endsWith("."))) {
+            v = v.substring(0, v.length() - 1);
+        }
+        
+        return v;
+    }
+
     @Override
     public String convertFromBytes(byte[] b, int offset, int length) {
         NumberBytesCodec codec = getCodec(this.maxDigitsBeforeDecimalPoint);
@@ -224,5 +241,4 @@ public class Number2BytesConverter implements 
BytesConverter<String>, Serializab
             return out - offset;
         }
     }
-
 }
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/kylin/blob/d31e7e09/engine-mr/src/test/java/org/apache/kylin/engine/mr/steps/NumberDictionaryForestTest.java
----------------------------------------------------------------------
diff --git 
a/engine-mr/src/test/java/org/apache/kylin/engine/mr/steps/NumberDictionaryForestTest.java
 
b/engine-mr/src/test/java/org/apache/kylin/engine/mr/steps/NumberDictionaryForestTest.java
index c31377c..414ab95 100644
--- 
a/engine-mr/src/test/java/org/apache/kylin/engine/mr/steps/NumberDictionaryForestTest.java
+++ 
b/engine-mr/src/test/java/org/apache/kylin/engine/mr/steps/NumberDictionaryForestTest.java
@@ -35,51 +35,56 @@ import java.util.Random;
 
 import org.apache.hadoop.io.Text;
 import org.apache.kylin.common.util.Bytes;
+import org.apache.kylin.dict.Number2BytesConverter;
 import org.apache.kylin.dict.NumberDictionary;
 import org.apache.kylin.dict.NumberDictionaryBuilder;
 import org.apache.kylin.dict.NumberDictionaryForestBuilder;
 import org.apache.kylin.dict.TrieDictionaryForest;
-import org.junit.Ignore;
 import org.junit.Test;
 
 /**
  * Created by xiefan on 16-11-2.
  */
-
-
 public class NumberDictionaryForestTest {
 
     @Test
     public void testNumberDictionaryForestLong() {
         List<String> list = randomLongData(100);
-        testData(list, SelfDefineSortableKey.TypeFlag.INTEGER_FAMILY_TYPE);
+        testData(list, list, 
SelfDefineSortableKey.TypeFlag.INTEGER_FAMILY_TYPE);
+        List<String> list2 = randomLongData(100);
+        testData(putInDregs(list2, false), list2, 
SelfDefineSortableKey.TypeFlag.INTEGER_FAMILY_TYPE);
     }
 
     @Test
     public void testNumberDictionaryForestDouble() {
         List<String> list = randomDoubleData(100);
-        testData(list, SelfDefineSortableKey.TypeFlag.DOUBLE_FAMILY_TYPE);
+        testData(list, list, 
SelfDefineSortableKey.TypeFlag.DOUBLE_FAMILY_TYPE);
+        List<String> list2 = randomDoubleData(100);
+        testData(putInDregs(list2, true), list2, 
SelfDefineSortableKey.TypeFlag.DOUBLE_FAMILY_TYPE);
     }
 
-    private void testData(List<String> list, SelfDefineSortableKey.TypeFlag 
flag) {
+    private void testData(List<String> humanList, List<String> expectedList, 
SelfDefineSortableKey.TypeFlag flag) {
         //stimulate map-reduce job
-        ArrayList<SelfDefineSortableKey> keyList = createKeyList(list, (byte) 
flag.ordinal());
+        ArrayList<SelfDefineSortableKey> keyList = createKeyList(humanList, 
(byte) flag.ordinal());
         Collections.sort(keyList);
+        
         //build tree
         NumberDictionaryForestBuilder b = new NumberDictionaryForestBuilder(0, 
0);
-
-        for (SelfDefineSortableKey key : keyList) {
-            String fieldValue = printKey(key);
-            b.addValue(fieldValue);
+        expectedList = numberSort(expectedList);
+        for (String value : expectedList) {
+            b.addValue(value);
         }
         TrieDictionaryForest<String> dict = b.build();
         dict.dump(System.out);
+        
         ArrayList<Integer> resultIds = new ArrayList<>();
-        for (SelfDefineSortableKey key : keyList) {
+        for (int i = 0; i < keyList.size(); i++) {
+            SelfDefineSortableKey key = keyList.get(i);
             String fieldValue = getFieldValue(key);
             resultIds.add(dict.getIdFromValue(fieldValue));
-            assertEquals(fieldValue, 
dict.getValueFromId(dict.getIdFromValue(fieldValue)));
+            assertEquals(expectedList.get(i), 
dict.getValueFromId(dict.getIdFromValue(fieldValue)));
         }
+        
         assertTrue(isIncreasedOrder(resultIds, new Comparator<Integer>() {
             @Override
             public int compare(Integer o1, Integer o2) {
@@ -88,6 +93,18 @@ public class NumberDictionaryForestTest {
         }));
     }
 
+    private List<String> numberSort(List<String> list) {
+        ArrayList<String> result = new ArrayList<>(list);
+        Collections.sort(result, new Comparator<String>() {
+            @Override
+            public int compare(String o1, String o2) {
+                double d1 = Double.parseDouble(o1);
+                double d2 = Double.parseDouble(o2);
+                return Double.compare(d1, d2);
+            }});
+        return result;
+    }
+
     @Test
     public void serializeTest() {
         List<String> testData = new ArrayList<>();
@@ -106,7 +123,6 @@ public class NumberDictionaryForestTest {
         }
     }
 
-
     @Test
     public void testVerySmallDouble() {
         List<String> testData = new ArrayList<>();
@@ -148,8 +164,6 @@ public class NumberDictionaryForestTest {
         assertTrue(dict1.getSizeOfId() == dict2.getSizeOfId());
         assertTrue(dict1.getSizeOfValue() == dict2.getSizeOfValue());
 
-        byte[] buf = new byte[dict1.getSizeOfValue()];
-
         {
             int newId = dict2.getIdFromValue(dict1.getValueFromId(0));
             assertTrue(newId == 0);
@@ -165,7 +179,6 @@ public class NumberDictionaryForestTest {
         }
     }
 
-    @Ignore
     @Test
     public void testDecimalsWithBeginZero() {
         List<String> testData = new ArrayList<>();
@@ -221,6 +234,25 @@ public class NumberDictionaryForestTest {
         return list;
     }
 
+    private List<String> putInDregs(List<String> numbers, boolean isDouble) {
+        Random rand = new Random();
+        ArrayList<String> result = new ArrayList<>();
+        for (String s : numbers) {
+            if (rand.nextDouble() < 0.5) {
+                int cut = s.startsWith("-") ? 1 : 0;
+                s = s.substring(0, cut) + "0" + s.substring(cut);
+            }
+            if (isDouble && rand.nextDouble() < 0.5) {
+                if (s.contains(".") == false)
+                    s = s + ".";
+                s = s + "0";
+            }
+            result.add(s);
+        }
+
+        return result;
+    }
+
     private ArrayList<SelfDefineSortableKey> createKeyList(List<String> 
strNumList, byte typeFlag) {
         int partationId = 0;
         ArrayList<SelfDefineSortableKey> keyList = new ArrayList<>();
@@ -267,4 +299,24 @@ public class NumberDictionaryForestTest {
         }
         return true;
     }
+    
+    @Test
+    public void testNormalizeNumber() {
+        assertEquals("0", Number2BytesConverter.normalizeNumber("+0000.000"));
+        assertEquals("0", Number2BytesConverter.normalizeNumber("-0000.000"));
+        assertEquals("0", Number2BytesConverter.normalizeNumber("00.000"));
+        assertEquals("123", 
Number2BytesConverter.normalizeNumber("00123.000"));
+        assertEquals("-123", Number2BytesConverter.normalizeNumber("-0123"));
+        assertEquals("-123.78", 
Number2BytesConverter.normalizeNumber("-0123.780"));
+        assertEquals("200", Number2BytesConverter.normalizeNumber("200"));
+        assertEquals("200", Number2BytesConverter.normalizeNumber("200.00"));
+        assertEquals("200.01", 
Number2BytesConverter.normalizeNumber("200.010"));
+        
+        for (int i = -100; i < 101; i++) {
+            String expected = "" + i;
+            int cut = expected.startsWith("-") ? 1 : 0;
+            String str = expected.substring(0, cut) + "00" + 
expected.substring(cut) + ".000";
+            assertEquals(expected, Number2BytesConverter.normalizeNumber(str));
+        }
+    }
 }

http://git-wip-us.apache.org/repos/asf/kylin/blob/d31e7e09/examples/test_case_data/localmeta/data/flatten_data_for_without_slr_left_join.csv
----------------------------------------------------------------------
diff --git 
a/examples/test_case_data/localmeta/data/flatten_data_for_without_slr_left_join.csv
 
b/examples/test_case_data/localmeta/data/flatten_data_for_without_slr_left_join.csv
deleted file mode 100644
index 949599d..0000000
--- 
a/examples/test_case_data/localmeta/data/flatten_data_for_without_slr_left_join.csv
+++ /dev/null
@@ -1,402 +0,0 @@
-2013-03-31,48028,0,\N,\N,\N,Auction,12,184.21,10000001,1,eef
-2013-11-12,164262,0,\N,\N,\N,Others,5,172.03,10000002,1,gji
-2013-04-06,82494,15,BookMagazines,NULL,Comic 
Books,Auction,14,66.6,10000003,1,jjc
-2013-05-17,66767,15,Home & Garden,NULL,Dogs,Auction,12,92.98,10000004,1,add
-2013-05-20,152801,0,Jewelry & 
Watches,NULL,Earrings,FP-GTC,5,132.33,10000005,1,ife
-2013-06-16,43398,0,Home & Garden,NULL,Cheese & 
Crackers,FP-GTC,13,7.12,10000006,1,hce
-2013-06-14,95173,0,Health & Beauty,Bath & Body,Bath Sets & 
Kits,Auction,14,204.28,10000007,1,bei
-2013-03-22,158666,15,ToyHobbies,Action Figures,Anime & 
Manga,Auction,13,35.72,10000008,1,bjb
-2013-03-10,12688,0,eBay Premier,Books & Manuscripts,Books: 
Other,Auction,12,4.13,10000009,1,daf
-2013-11-01,103324,15,ClothinShoeAccessories,Women's Shoes,Mixed 
Items,FP-GTC,5,27.48,10000010,1,cji
-2013-06-16,108782,15,Vehicle Parts & Accessories,CaTruck Parts,Car Care & 
Cleaning,FP-GTC,14,9.26,10000011,1,hch
-2013-09-12,80287,0,Computers/Tablets & Networking,Software,Office & 
Business,Auction,12,3.18,10000012,1,edc
-2013-09-28,140746,100,eBay Motors,Parts & Accessories,Vintage Car & Truck 
Parts,Others,13,3.18,10000013,1,jhi
-2013-06-15,87118,0,Sporting Goods,Outdoor 
Sports,Paintball,ABIN,14,377.94,10000014,1,age
-2013-03-14,25147,0,Sports MeCards & Fan Shop,Fan Apparel & 
Souvenirs,Baseball-MLB,Auction,12,146.33,10000015,1,afc
-2013-09-01,170302,15,Crafts,Embroidery,Design CDs,FP-GTC,5,51.23,10000016,1,jib
-2013-05-29,53064,0,Business & Industrial,Heavy Equipment,Antique & Vintage 
Farm Equip,FP-non GTC,13,72.65,10000017,1,bai
-2013-05-31,132939,0,Jewelry & Watches,Fashion 
Jewelry,Other,Auction,13,66.6,10000018,1,gii
-2013-03-18,113593,15,Phones,Mobile Phones,Mobile 
Phones,Auction,12,9.26,10000019,1,fcj
-2013-07-19,34273,100,eBay Motors,Parts & 
Accessories,Motorcycle,Auction,14,583.44,10000020,1,ifc
-2013-06-23,106340,15,Home & Garden,Gardening,Hand 
Tools,FP-GTC,14,638.72,10000021,1,jfe
-2013-05-20,150265,15,Baby,Baby Clothing,Boys,FP-GTC,14,4.54,10000022,1,ehd
-2013-05-17,24760,0,Sports MeCards & Fan Shop,Fan Apparel & 
Souvenirs,Hockey-NHL,FP-GTC,12,319.79,10000023,1,hbc
-2013-03-11,37831,0,Collectibles,Advertising,Merchandise & 
Memorabilia,Auction,12,20.35,10000024,1,dbh
-2013-01-30,1120,3,Books,First Editions,Other,FP-non GTC,5,223.63,10000025,1,igh
-2013-01-26,43972,100,eBay Motors,Parts & Accessories,ATV 
Parts,FP-GTC,13,204.28,10000026,1,jbe
-2013-03-22,166013,15,Computers,Computer Components & Parts,Video Capture & TV 
Tuner Cards,Auction,14,5.48,10000027,1,deb
-2013-07-23,15568,15,Baby,Baby Clothing,Unisex,Auction,14,27.48,10000028,1,hai
-2013-07-27,103178,15,ClothinShoeAccessories,Women's Bags,Women's 
Bags,FP-GTC,5,21.72,10000029,1,cfj
-2013-10-29,2023,0,Sporting Goods,Team 
Sports,Basketball,ABIN,12,3.18,10000030,1,abc
-2013-10-08,94847,0,Consumer Electronics,Vehicle Electronics & GPS,Car 
Video,FP-GTC,11,491.32,10000031,1,eha
-2013-04-26,15868,0,Real Estate,Land,Land,Auction,14,448.8,10000032,1,fig
-2013-01-01,32876,0,Home & Garden,Home Improvement,Plumbing & 
Fixtures,Auction,13,415.73,10000033,1,ghj
-2013-01-15,62179,0,ClothinShoes & Accessories,Women's Clothing,Athletic 
Apparel,Auction,13,377.94,10000034,1,edj
-2013-05-27,33038,15,Musical Instruments,Instruments,Guitars 
(Electric),FP-GTC,14,146.33,10000035,1,jii
-2013-11-11,156614,0,Toys & Hobbies,Diecast & Toy Vehicles,Cars: 
RacinNASCAR,FP-GTC,5,7.12,10000036,1,jbi
-2013-03-08,106246,0,Health & Beauty,Hair Care & Styling,Shampoo & 
Conditioning,Auction,13,42.99,10000037,1,hce
-2013-03-25,20865,0,ClothinShoes & Accessories,Men's Clothing,Athletic 
Apparel,Auction,13,12.85,10000038,1,jdc
-2013-08-20,15115,0,Video Games & Consoles,Video Games,Video 
Games,FP-GTC,13,55.89,10000039,1,ggc
-2013-05-17,3838,0,Jewelry & Watches,Fashion Jewelry,Charms & Charm 
Bracelets,FP-GTC,14,73.26,10000040,1,bca
-2013-06-05,759,0,Toys & Hobbies,Diecast & Toy Vehicles,CarTrucks & 
Vans,Auction,11,112.56,10000041,1,hbh
-2013-10-08,61323,0,Consumer Electronics,TVideo & Home Audio,TVideo & Audio 
Accessories,FP-non GTC,11,3.49,10000042,1,hif
-2013-08-14,121153,0,Baby,Nursery Decor,Night 
Lights,Auction,13,184.21,10000043,1,hhd
-2013-08-14,88750,0,Consumer Electronics,Vehicle Electronics & GPS,Radar & 
Laser Detectors,Auction,13,157.14,10000044,1,eif
-2013-05-17,161567,15,Computers,Laptop & Desktop Accessories,Laptop 
Batteries,FP-GTC,14,72.65,10000045,1,jjg
-2013-08-09,113802,15,Lots 
More...,Metaphysical,Herbs,FP-GTC,14,51.23,10000046,1,igd
-2013-06-30,15808,15,ClothinShoeAccessories,Women's Clothing,Tops & 
Blouses,FP-non GTC,14,15.85,10000047,1,fii
-2013-06-03,174053,3,Vehicle Parts & Accessories,Car Parts,External & Body 
Parts,FP-GTC,13,7.12,10000048,1,bdj
-2013-12-31,2635,0,Toys & Hobbies,Toy 
Soldiers,1970-Now,Auction,14,12.04,10000049,1,hfi
-2013-12-25,1161,3,DVFilm & TV,Other Formats,Videos: NTSC  
(US),Auction,13,73.26,10000050,1,gaf
-2013-03-28,64076,0,Computers/Tablets & Networking,Enterprise 
NetworkinServers,Switches & Hubs,FP-non GTC,5,184.21,10000051,1,agf
-2013-01-30,33977,15,Crafts,Scrapbooking,Albums,FP-GTC,13,172.03,10000052,1,hic
-2013-12-05,31673,0,Sports MeCards & Fan Shop,Fan Apparel & 
Souvenirs,Racing-NASCAR,FP-GTC,14,122.78,10000053,1,fae
-2013-10-08,174106,3,Vehicle Parts & Accessories,Car Parts,Transmission & 
Drivetrain,Auction,14,92.98,10000054,1,ica
-2013-12-27,26249,0,Business & Industrial,Printing & Graphic Arts,Commercial 
Printing Presses,Auction,13,12.19,10000055,1,jfa
-2013-12-16,159184,0,Sporting Goods,Winter 
Sports,Snowboarding,FP-GTC,5,15.65,10000056,1,hca
-2013-10-17,10058,3,Events Tickets,Other Tickets,Other 
Tickets,FP-GTC,11,101.79,10000057,1,ijc
-2013-11-17,48904,0,ClothinShoes & Accessories,Vintage,Women's Vintage 
Clothing,ABIN,12,7.12,10000058,1,jfd
-2013-09-18,145970,0,Toys & Hobbies,Models & Kits,Automotive,FP-non 
GTC,14,12.85,10000059,1,iab
-2013-06-30,963,0,ClothinShoes & Accessories,Vintage,Women's Vintage 
Shoes,FP-GTC,13,12.19,10000060,1,abb
-2013-10-12,118687,3,Health & Beauty,Fragrances,Women's 
Fragrances,FP-GTC,13,92.98,10000061,1,gja
-2013-08-20,20886,0,Toys & Hobbies,Diecast & Toy Vehicles,Cars: 
RacinNASCAR,FP-GTC,14,42.99,10000062,1,iba
-2013-08-29,148324,15,Phones,Mobile 
Accessories,CaseCoverSkins,Auction,13,1.88,10000063,1,deh
-2013-07-17,139255,15,Jewellery & Watches,Fine 
Jewellery,Earrings,Auction,14,21.14,10000064,1,afb
-2013-07-23,20213,0,Collectibles,Postcards,US StateCities & 
Towns,FP-GTC,5,21.14,10000065,1,ijb
-2013-01-06,32996,15,Movies,Television 
Memorabilia,Clippings,Auction,13,132.33,10000066,1,ddi
-2013-08-14,99985,0,Collectibles,Trading 
Cards,Sci-FFantasy,FP-GTC,14,120.87,10000067,1,aej
-2013-08-10,67703,3,Jewellery & Watches,Jewellery Boxes & Supplies,Jewellery 
Display,Auction,14,120.87,10000068,1,jif
-2013-09-28,65,0,Collectibles,Comics,Platinum Age (1897-1937),FP-non 
GTC,11,9.26,10000069,1,fcb
-2013-08-21,130,0,Collectibles,Transportation,Railroadiana & Trains,FP-non 
GTC,14,16.26,10000070,1,dib
-2013-03-11,164,0,Computers/Tablets & Networking,Computer Components & 
Parts,CPUProcessors,FP-GTC,14,157.14,10000071,1,ejc
-2013-05-06,216,0,Sports MeCards & Fan 
Shop,Cards,Hockey,FP-GTC,11,1.88,10000072,1,jhb
-2013-05-17,223,0,Toys & Hobbies,Diecast & Toy Vehicles,CarTrucks & Vans,FP-non 
GTC,5,12.04,10000073,1,jgg
-2013-01-10,223,0,Toys & Hobbies,Diecast & Toy Vehicles,CarTrucks & Vans,FP-non 
GTC,14,189.23,10000074,1,bgb
-2013-05-05,223,0,Toys & Hobbies,Diecast & Toy Vehicles,CarTrucks & Vans,FP-non 
GTC,5,73.26,10000075,1,efh
-2013-02-03,223,0,Toys & Hobbies,Diecast & Toy Vehicles,CarTrucks & Vans,FP-non 
GTC,5,4.13,10000076,1,jja
-2013-11-26,223,0,Toys & Hobbies,Diecast & Toy Vehicles,CarTrucks & Vans,FP-non 
GTC,5,290.72,10000077,1,cbg
-2013-08-30,223,0,Toys & Hobbies,Diecast & Toy Vehicles,CarTrucks & Vans,FP-non 
GTC,5,265.56,10000078,1,gef
-2013-04-26,279,15,BookMagazines,Children's Books,Children's 
Books,FP-GTC,5,5.91,10000079,1,eji
-2013-06-30,314,0,ClothinShoes & Accessories,Women's 
Clothing,Other,Auction,5,319.79,10000080,1,jhf
-2013-06-30,314,211,ClothinShoes & Accessories,Womens' 
Clothing,Other,Auction,5,246,10000081,1,hgg
-2013-12-16,314,211,ClothinShoes & Accessories,Womens' 
Clothing,Other,Auction,5,20.35,10000082,1,jjg
-2013-12-15,314,0,ClothinShoes & Accessories,Women's 
Clothing,Other,Auction,5,36.7,10000083,1,ejf
-2013-08-17,533,0,Coins & Paper Money,Coins: 
World,Africa,Auction,13,101.79,10000084,1,cbc
-2013-12-15,1349,0,Collectibles,Decorative Collectibles,Decorative Collectible 
Brands,ABIN,5,47.71,10000085,1,aeh
-2013-02-04,1349,0,Collectibles,Decorative Collectibles,Decorative Collectible 
Brands,ABIN,5,3.49,10000086,1,jdb
-2013-01-11,1349,0,Collectibles,Decorative Collectibles,Decorative Collectible 
Brands,ABIN,13,46.44,10000087,1,eaj
-2013-02-04,1349,0,Collectibles,Decorative Collectibles,Decorative Collectible 
Brands,ABIN,13,4.54,10000088,1,jjh
-2013-05-17,1357,0,Collectibles,Decorative Collectibles,Decorative Collectible 
Brands,ABIN,14,3.18,10000089,1,cga
-2013-11-12,1504,0,Business & Industrial,Electrical & Test Equipment,Test 
Equipment,FP-GTC,14,86.58,10000090,1,jjj
-2013-08-21,4943,0,Toys & Hobbies,Diecast & Toy Vehicles,CarTrucks & 
Vans,FP-GTC,13,12.85,10000091,1,egj
-2013-05-09,6762,0,Unknown,Unknown,Unknown,ABIN,13,16.26,10000092,1,ehg
-2013-09-19,9426,3,Mobile Phones & Communication,Home Phones & 
Accessories,Phone Accessories,Auction,13,21.14,10000093,1,fff
-2013-02-06,10866,0,Collectibles,Animals,Farm & Countryside,FP-non 
GTC,14,20.6,10000094,1,bha
-2013-02-02,11554,0,ClothinShoes & Accessories,Women's 
Clothing,Jeans,Auction,13,246,10000095,1,gfa
-2013-08-23,11848,0,Health & 
Beauty,Fragrances,Women,FP-GTC,14,109,10000096,1,jeb
-2013-08-03,13836,0,Collectibles,Decorative 
Collectibles,Spoons,Auction,13,39.41,10000097,1,baf
-2013-05-17,13836,0,Collectibles,Decorative 
Collectibles,Spoons,Auction,14,16.26,10000098,1,adh
-2013-06-06,13987,0,Collectibles,Paper,Booklets,FP-GTC,13,112.56,10000099,1,eii
-2013-07-02,15687,0,ClothinShoes & Accessories,Men's 
Clothing,T-Shirts,Auction,14,184.21,10000100,1,ijj
-2013-10-25,15687,0,ClothinShoes & Accessories,Men's 
Clothing,T-Shirts,Auction,11,27.48,10000001,1,jji
-2013-04-20,16145,3,Computers/Tablets & Networking,Computer Components & 
Parts,Other Components & Parts,FP-non GTC,12,26.45,10000002,1,jfd
-2013-03-12,16145,0,Computers/Tablets & Networking,Computer Components & 
Parts,Other,FP-non GTC,13,415.73,10000003,1,ibh
-2013-03-28,16509,0,Toys & Hobbies,Model Railroads & Trains,S 
Scale,ABIN,5,56.36,10000004,1,gaa
-2013-10-29,16509,0,Toys & Hobbies,Model Railroads & Trains,S 
Scale,ABIN,5,2.44,10000005,1,ece
-2013-05-22,20485,0,Home & 
Garden,Furniture,Other,FP-GTC,14,269.76,10000006,1,bjj
-2013-01-25,20485,101,CasArredamento e Bricolage,Cucina,Altro per 
cucina,FP-GTC,12,109,10000007,1,acd
-2013-06-12,20485,101,CasArredamento e Bricolage,Cucina,Altro per 
cucina,FP-GTC,12,101.79,10000008,1,ade
-2013-12-26,23446,23,Mode & Accessoires,Chaussures de femme,Sandales & 
Sandalettes,Auction,14,246,10000009,1,iai
-2013-12-26,23446,23,Mode & Accessoires,Chaussures de femme,Sandales & 
Sandalettes,Auction,14,189.23,10000010,1,jga
-2013-12-31,23446,23,Mode & Accessoires,Chaussures de femme,Sandales & 
Sandalettes,Auction,14,15.65,10000011,1,fed
-2013-10-04,23446,23,Mode & Accessoires,Chaussures de femme,Sandales & 
Sandalettes,Auction,14,28.23,10000012,1,gfh
-2013-03-16,24541,0,Sports MeCards & Fan Shop,Fan Apparel & 
Souvenirs,College-NCAA,FP-GTC,5,16.26,10000013,1,bjb
-2013-05-21,26262,0,Collectibles,Advertising,Food & 
Beverage,FP-GTC,5,122.78,10000014,1,jba
-2013-01-28,30059,3,Cameras & Photography,Lenses & Filters,Lens AdapterMounts & 
Tubes,FP-GTC,14,172.03,10000015,1,fjb
-2013-04-26,31387,3,Jewellery & 
Watches,Watches,Wristwatches,Auction,14,42.99,10000016,1,bdg
-2013-10-06,31387,3,Jewellery & 
Watches,Watches,Wristwatches,Auction,14,207.5,10000017,1,jja
-2013-11-06,31519,0,Computers/Tablets & Networking,Laptop & Desktop 
Accessories,Laptop Cases & Bags,FP-GTC,14,5.91,10000018,1,ggd
-2013-10-06,31519,3,Computers/Tablets & Networking,Laptop & Desktop 
Accessories,Laptop Cases & Bags,FP-GTC,14,39.41,10000019,1,bdc
-2013-12-28,31519,0,Computers/Tablets & Networking,Laptop & Desktop 
Accessories,Laptop Cases & Bags,FP-GTC,14,16.26,10000020,1,cid
-2013-11-06,31519,0,Computers/Tablets & Networking,Laptop & Desktop 
Accessories,Laptop Cases & Bags,FP-GTC,14,16.26,10000021,1,jfg
-2013-11-06,31519,0,Computers/Tablets & Networking,Laptop & Desktop 
Accessories,Laptop Cases & Bags,FP-GTC,14,78.48,10000022,1,gha
-2013-12-28,31519,3,Computers/Tablets & Networking,Laptop & Desktop 
Accessories,Laptop Cases & Bags,FP-GTC,14,190.22,10000023,1,fdh
-2013-06-11,35570,100,eBay Motors,Parts & Accessories,Motorcycle 
Parts,FP-GTC,12,2.44,10000024,1,fad
-2013-01-10,36250,0,Sporting Goods,Hunting,Decoys,Auction,5,7.12,10000025,1,hjf
-2013-09-17,38238,0,Home & Garden,Home Decor,Other,FP-non 
GTC,14,36.7,10000026,1,jdh
-2013-08-14,40059,3,Mobile Phones & Communication,Radio Communication 
Equipment,Parts & Accessories,FP-GTC,14,35.72,10000027,1,bhh
-2013-08-09,40059,3,Mobile Phones & Communication,Radio Communication 
Equipment,Parts & Accessories,FP-GTC,14,3.49,10000028,1,gjj
-2013-12-02,41940,0,Business & Industrial,Manufacturing & 
Metalworking,Metalworking Tooling,FP-GTC,13,223.63,10000029,1,cjf
-2013-02-01,41940,0,Business & Industrial,Manufacturing & 
Metalworking,Metalworking Tooling,FP-GTC,13,265.56,10000030,1,caj
-2013-07-28,43479,0,Cameras & Photo,Film Photography,Other,FP-non 
GTC,13,62.02,10000031,1,fcd
-2013-06-16,44079,0,Sporting Goods,Exercise & Fitness,GyWorkout & 
Yoga,FP-GTC,12,46.44,10000032,1,bhg
-2013-08-23,45238,101,Abbigliamento e accessori,Donna: Accessori,SciarpFoulard 
e Scialli,Auction,14,132.33,10000033,1,ddi
-2013-06-15,45333,0,ClothinShoes & Accessories,Women's Shoes,Flats & 
Oxfords,Auction,13,448.8,10000034,1,jce
-2013-06-15,45333,0,ClothinShoes & Accessories,Women's Shoes,Flats & 
Oxfords,FP-non GTC,14,207.5,10000035,1,daf
-2013-06-01,45333,0,ClothinShoes & Accessories,Women's Shoes,Flats & 
Oxfords,FP-non GTC,14,190.22,10000036,1,gfg
-2013-08-10,46575,0,Business & Industrial,Light Equipment & Tools,Air 
Tools,FP-GTC,14,16.71,10000037,1,cjj
-2013-03-22,50508,0,Cameras & Photo,Camera & Photo Accessories,LCD Hoods,FP-non 
GTC,13,4.13,10000038,1,agg
-2013-12-25,50508,0,Cameras & Photo,Camera & Photo Accessories,LCD Hoods,FP-non 
GTC,13,1.88,10000039,1,bad
-2013-07-22,50677,0,Jewelry & Watches,Fashion Jewelry,Pins & 
Brooches,FP-GTC,13,491.32,10000040,1,fhb
-2013-04-13,50677,0,Jewelry & Watches,Fashion Jewelry,Pins & 
Brooches,FP-GTC,5,2.44,10000041,1,cfc
-2013-04-16,51582,0,ClothinShoes & Accessories,Kids' ClothinShoes & Accs,Girls' 
Clothing (Sizes 4 & Up),Auction,14,56.36,10000042,1,eie
-2013-08-21,57013,0,Business & Industrial,MRO & Industrial Supply,Pumps & 
Plumbing,FP-GTC,13,15.85,10000043,1,cjc
-2013-04-22,57013,0,Business & Industrial,MRO & Industrial Supply,Pumps & 
Plumbing,FP-non GTC,14,2.44,10000044,1,hgc
-2013-08-29,57013,0,Business & Industrial,MRO & Industrial Supply,Pumps & 
Plumbing,FP-GTC,14,7.12,10000045,1,fdd
-2013-05-16,57784,0,ClothinShoes & Accessories,Baby & Toddler Clothing,Boys' 
Clothing (Newborn-5T),Auction,14,35.72,10000046,1,heg
-2013-08-23,57990,3,ClotheShoes & Accessories,Men's Clothing,Casual Shirts & 
Tops,Auction,11,9.26,10000047,1,cdf
-2013-07-10,57990,3,ClotheShoes & Accessories,Men's Clothing,Casual Shirts & 
Tops,Auction,14,3.18,10000048,1,adi
-2013-08-10,57990,3,ClotheShoes & Accessories,Men's Clothing,Casual Shirts & 
Tops,Auction,14,638.72,10000049,1,egh
-2013-08-23,57990,3,ClotheShoes & Accessories,Men's Clothing,Casual Shirts & 
Tops,Auction,14,141.7,10000050,1,hge
-2013-04-18,57990,0,ClothinShoes & Accessories,Men's Clothing,Casual 
Shirts,ABIN,13,12.19,10000051,1,egj
-2013-07-10,57990,3,ClotheShoes & Accessories,Men's Clothing,Casual Shirts & 
Tops,Auction,14,132.33,10000052,1,fea
-2013-06-16,57990,3,ClotheShoes & Accessories,Men's Clothing,Casual Shirts & 
Tops,ABIN,5,5.48,10000053,1,abf
-2013-07-15,57990,3,ClotheShoes & Accessories,Men's Clothing,Casual Shirts & 
Tops,Auction,11,1.88,10000054,1,ecc
-2013-11-06,60340,0,Entertainment Memorabilia,Movie 
Memorabilia,Pressbooks,FP-GTC,14,12.85,10000055,1,hda
-2013-12-27,60340,0,Entertainment Memorabilia,Movie 
Memorabilia,Pressbooks,FP-GTC,14,62.02,10000056,1,cgh
-2013-07-29,60606,3,Collectables,Badges/ Patches,Golly 
Badges,FP-GTC,12,15.85,10000057,1,gbf
-2013-11-17,60606,3,Collectables,Badges/ Patches,Golly 
Badges,FP-GTC,12,9.26,10000058,1,bae
-2013-07-27,60606,3,Collectables,Badges/ Patches,Golly 
Badges,FP-GTC,12,16.71,10000059,1,hag
-2013-07-29,60606,3,Collectables,Badges/ Patches,Golly 
Badges,FP-GTC,12,20.6,10000060,1,ici
-2013-01-09,63861,3,ClotheShoes & Accessories,Women's 
Clothing,Dresses,Auction,5,1.88,10000061,1,bfa
-2013-06-11,63861,0,ClothinShoes & Accessories,Women's 
Clothing,Dresses,ABIN,5,141.7,10000062,1,dea
-2013-01-10,63861,0,ClothinShoes & Accessories,Women's 
Clothing,Dresses,ABIN,5,1.88,10000063,1,bce
-2013-09-16,63861,0,ClothinShoes & Accessories,Women's 
Clothing,Dresses,Others,11,112.56,10000064,1,cfi
-2013-01-14,63861,0,ClothinShoes & Accessories,Women's 
Clothing,Dresses,Others,11,94.45,10000065,1,ijh
-2013-05-17,63861,0,ClothinShoes & Accessories,Women's 
Clothing,Dresses,Auction,14,78.48,10000066,1,gag
-2013-06-05,63861,0,ClothinShoes & Accessories,Women's 
Clothing,Dresses,ABIN,13,5.48,10000067,1,bja
-2013-05-24,63864,3,ClotheShoes & Accessories,Women's 
Clothing,Skirts,Auction,14,28.23,10000068,1,gca
-2013-05-15,63889,0,ClothinShoes & Accessories,Women's Shoes,Mixed Items & 
Lots,Others,13,3.49,10000069,1,fcf
-2013-03-25,67698,2,Business & Industrial,Retail & Services,Jewellery Packaging 
& Display,FP-GTC,11,15.65,10000070,1,fae
-2013-03-09,67698,0,Business & Industrial,Retail & Services,Jewelry Packaging & 
Display,FP-GTC,11,5.48,10000071,1,cci
-2013-12-05,67698,0,Business & Industrial,Retail & Services,Jewelry Packaging & 
Display,FP-GTC,11,246,10000072,1,efc
-2013-04-18,73506,0,Collectibles,Decorative Collectibles,Tea PotSets,FP-non 
GTC,13,122.78,10000073,1,cig
-2013-11-01,75665,0,Home & Garden,YarGarden & Outdoor Living,Gardening 
Supplies,FP-GTC,14,223.63,10000074,1,big
-2013-05-03,75708,3,Toys & Games,Action Figures,TMovies & Video 
Games,ABIN,5,141.7,10000075,1,bgi
-2013-04-21,80053,0,Computers/Tablets & Networking,MonitorProjectors & 
Accs,Monitors,FP-non GTC,11,21.14,10000076,1,bdg
-2013-03-12,80053,0,Computers/Tablets & Networking,MonitorProjectors & 
Accs,Monitors,FP-non GTC,11,55.89,10000077,1,ffh
-2013-05-19,80053,0,Computers/Tablets & Networking,MonitorProjectors & 
Accs,Monitors,FP-non GTC,11,51.23,10000078,1,chb
-2013-11-23,80135,0,Computers/Tablets & Networking,DriveStorage & Blank 
Media,Blank Media & Accessories,Auction,14,21.72,10000079,1,dhd
-2013-10-19,95672,3,ClotheShoes & Accessories,Women's 
Shoes,Trainers,Auction,14,204.28,10000080,1,gid
-2013-05-18,95672,0,ClothinShoes & Accessories,Women's 
Shoes,Athletic,Others,11,21.14,10000081,1,jij
-2013-02-01,100847,0,Half Books,Half Books,Half 
Books,Others,5,204.28,10000082,1,ddj
-2013-01-14,100847,0,Half Books,Half Books,Half 
Books,Others,5,122.78,10000083,1,hab
-2013-08-05,139973,3,Video Games & 
Consoles,Games,Games,ABIN,14,94.45,10000084,1,fai
-2013-05-19,139973,0,Video Games & Consoles,Video Games,Video 
Games,ABIN,11,86.58,10000085,1,bei
-2013-12-01,150047,3,Crafts,Jewellery 
Making,Findings,Auction,14,56.36,10000086,1,jhh
-2013-12-02,150047,3,Crafts,Jewellery 
Making,Findings,Auction,14,290.72,10000087,1,bdg
-2013-01-11,155226,0,ClothinShoes & Accessories,Women's Clothing,Sweats & 
Hoodies,FP-GTC,13,60.37,10000088,1,heh
-2013-05-27,155226,0,ClothinShoes & Accessories,Women's Clothing,Sweats & 
Hoodies,FP-GTC,13,112.56,10000089,1,hja
-2013-09-01,156356,0,Collectibles,Postcards,BuildingArchitecture,FP-GTC,13,265.56,10000090,1,egc
-2013-04-11,158798,0,Toys & Hobbies,Vintage & Antique Toys,Spinning 
Tops,FP-GTC,11,35.72,10000091,1,dgb
-2013-05-05,165888,0,Jewelry & Watches,Vintage & Antique Jewelry,Costume,FP-non 
GTC,13,92.98,10000092,1,idc
-2013-11-21,170083,3,Computers/Tablets & Networking,Computer Components & 
Parts,Memory (RAM),Auction,11,28.23,10000093,1,bgi
-2013-10-07,170083,3,Computers/Tablets & Networking,Computer Components & 
Parts,Memory (RAM),Auction,11,27.48,10000094,1,ihd
-2013-07-12,175750,3,HomFurniture & 
DIY,Bedding,Blankets,Auction,14,9.26,10000095,1,gci
-2013-06-07,175750,3,HomFurniture & 
DIY,Bedding,Blankets,Auction,14,3.18,10000096,1,fba
-2013-05-22,175750,0,Home & Garden,Bedding,Blankets & 
Throws,FP-GTC,14,12.04,10000097,1,adb
-2013-11-28,175750,3,HomFurniture & 
DIY,Bedding,Blankets,Auction,13,20.6,10000098,1,hbg
-2013-07-12,175750,3,HomFurniture & 
DIY,Bedding,Blankets,Auction,13,12.04,10000099,1,ige
-2013-06-07,175750,3,HomFurniture & 
DIY,Bedding,Blankets,Auction,14,4.13,10000100,1,jjj
-2013-12-01,175750,3,HomFurniture & 
DIY,Bedding,Blankets,Auction,14,73.26,10000201,1,ijb
-2012-10-12,48027,0,Coins & Paper Money,Paper Money: 
World,Asia,Auction,12,184.21,10000001,1,ehb
-2012-08-20,164261,0,Jewelry & Watches,Fashion 
Jewelry,Earrings,Others,5,172.03,10000002,1,cai
-2012-09-18,82494,15,BookMagazines,NULL,Comic 
Books,Auction,14,66.6,10000003,1,bie
-2012-06-30,66767,15,Home & Garden,NULL,Dogs,Auction,12,92.98,10000004,1,iba
-2012-08-29,152801,0,Jewelry & 
Watches,NULL,Earrings,FP-GTC,5,132.33,10000005,1,hjf
-2012-01-06,43398,0,Home & Garden,NULL,Cheese & 
Crackers,FP-GTC,13,7.12,10000006,1,dbg
-2012-08-14,95173,0,Health & Beauty,Bath & Body,Bath Sets & 
Kits,Auction,14,204.28,10000007,1,fdb
-2012-07-17,158666,15,ToyHobbies,Action Figures,Anime & 
Manga,Auction,13,35.72,10000008,1,icf
-2012-07-23,12688,0,eBay Premier,Books & Manuscripts,Books: 
Other,Auction,12,4.13,10000009,1,iag
-2012-07-27,103324,15,ClothinShoeAccessories,Women's Shoes,Mixed 
Items,FP-GTC,5,27.48,10000010,1,egj
-2012-07-29,108782,15,Vehicle Parts & Accessories,CaTruck Parts,Car Care & 
Cleaning,FP-GTC,14,9.26,10000011,1,jda
-2012-11-17,80287,0,Computers/Tablets & Networking,Software,Office & 
Business,Auction,12,3.18,10000012,1,cdc
-2012-10-29,140746,100,eBay Motors,Parts & Accessories,Vintage Car & Truck 
Parts,Others,13,3.18,10000013,1,efa
-2012-03-28,87118,0,Sporting Goods,Outdoor 
Sports,Paintball,ABIN,14,377.94,10000014,1,ibd
-2012-01-30,25147,0,Sports MeCards & Fan Shop,Fan Apparel & 
Souvenirs,Baseball-MLB,Auction,12,146.33,10000015,1,jbh
-2012-10-07,170302,15,Crafts,Embroidery,Design CDs,FP-GTC,5,51.23,10000016,1,bjj
-2012-11-28,53064,0,Business & Industrial,Heavy Equipment,Antique & Vintage 
Farm Equip,FP-non GTC,13,72.65,10000017,1,djd
-2012-07-12,132939,0,Jewelry & Watches,Fashion 
Jewelry,Other,Auction,13,66.6,10000018,1,gae
-2012-06-07,113593,15,Phones,Mobile Phones,Mobile 
Phones,Auction,12,9.26,10000019,1,adj
-2012-12-01,34273,100,eBay Motors,Parts & 
Accessories,Motorcycle,Auction,14,583.44,10000020,1,cdd
-2012-12-02,106340,15,Home & Garden,Gardening,Hand 
Tools,FP-GTC,14,638.72,10000021,1,cid
-2012-02-01,150265,15,Baby,Baby Clothing,Boys,FP-GTC,14,4.54,10000022,1,jfj
-2012-01-14,24760,0,Sports MeCards & Fan Shop,Fan Apparel & 
Souvenirs,Hockey-NHL,FP-GTC,12,319.79,10000023,1,abi
-2012-08-14,37831,0,Collectibles,Advertising,Merchandise & 
Memorabilia,Auction,12,20.35,10000024,1,fag
-2012-10-04,1120,3,Books,First Editions,Other,FP-non GTC,5,223.63,10000025,1,gci
-2012-12-26,43972,100,eBay Motors,Parts & Accessories,ATV 
Parts,FP-GTC,13,204.28,10000026,1,gch
-2012-12-31,166013,15,Computers,Computer Components & Parts,Video Capture & TV 
Tuner Cards,Auction,14,5.48,10000027,1,ifh
-2012-03-22,15568,15,Baby,Baby Clothing,Unisex,Auction,14,27.48,10000028,1,hfh
-2012-12-25,103178,15,ClothinShoeAccessories,Women's Bags,Women's 
Bags,FP-GTC,5,21.72,10000029,1,ggc
-2012-12-05,2023,0,Sporting Goods,Team 
Sports,Basketball,ABIN,12,3.18,10000030,1,gde
-2012-05-27,94847,0,Consumer Electronics,Vehicle Electronics & GPS,Car 
Video,FP-GTC,11,491.32,10000031,1,hha
-2012-01-11,15868,0,Real Estate,Land,Land,Auction,14,448.8,10000032,1,hgf
-2012-02-04,32876,0,Home & Garden,Home Improvement,Plumbing & 
Fixtures,Auction,13,415.73,10000033,1,eia
-2012-12-15,62179,0,ClothinShoes & Accessories,Women's Clothing,Athletic 
Apparel,Auction,13,377.94,10000034,1,cfh
-2012-06-30,33038,15,Musical Instruments,Instruments,Guitars 
(Electric),FP-GTC,14,146.33,10000035,1,ide
-2012-12-16,156614,0,Toys & Hobbies,Diecast & Toy Vehicles,Cars: 
RacinNASCAR,FP-GTC,5,7.12,10000036,1,gac
-2012-10-17,106246,0,Health & Beauty,Hair Care & Styling,Shampoo & 
Conditioning,Auction,13,42.99,10000037,1,afa
-2012-10-08,20865,0,ClothinShoes & Accessories,Men's Clothing,Athletic 
Apparel,Auction,13,12.85,10000038,1,hed
-2012-04-26,15115,0,Video Games & Consoles,Video Games,Video 
Games,FP-GTC,13,55.89,10000039,1,hif
-2012-10-06,3838,0,Jewelry & Watches,Fashion Jewelry,Charms & Charm 
Bracelets,FP-GTC,14,73.26,10000040,1,ggb
-2012-12-28,759,0,Toys & Hobbies,Diecast & Toy Vehicles,CarTrucks & 
Vans,Auction,11,112.56,10000041,1,ffi
-2012-11-06,61323,0,Consumer Electronics,TVideo & Home Audio,TVideo & Audio 
Accessories,FP-non GTC,11,3.49,10000042,1,bdh
-2012-11-06,121153,0,Baby,Nursery Decor,Night 
Lights,Auction,13,184.21,10000043,1,bej
-2012-12-27,88750,0,Consumer Electronics,Vehicle Electronics & GPS,Radar & 
Laser Detectors,Auction,13,157.14,10000044,1,ihh
-2012-07-15,161567,15,Computers,Laptop & Desktop Accessories,Laptop 
Batteries,FP-GTC,14,72.65,10000045,1,eag
-2012-08-23,113802,15,Lots 
More...,Metaphysical,Herbs,FP-GTC,14,51.23,10000046,1,fcc
-2012-07-10,15808,15,ClothinShoeAccessories,Women's Clothing,Tops & 
Blouses,FP-non GTC,14,15.85,10000047,1,gbb
-2012-08-10,174053,3,Vehicle Parts & Accessories,Car Parts,External & Body 
Parts,FP-GTC,13,7.12,10000048,1,ihb
-2012-09-01,2635,0,Toys & Hobbies,Toy 
Soldiers,1970-Now,Auction,14,12.04,10000049,1,bie
-2012-09-19,1161,3,DVFilm & TV,Other Formats,Videos: NTSC  
(US),Auction,13,73.26,10000050,1,eah
-2012-08-10,64076,0,Computers/Tablets & Networking,Enterprise 
NetworkinServers,Switches & Hubs,FP-non GTC,5,184.21,10000051,1,iag
-2012-08-21,33977,15,Crafts,Scrapbooking,Albums,FP-GTC,13,172.03,10000052,1,aga
-2012-08-29,31673,0,Sports MeCards & Fan Shop,Fan Apparel & 
Souvenirs,Racing-NASCAR,FP-GTC,14,122.78,10000053,1,ede
-2012-04-22,174106,3,Vehicle Parts & Accessories,Car Parts,Transmission & 
Drivetrain,Auction,14,92.98,10000054,1,gii
-2012-07-02,26249,0,Business & Industrial,Printing & Graphic Arts,Commercial 
Printing Presses,Auction,13,12.19,10000055,1,heb
-2012-01-28,159184,0,Sporting Goods,Winter 
Sports,Snowboarding,FP-GTC,5,15.65,10000056,1,fab
-2012-03-11,10058,3,Events Tickets,Other Tickets,Other 
Tickets,FP-GTC,11,101.79,10000057,1,dbf
-2012-05-29,48904,0,ClothinShoes & Accessories,Vintage,Women's Vintage 
Clothing,ABIN,12,7.12,10000058,1,fda
-2012-05-31,145970,0,Toys & Hobbies,Models & Kits,Automotive,FP-non 
GTC,14,12.85,10000059,1,gaf
-2012-10-25,963,0,ClothinShoes & Accessories,Vintage,Women's Vintage 
Shoes,FP-GTC,13,12.19,10000060,1,bfc
-2012-11-23,118687,3,Health & Beauty,Fragrances,Women's 
Fragrances,FP-GTC,13,92.98,10000061,1,eed
-2012-09-28,20886,0,Toys & Hobbies,Diecast & Toy Vehicles,Cars: 
RacinNASCAR,FP-GTC,14,42.99,10000062,1,deh
-2012-09-28,148324,15,Phones,Mobile 
Accessories,CaseCoverSkins,Auction,13,1.88,10000063,1,dii
-2012-10-19,139255,15,Jewellery & Watches,Fine 
Jewellery,Earrings,Auction,14,21.14,10000064,1,ceh
-2012-08-05,20213,0,Collectibles,Postcards,US StateCities & 
Towns,FP-GTC,5,21.14,10000065,1,ejd
-2012-05-19,32996,15,Movies,Television 
Memorabilia,Clippings,Auction,13,132.33,10000066,1,fab
-2012-04-11,99985,0,Collectibles,Trading 
Cards,Sci-FFantasy,FP-GTC,14,120.87,10000067,1,dab
-2012-05-16,67703,3,Jewellery & Watches,Jewellery Boxes & Supplies,Jewellery 
Display,Auction,14,120.87,10000068,1,big
-2012-05-24,65,0,Collectibles,Comics,Platinum Age (1897-1937),FP-non 
GTC,11,9.26,10000069,1,afj
-2012-01-10,130,0,Collectibles,Transportation,Railroadiana & Trains,FP-non 
GTC,14,16.26,10000070,1,igh
-2012-05-17,164,0,Computers/Tablets & Networking,Computer Components & 
Parts,CPUProcessors,FP-GTC,14,157.14,10000071,1,aff
-2012-02-03,216,0,Sports MeCards & Fan 
Shop,Cards,Hockey,FP-GTC,11,1.88,10000072,1,aif
-2012-05-05,223,0,Toys & Hobbies,Diecast & Toy Vehicles,CarTrucks & Vans,FP-non 
GTC,5,12.04,10000073,1,gcd
-2012-11-26,223,0,Toys & Hobbies,Diecast & Toy Vehicles,CarTrucks & Vans,FP-non 
GTC,14,189.23,10000074,1,hec
-2012-08-30,223,0,Toys & Hobbies,Diecast & Toy Vehicles,CarTrucks & Vans,FP-non 
GTC,5,73.26,10000075,1,cdh
-2012-05-21,223,0,Toys & Hobbies,Diecast & Toy Vehicles,CarTrucks & Vans,FP-non 
GTC,5,4.13,10000076,1,dei
-2012-06-06,223,0,Toys & Hobbies,Diecast & Toy Vehicles,CarTrucks & Vans,FP-non 
GTC,5,290.72,10000077,1,gib
-2012-06-16,223,0,Toys & Hobbies,Diecast & Toy Vehicles,CarTrucks & Vans,FP-non 
GTC,5,265.56,10000078,1,hbb
-2012-05-15,279,15,BookMagazines,Children's Books,Children's 
Books,FP-GTC,5,5.91,10000079,1,jdh
-2012-12-05,314,0,ClothinShoes & Accessories,Women's 
Clothing,Other,Auction,5,319.79,10000080,1,fag
-2012-03-25,314,211,ClothinShoes & Accessories,Womens' 
Clothing,Other,Auction,5,246,10000081,1,egj
-2012-03-09,314,211,ClothinShoes & Accessories,Womens' 
Clothing,Other,Auction,5,20.35,10000082,1,ihi
-2012-05-06,314,0,ClothinShoes & Accessories,Women's 
Clothing,Other,Auction,5,36.7,10000083,1,efi
-2012-06-15,533,0,Coins & Paper Money,Coins: 
World,Africa,Auction,13,101.79,10000084,1,hed
-2012-03-14,1349,0,Collectibles,Decorative Collectibles,Decorative Collectible 
Brands,ABIN,5,47.71,10000085,1,ajb
-2012-05-20,1349,0,Collectibles,Decorative Collectibles,Decorative Collectible 
Brands,ABIN,5,3.49,10000086,1,gdf
-2012-05-17,1349,0,Collectibles,Decorative Collectibles,Decorative Collectible 
Brands,ABIN,13,46.44,10000087,1,bch
-2012-03-11,1349,0,Collectibles,Decorative Collectibles,Decorative Collectible 
Brands,ABIN,13,4.54,10000088,1,hdb
-2012-01-10,1357,0,Collectibles,Decorative Collectibles,Decorative Collectible 
Brands,ABIN,14,3.18,10000089,1,dda
-2012-04-13,1504,0,Business & Industrial,Electrical & Test Equipment,Test 
Equipment,FP-GTC,14,86.58,10000090,1,gdd
-2012-07-22,4943,0,Toys & Hobbies,Diecast & Toy Vehicles,CarTrucks & 
Vans,FP-GTC,13,12.85,10000091,1,ahe
-2012-06-15,6762,0,Unknown,Unknown,Unknown,ABIN,13,16.26,10000092,1,cdj
-2012-06-15,9426,3,Mobile Phones & Communication,Home Phones & 
Accessories,Phone Accessories,Auction,13,21.14,10000093,1,jff
-2012-06-01,10866,0,Collectibles,Animals,Farm & Countryside,FP-non 
GTC,14,20.6,10000094,1,jfg
-2012-05-17,11554,0,ClothinShoes & Accessories,Women's 
Clothing,Jeans,Auction,13,246,10000095,1,cjc
-2012-04-26,11848,0,Health & 
Beauty,Fragrances,Women,FP-GTC,14,109,10000096,1,baf
-2012-07-28,13836,0,Collectibles,Decorative 
Collectibles,Spoons,Auction,13,39.41,10000097,1,aha
-2012-03-12,13836,0,Collectibles,Decorative 
Collectibles,Spoons,Auction,14,16.26,10000098,1,gjc
-2012-04-20,13987,0,Collectibles,Paper,Booklets,FP-GTC,13,112.56,10000099,1,ige
-2012-03-18,15687,0,ClothinShoes & Accessories,Men's 
Clothing,T-Shirts,Auction,14,184.21,10000100,1,dcg
-2012-05-17,15687,0,ClothinShoes & Accessories,Men's 
Clothing,T-Shirts,Auction,11,27.48,10000001,1,ifb
-2012-06-23,16145,3,Computers/Tablets & Networking,Computer Components & 
Parts,Other Components & Parts,FP-non GTC,12,26.45,10000002,1,dei
-2012-05-22,16145,0,Computers/Tablets & Networking,Computer Components & 
Parts,Other,FP-non GTC,13,415.73,10000003,1,gih
-2012-01-25,16509,0,Toys & Hobbies,Model Railroads & Trains,S 
Scale,ABIN,5,56.36,10000004,1,iha
-2012-06-12,16509,0,Toys & Hobbies,Model Railroads & Trains,S 
Scale,ABIN,5,2.44,10000005,1,ige
-2012-05-17,20485,0,Home & 
Garden,Furniture,Other,FP-GTC,14,269.76,10000006,1,iab
-2012-08-03,20485,101,CasArredamento e Bricolage,Cucina,Altro per 
cucina,FP-GTC,12,109,10000007,1,hhb
-2012-05-17,20485,101,CasArredamento e Bricolage,Cucina,Altro per 
cucina,FP-GTC,12,101.79,10000008,1,ehc
-2012-08-21,23446,23,Mode & Accessoires,Chaussures de femme,Sandales & 
Sandalettes,Auction,14,246,10000009,1,dcc
-2012-08-21,23446,23,Mode & Accessoires,Chaussures de femme,Sandales & 
Sandalettes,Auction,14,189.23,10000010,1,hia
-2012-04-18,23446,23,Mode & Accessoires,Chaussures de femme,Sandales & 
Sandalettes,Auction,14,15.65,10000011,1,dja
-2012-06-16,23446,23,Mode & Accessoires,Chaussures de femme,Sandales & 
Sandalettes,Auction,14,28.23,10000012,1,baa
-2012-01-09,24541,0,Sports MeCards & Fan Shop,Fan Apparel & 
Souvenirs,College-NCAA,FP-GTC,5,16.26,10000013,1,aib
-2012-05-03,26262,0,Collectibles,Advertising,Food & 
Beverage,FP-GTC,5,122.78,10000014,1,dia
-2012-05-20,30059,3,Cameras & Photography,Lenses & Filters,Lens AdapterMounts & 
Tubes,FP-GTC,14,172.03,10000015,1,ebd
-2012-03-12,31387,3,Jewellery & 
Watches,Watches,Wristwatches,Auction,14,42.99,10000016,1,gbe
-2012-05-19,31387,3,Jewellery & 
Watches,Watches,Wristwatches,Auction,14,207.5,10000017,1,fhg
-2012-04-21,31519,0,Computers/Tablets & Networking,Laptop & Desktop 
Accessories,Laptop Cases & Bags,FP-GTC,14,5.91,10000018,1,bhg
-2012-05-18,31519,3,Computers/Tablets & Networking,Laptop & Desktop 
Accessories,Laptop Cases & Bags,FP-GTC,14,39.41,10000019,1,gaf
-2012-06-16,31519,0,Computers/Tablets & Networking,Laptop & Desktop 
Accessories,Laptop Cases & Bags,FP-GTC,14,16.26,10000020,1,bad
-2012-06-11,31519,0,Computers/Tablets & Networking,Laptop & Desktop 
Accessories,Laptop Cases & Bags,FP-GTC,14,16.26,10000021,1,fic
-2012-03-31,31519,0,Computers/Tablets & Networking,Laptop & Desktop 
Accessories,Laptop Cases & Bags,FP-GTC,14,78.48,10000022,1,haj
-2012-11-12,31519,3,Computers/Tablets & Networking,Laptop & Desktop 
Accessories,Laptop Cases & Bags,FP-GTC,14,190.22,10000023,1,jcf
-2012-04-06,35570,100,eBay Motors,Parts & Accessories,Motorcycle 
Parts,FP-GTC,12,2.44,10000024,1,bjc
-2012-11-01,36250,0,Sporting Goods,Hunting,Decoys,Auction,5,7.12,10000025,1,def
-2012-02-06,38238,0,Home & Garden,Home Decor,Other,FP-non 
GTC,14,36.7,10000026,1,gfj
-2012-06-16,40059,3,Mobile Phones & Communication,Radio Communication 
Equipment,Parts & Accessories,FP-GTC,14,35.72,10000027,1,gbf
-2012-09-12,40059,3,Mobile Phones & Communication,Radio Communication 
Equipment,Parts & Accessories,FP-GTC,14,3.49,10000028,1,dfi
-2012-04-16,41940,0,Business & Industrial,Manufacturing & 
Metalworking,Metalworking Tooling,FP-GTC,13,223.63,10000029,1,fhf
-2012-11-01,41940,0,Business & Industrial,Manufacturing & 
Metalworking,Metalworking Tooling,FP-GTC,13,265.56,10000030,1,ffc
-2012-06-14,43479,0,Cameras & Photo,Film Photography,Other,FP-non 
GTC,13,62.02,10000031,1,iid
-2012-11-12,44079,0,Sporting Goods,Exercise & Fitness,GyWorkout & 
Yoga,FP-GTC,12,46.44,10000032,1,dhg
-2012-03-22,45238,101,Abbigliamento e accessori,Donna: Accessori,SciarpFoulard 
e Scialli,Auction,14,132.33,10000033,1,dab
-2012-05-22,45333,0,ClothinShoes & Accessories,Women's Shoes,Flats & 
Oxfords,Auction,13,448.8,10000034,1,hci
-2012-03-10,45333,0,ClothinShoes & Accessories,Women's Shoes,Flats & 
Oxfords,FP-non GTC,14,207.5,10000035,1,hgh
-2012-05-17,45333,0,ClothinShoes & Accessories,Women's Shoes,Flats & 
Oxfords,FP-non GTC,14,190.22,10000036,1,ehc
-2012-09-01,46575,0,Business & Industrial,Light Equipment & Tools,Air 
Tools,FP-GTC,14,16.71,10000037,1,djg
-2012-04-18,50508,0,Cameras & Photo,Camera & Photo Accessories,LCD Hoods,FP-non 
GTC,13,4.13,10000038,1,gcg
-2012-06-05,50508,0,Cameras & Photo,Camera & Photo Accessories,LCD Hoods,FP-non 
GTC,13,1.88,10000039,1,bfa
-2012-10-08,50677,0,Jewelry & Watches,Fashion Jewelry,Pins & 
Brooches,FP-GTC,13,491.32,10000040,1,dah
-2012-09-17,50677,0,Jewelry & Watches,Fashion Jewelry,Pins & 
Brooches,FP-GTC,5,2.44,10000041,1,eeh
-2012-02-02,51582,0,ClothinShoes & Accessories,Kids' ClothinShoes & Accs,Girls' 
Clothing (Sizes 4 & Up),Auction,14,56.36,10000042,1,jaf
-2012-08-23,57013,0,Business & Industrial,MRO & Industrial Supply,Pumps & 
Plumbing,FP-GTC,13,15.85,10000043,1,hfc
-2012-08-17,57013,0,Business & Industrial,MRO & Industrial Supply,Pumps & 
Plumbing,FP-non GTC,14,2.44,10000044,1,ebg
-2012-05-05,57013,0,Business & Industrial,MRO & Industrial Supply,Pumps & 
Plumbing,FP-GTC,14,7.12,10000045,1,aff
-2012-03-08,57784,0,ClothinShoes & Accessories,Baby & Toddler Clothing,Boys' 
Clothing (Newborn-5T),Auction,14,35.72,10000046,1,hdc
-2012-03-16,57990,3,ClotheShoes & Accessories,Men's Clothing,Casual Shirts & 
Tops,Auction,11,9.26,10000047,1,hai
-2012-05-09,57990,3,ClotheShoes & Accessories,Men's Clothing,Casual Shirts & 
Tops,Auction,14,3.18,10000048,1,fdi
-2012-03-25,57990,3,ClotheShoes & Accessories,Men's Clothing,Casual Shirts & 
Tops,Auction,14,638.72,10000049,1,gii
-2012-06-05,57990,3,ClotheShoes & Accessories,Men's Clothing,Casual Shirts & 
Tops,Auction,14,141.7,10000050,1,cgg
-2012-01-10,57990,0,ClothinShoes & Accessories,Men's Clothing,Casual 
Shirts,ABIN,13,12.19,10000051,1,hed
-2012-06-11,57990,3,ClotheShoes & Accessories,Men's Clothing,Casual Shirts & 
Tops,Auction,14,132.33,10000052,1,jhf
-2012-08-23,57990,3,ClotheShoes & Accessories,Men's Clothing,Casual Shirts & 
Tops,ABIN,5,5.48,10000053,1,cbb
-2012-08-20,57990,3,ClotheShoes & Accessories,Men's Clothing,Casual Shirts & 
Tops,Auction,11,1.88,10000054,1,bed
-2012-08-09,60340,0,Entertainment Memorabilia,Movie 
Memorabilia,Pressbooks,FP-GTC,14,12.85,10000055,1,dei
-2012-06-30,60340,0,Entertainment Memorabilia,Movie 
Memorabilia,Pressbooks,FP-GTC,14,62.02,10000056,1,dbb
-2012-06-03,60606,3,Collectables,Badges/ Patches,Golly 
Badges,FP-GTC,12,15.85,10000057,1,fbf
-2012-08-14,60606,3,Collectables,Badges/ Patches,Golly 
Badges,FP-GTC,12,9.26,10000058,1,ijd
-2012-08-14,60606,3,Collectables,Badges/ Patches,Golly 
Badges,FP-GTC,12,16.71,10000059,1,hci
-2012-05-17,60606,3,Collectables,Badges/ Patches,Golly 
Badges,FP-GTC,12,20.6,10000060,1,hjh
-2012-07-23,63861,3,ClotheShoes & Accessories,Women's 
Clothing,Dresses,Auction,5,1.88,10000061,1,cic
-2012-07-27,63861,0,ClothinShoes & Accessories,Women's 
Clothing,Dresses,ABIN,5,141.7,10000062,1,cig
-2012-07-29,63861,0,ClothinShoes & Accessories,Women's 
Clothing,Dresses,ABIN,5,1.88,10000063,1,gae
-2012-11-17,63861,0,ClothinShoes & Accessories,Women's 
Clothing,Dresses,Others,11,112.56,10000064,1,bjd
-2012-10-29,63861,0,ClothinShoes & Accessories,Women's 
Clothing,Dresses,Others,11,94.45,10000065,1,cih
-2012-03-28,63861,0,ClothinShoes & Accessories,Women's 
Clothing,Dresses,Auction,14,78.48,10000066,1,hbe
-2012-01-30,63861,0,ClothinShoes & Accessories,Women's 
Clothing,Dresses,ABIN,13,5.48,10000067,1,eec
-2012-01-26,63864,3,ClotheShoes & Accessories,Women's 
Clothing,Skirts,Auction,14,28.23,10000068,1,deb
-2012-11-21,63889,0,ClothinShoes & Accessories,Women's Shoes,Mixed Items & 
Lots,Others,13,3.49,10000069,1,bgd
-2012-07-12,67698,2,Business & Industrial,Retail & Services,Jewellery Packaging 
& Display,FP-GTC,11,15.65,10000070,1,cgg
-2012-06-07,67698,0,Business & Industrial,Retail & Services,Jewelry Packaging & 
Display,FP-GTC,11,5.48,10000071,1,heb
-2012-12-01,67698,0,Business & Industrial,Retail & Services,Jewelry Packaging & 
Display,FP-GTC,11,246,10000072,1,jcf
-2012-12-02,73506,0,Collectibles,Decorative Collectibles,Tea PotSets,FP-non 
GTC,13,122.78,10000073,1,djh
-2012-02-01,75665,0,Home & Garden,YarGarden & Outdoor Living,Gardening 
Supplies,FP-GTC,14,223.63,10000074,1,ejc
-2012-01-14,75708,3,Toys & Games,Action Figures,TMovies & Video 
Games,ABIN,5,141.7,10000075,1,gjh
-2012-09-16,80053,0,Computers/Tablets & Networking,MonitorProjectors & 
Accs,Monitors,FP-non GTC,11,21.14,10000076,1,cid
-2012-08-09,80053,0,Computers/Tablets & Networking,MonitorProjectors & 
Accs,Monitors,FP-non GTC,11,55.89,10000077,1,ccd
-2012-12-26,80053,0,Computers/Tablets & Networking,MonitorProjectors & 
Accs,Monitors,FP-non GTC,11,51.23,10000078,1,bfh
-2012-12-31,80135,0,Computers/Tablets & Networking,DriveStorage & Blank 
Media,Blank Media & Accessories,Auction,14,21.72,10000079,1,gcg
-2012-03-22,95672,3,ClotheShoes & Accessories,Women's 
Shoes,Trainers,Auction,14,204.28,10000080,1,bji
-2012-12-25,95672,0,ClothinShoes & Accessories,Women's 
Shoes,Athletic,Others,11,21.14,10000081,1,dig
-2012-01-15,100847,0,Half Books,Half Books,Half 
Books,Others,5,204.28,10000082,1,eei
-2012-05-27,100847,0,Half Books,Half Books,Half 
Books,Others,5,122.78,10000083,1,icj
-2012-01-11,139973,3,Video Games & 
Consoles,Games,Games,ABIN,14,94.45,10000084,1,jfe
-2012-02-04,139973,0,Video Games & Consoles,Video Games,Video 
Games,ABIN,11,86.58,10000085,1,efj
-2012-12-15,150047,3,Crafts,Jewellery 
Making,Findings,Auction,14,56.36,10000086,1,icd
-2012-06-30,150047,3,Crafts,Jewellery 
Making,Findings,Auction,14,290.72,10000087,1,dci
-2012-12-16,155226,0,ClothinShoes & Accessories,Women's Clothing,Sweats & 
Hoodies,FP-GTC,13,60.37,10000088,1,ghg
-2012-11-11,155226,0,ClothinShoes & Accessories,Women's Clothing,Sweats & 
Hoodies,FP-GTC,13,112.56,10000089,1,ebc
-2012-10-08,156356,0,Collectibles,Postcards,BuildingArchitecture,FP-GTC,13,265.56,10000090,1,gdh
-2012-04-26,158798,0,Toys & Hobbies,Vintage & Antique Toys,Spinning 
Tops,FP-GTC,11,35.72,10000091,1,cbc
-2012-10-06,165888,0,Jewelry & Watches,Vintage & Antique Jewelry,Costume,FP-non 
GTC,13,92.98,10000092,1,gij
-2012-12-28,170083,3,Computers/Tablets & Networking,Computer Components & 
Parts,Memory (RAM),Auction,11,28.23,10000093,1,ife
-2012-11-06,170083,3,Computers/Tablets & Networking,Computer Components & 
Parts,Memory (RAM),Auction,11,27.48,10000094,1,hgb
-2012-11-06,175750,3,HomFurniture & 
DIY,Bedding,Blankets,Auction,14,9.26,10000095,1,dfa
-2012-12-27,175750,3,HomFurniture & 
DIY,Bedding,Blankets,Auction,14,3.18,10000096,1,jja
-2012-01-01,175750,0,Home & Garden,Bedding,Blankets & 
Throws,FP-GTC,14,12.04,10000097,1,gjf
-2012-08-23,175750,3,HomFurniture & 
DIY,Bedding,Blankets,Auction,13,20.6,10000098,1,bif
-2012-07-10,175750,3,HomFurniture & 
DIY,Bedding,Blankets,Auction,13,12.04,10000099,1,iad
-2012-08-10,175750,3,HomFurniture & 
DIY,Bedding,Blankets,Auction,14,4.13,10000100,1,bfg
-2012-07-19,175750,3,HomFurniture & 
DIY,Bedding,Blankets,Auction,14,73.26,10000201,1,dfg

http://git-wip-us.apache.org/repos/asf/kylin/blob/d31e7e09/kylin-it/src/test/java/org/apache/kylin/cube/inmemcubing/ITDoggedCubeBuilderStressTest.java
----------------------------------------------------------------------
diff --git 
a/kylin-it/src/test/java/org/apache/kylin/cube/inmemcubing/ITDoggedCubeBuilderStressTest.java
 
b/kylin-it/src/test/java/org/apache/kylin/cube/inmemcubing/ITDoggedCubeBuilderStressTest.java
index 0c32d18..a19b8c7 100644
--- 
a/kylin-it/src/test/java/org/apache/kylin/cube/inmemcubing/ITDoggedCubeBuilderStressTest.java
+++ 
b/kylin-it/src/test/java/org/apache/kylin/cube/inmemcubing/ITDoggedCubeBuilderStressTest.java
@@ -66,8 +66,8 @@ public class ITDoggedCubeBuilderStressTest extends 
LocalFileMetadataTestCase {
         KylinConfig kylinConfig = KylinConfig.getInstanceFromEnv();
         CubeManager cubeManager = CubeManager.getInstance(kylinConfig);
 
-        cube = 
cubeManager.getCube("test_kylin_cube_without_slr_left_join_empty");
-        flatTable = LOCALMETA_TEST_DATA + 
"/data/flatten_data_for_without_slr_left_join.csv";
+        cube = cubeManager.getCube("ssb");
+        flatTable = LOCALMETA_TEST_DATA + 
"/data/kylin_intermediate_ssb_19920101000000_19920201000000.csv";
         dictionaryMap = ITInMemCubeBuilderTest.getDictionaryMap(cube, 
flatTable);
     }
 

http://git-wip-us.apache.org/repos/asf/kylin/blob/d31e7e09/kylin-it/src/test/java/org/apache/kylin/cube/inmemcubing/ITDoggedCubeBuilderTest.java
----------------------------------------------------------------------
diff --git 
a/kylin-it/src/test/java/org/apache/kylin/cube/inmemcubing/ITDoggedCubeBuilderTest.java
 
b/kylin-it/src/test/java/org/apache/kylin/cube/inmemcubing/ITDoggedCubeBuilderTest.java
index 6f29812..dbd9ce2 100644
--- 
a/kylin-it/src/test/java/org/apache/kylin/cube/inmemcubing/ITDoggedCubeBuilderTest.java
+++ 
b/kylin-it/src/test/java/org/apache/kylin/cube/inmemcubing/ITDoggedCubeBuilderTest.java
@@ -70,8 +70,8 @@ public class ITDoggedCubeBuilderTest extends 
LocalFileMetadataTestCase {
         KylinConfig kylinConfig = KylinConfig.getInstanceFromEnv();
         CubeManager cubeManager = CubeManager.getInstance(kylinConfig);
 
-        cube = 
cubeManager.getCube("test_kylin_cube_without_slr_left_join_empty");
-        flatTable = LocalFileMetadataTestCase.LOCALMETA_TEST_DATA + 
"/data/flatten_data_for_without_slr_left_join.csv";
+        cube = cubeManager.getCube("ssb");
+        flatTable = LocalFileMetadataTestCase.LOCALMETA_TEST_DATA + 
"/data/kylin_intermediate_ssb_19920101000000_19920201000000.csv";
         dictionaryMap = ITInMemCubeBuilderTest.getDictionaryMap(cube, 
flatTable);
     }
 

http://git-wip-us.apache.org/repos/asf/kylin/blob/d31e7e09/kylin-it/src/test/java/org/apache/kylin/cube/inmemcubing/ITInMemCubeBuilderTest.java
----------------------------------------------------------------------
diff --git 
a/kylin-it/src/test/java/org/apache/kylin/cube/inmemcubing/ITInMemCubeBuilderTest.java
 
b/kylin-it/src/test/java/org/apache/kylin/cube/inmemcubing/ITInMemCubeBuilderTest.java
index 35a4f05..ea66c73 100644
--- 
a/kylin-it/src/test/java/org/apache/kylin/cube/inmemcubing/ITInMemCubeBuilderTest.java
+++ 
b/kylin-it/src/test/java/org/apache/kylin/cube/inmemcubing/ITInMemCubeBuilderTest.java
@@ -81,9 +81,9 @@ public class ITInMemCubeBuilderTest extends 
LocalFileMetadataTestCase {
     }
 
     @Test
-    public void testKylinCube() throws Exception {
-        testBuild("test_kylin_cube_without_slr_left_join_empty", //
-                LOCALMETA_TEST_DATA + 
"/data/flatten_data_for_without_slr_left_join.csv", 7000, 4);
+    public void testSSBCubeMore() throws Exception {
+        testBuild("ssb", //
+                LOCALMETA_TEST_DATA + 
"/data/kylin_intermediate_ssb_19920101000000_19920201000000.csv", 7000, 4);
     }
 
     @Test

Reply via email to