summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYueh-Hsuan Chiang <yhchiang@fb.com>2015-07-07 12:39:36 -0700
committeragiardullo <agiardullo@fb.com>2015-07-07 14:20:58 -0700
commit28d3aa3667e71f4ded4bb1cf6432fa8e992fcf21 (patch)
tree85bc92aed69931f160b143d6d33ba5f7b6d4b57c
parent79c2075b530cc28e9161269b8e392d506915d5ce (diff)
Update HISTORY.md for Listenerv3.12rocksdb-3.12
Summary: Update HISTORY.md for Listener Test Plan: no code change Reviewers: igor, sdong, IslamAbdelRahman, anthony Reviewed By: anthony Subscribers: dhruba, leveldb Differential Revision: https://reviews.facebook.net/D41325 (cherry picked from commit 59b50dcef904b86dad7fe1c45a22ff59dbc2a865)
-rw-r--r--HISTORY.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/HISTORY.md b/HISTORY.md
index 89ff62f5e..7eced978e 100644
--- a/HISTORY.md
+++ b/HISTORY.md
@@ -5,6 +5,9 @@
* Added experimental support for optimistic transactions. See include/rocksdb/utilities/optimistic_transaction.h for more info.
* Added a new way to report QPS from db_bench (check out --report_file and --report_interval_seconds)
* Added a cache for individual rows. See DBOptions::row_cache for more info.
+* Several new features on EventListener (see include/rocksdb/listener.h):
+ - OnCompationCompleted() now returns per-compaciton job statistics, defined in include/rocksdb/compaction_job_stats.h.
+ - Added OnTableFileCreated() and OnTableFileDeleted().
### Public API changes
* EventListener::OnFlushCompleted() now passes FlushJobInfo instead of a list of parameters.