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 2015/05/15 05:06:44 UTC

[32/50] [abbrv] incubator-kylin git commit: Merge pull request #460 from qhzhou/new_igt_store

Merge pull request #460 from qhzhou/new_igt_store

KYLIN-728

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

Branch: refs/heads/streaming-localdict
Commit: 73c275ed36b55ee63935be591034026eda16628d
Parents: e008e2c 0d87e8f
Author: qianhao.zhou <qi...@ebay.com>
Authored: Tue May 12 14:01:31 2015 +0800
Committer: qianhao.zhou <qi...@ebay.com>
Committed: Tue May 12 14:01:31 2015 +0800

----------------------------------------------------------------------
 .../kylin/common/util/BytesSerializer.java      |   6 +-
 .../org/apache/kylin/common/util/SSHClient.java |   5 +-
 .../kylin/cube/cuboid/CuboidScheduler.java      |  14 +-
 .../apache/kylin/dict/DictionarySerializer.java |  54 +++++
 .../invertedindex/model/IIKeyValueCodec.java    |  31 +--
 .../job/hadoop/cubev2/InMemCubeBuilder.java     | 197 +++++++++++++------
 .../kylin/job/hadoop/cubev2/InMemCuboidJob.java |   2 +-
 .../hadoop/cubev2/MapContextGTRecordWriter.java |   2 +-
 .../metadata/serializer/DataTypeSerializer.java |  32 +--
 .../kylin/storage/cube/CubeCodeSystem.java      |   1 +
 .../storage/cube/CubeHBaseReadonlyStore.java    |  14 +-
 .../kylin/storage/gridtable/GTBuilder.java      |   1 -
 .../kylin/storage/gridtable/GTComboStore.java   | 112 +++++++++++
 .../apache/kylin/storage/gridtable/GTInfo.java  |  10 +-
 .../storage/gridtable/GTInvertedIndex.java      |   4 +-
 .../kylin/storage/gridtable/GTRawScanner.java   |  24 +--
 .../kylin/storage/gridtable/GTRecord.java       |   4 +-
 .../kylin/storage/gridtable/GTRowBlock.java     |  19 +-
 .../storage/gridtable/GTSampleCodeSystem.java   |   5 +-
 .../kylin/storage/gridtable/IGTScanner.java     |   6 +-
 .../kylin/storage/gridtable/IGTStore.java       |  18 +-
 .../apache/kylin/storage/gridtable/ScanKey.java |  34 ++++
 .../storage/gridtable/diskstore/FileSystem.java |  22 +++
 .../gridtable/diskstore/GTDiskStore.java        | 160 +++++++++++++++
 .../gridtable/diskstore/HadoopFileSystem.java   |  88 +++++++++
 .../gridtable/diskstore/LocalFileSystem.java    |  60 ++++++
 .../gridtable/memstore/GTSimpleMemStore.java    |  49 +++--
 .../apache/kylin/storage/util/SizeOfUtil.java   |  21 ++
 .../invertedindex/IIStreamBuilder.java          |   6 +-
 29 files changed, 803 insertions(+), 198 deletions(-)
----------------------------------------------------------------------