You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bookkeeper.apache.org by ch...@apache.org on 2023/03/15 00:56:40 UTC

[bookkeeper] branch master updated (ea04926a0a -> 0fa39b6236)

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

chenhang pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/bookkeeper.git


    from ea04926a0a Release note for 4.15.4 (#3831)
     add 0fa39b6236 Add trigger entry location index rocksDB compact interface. (#3802)

No new revisions were added by this update.

Summary of changes:
 .../org/apache/bookkeeper/http/HttpRouter.java     |   3 +
 .../org/apache/bookkeeper/http/HttpServer.java     |   2 +
 .../apache/bookkeeper/bookie/LedgerStorage.java    |  21 +++
 .../bookie/storage/ldb/DbLedgerStorage.java        |  44 +++++++
 .../bookie/storage/ldb/EntryLocationIndex.java     |  18 +++
 .../bookie/storage/ldb/KeyValueStorage.java        |  10 ++
 .../bookie/storage/ldb/KeyValueStorageRocksDB.java |  50 ++++++-
 .../ldb/SingleDirectoryDbLedgerStorage.java        |  28 ++++
 .../server/http/BKHttpServiceProvider.java         |   3 +
 .../service/TriggerLocationCompactService.java     | 143 +++++++++++++++++++++
 .../bookkeeper/server/http/TestHttpService.java    |  81 ++++++++++++
 site3/website/docs/admin/http.md                   |  41 ++++++
 12 files changed, 438 insertions(+), 6 deletions(-)
 create mode 100644 bookkeeper-server/src/main/java/org/apache/bookkeeper/server/http/service/TriggerLocationCompactService.java