This is an automated email from the ASF dual-hosted git repository.
jin pushed a change to branch release-1.2.0
in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph.git
from 47aa8be85 refact(api): update common 1.2 & fix jersey client code
problem (#2365)
add c997f35b0 fix(api): correct the vertex id in the edge-existence api
(#2380)
add bfe9fae15 chore: reset hugegraph version to 1.2.0 (#2382)
add bd5d68f0f refact(rocksdb): clean & reformat some code (#2200)
add b52517cc4 feat(core): add IntMapByDynamicHash V1 implement (#2377)
add 2c6fcdc71 add maven args for stage or other args (#2386)
add 4346b44f8 fix: TinkerPop unit test lack some lables (#2387)
No new revisions were added by this update.
Summary of changes:
hugegraph-pd/README.md | 5 +
hugegraph-server/Dockerfile | 6 +-
hugegraph-server/README.md | 11 +
.../hugegraph/api/traversers/EdgeExistenceAPI.java | 5 +-
.../hugegraph/backend/store/BackendTable.java | 14 +-
.../algorithm/EdgeExistenceTraverser.java | 7 +-
.../util/collection/IntMapByDynamicHash.java | 1022 ++++++++++++++++++++
.../org/apache/hugegraph/version/CoreVersion.java | 2 +-
hugegraph-server/hugegraph-dist/pom.xml | 16 +
.../backend/store/rocksdb/OpenedRocksDB.java | 20 +-
.../backend/store/rocksdb/RocksDBIngester.java | 14 +-
.../backend/store/rocksdb/RocksDBIteratorPool.java | 20 +-
.../backend/store/rocksdb/RocksDBMetrics.java | 79 +-
.../backend/store/rocksdb/RocksDBOptions.java | 11 +-
.../backend/store/rocksdb/RocksDBSessions.java | 25 +-
.../backend/store/rocksdb/RocksDBStdSessions.java | 245 ++---
.../backend/store/rocksdb/RocksDBStore.java | 113 +--
.../backend/store/rocksdb/RocksDBTable.java | 21 +-
.../backend/store/rocksdb/RocksDBTables.java | 14 +-
.../store/rocksdbsst/RocksDBSstSessions.java | 52 +-
.../backend/store/rocksdbsst/RocksDBSstStore.java | 33 +-
.../org/apache/hugegraph/tinkerpop/TestGraph.java | 4 +
.../unit/rocksdb/BaseRocksDBUnitTest.java | 17 +-
.../unit/rocksdb/RocksDBCountersTest.java | 9 +-
.../hugegraph/unit/rocksdb/RocksDBPerfTest.java | 34 +-
.../hugegraph/unit/rocksdb/RocksDBSessionTest.java | 61 +-
.../unit/rocksdb/RocksDBSessionsTest.java | 13 +-
.../unit/serializer/BinaryBackendEntryTest.java | 4 +-
.../serializer/BinaryScatterSerializerTest.java | 8 +-
.../unit/serializer/BinarySerializerTest.java | 5 +-
.../hugegraph/unit/util/collection/IntMapTest.java | 115 ++-
.../hugegraph/benchmark/BenchmarkConstants.java | 2 +-
.../map/MapRandomGetPutThroughputTest.java | 60 +-
hugegraph-server/pom.xml | 11 +
hugegraph-store/README.md | 5 +
pom.xml | 2 +-
36 files changed, 1554 insertions(+), 531 deletions(-)
create mode 100644 hugegraph-server/README.md
create mode 100644
hugegraph-server/hugegraph-core/src/main/java/org/apache/hugegraph/util/collection/IntMapByDynamicHash.java