You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by sh...@apache.org on 2018/09/13 14:08:16 UTC

[kylin] 02/03: minor, less test rows in RocksDBLookupTableCacheTest

This is an automated email from the ASF dual-hosted git repository.

shaofengshi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kylin.git

commit 0c1ef1d4f94bcadf21be1971532ede788045e984
Author: shaofengshi <sh...@apache.org>
AuthorDate: Thu Sep 13 21:58:15 2018 +0800

    minor, less test rows in RocksDBLookupTableCacheTest
---
 .../org/apache/kylin/dict/lookup/cache/RocksDBLookupTableCacheTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core-dictionary/src/test/java/org/apache/kylin/dict/lookup/cache/RocksDBLookupTableCacheTest.java b/core-dictionary/src/test/java/org/apache/kylin/dict/lookup/cache/RocksDBLookupTableCacheTest.java
index 747fe23..eb66955 100644
--- a/core-dictionary/src/test/java/org/apache/kylin/dict/lookup/cache/RocksDBLookupTableCacheTest.java
+++ b/core-dictionary/src/test/java/org/apache/kylin/dict/lookup/cache/RocksDBLookupTableCacheTest.java
@@ -82,7 +82,7 @@ public class RocksDBLookupTableCacheTest extends LocalFileMetadataTestCase {
     @Test
     public void testBuildTableCache() throws Exception {
         String snapshotID = RandomUtil.randomUUID().toString();
-        ExtTableSnapshotInfo snapshotInfo = buildSnapshotCache(snapshotID, 100000);
+        ExtTableSnapshotInfo snapshotInfo = buildSnapshotCache(snapshotID, 10000);
         assertEquals(CacheState.AVAILABLE, RocksDBLookupTableCache.getInstance(kylinConfig).getCacheState(snapshotInfo));
     }