From 0b0f235724dc6f6a724131d7b03fdf47c1956cbb Mon Sep 17 00:00:00 2001 From: Yi Wu Date: Mon, 5 Dec 2016 15:55:36 -0800 Subject: [PATCH] Mention IngestExternalFile changes in HISTORY.md Summary: I hit the land button too fast and didn't include the line. Closes https://github.com/facebook/rocksdb/pull/1622 Differential Revision: D4281316 Pulled By: yiwu-arbug fbshipit-source-id: c7b38e0 --- HISTORY.md | 1 + 1 file changed, 1 insertion(+) diff --git a/HISTORY.md b/HISTORY.md index 89bedaf852..23e1b3fb48 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -14,6 +14,7 @@ * Options.level0_stop_writes_trigger default value changes from 24 to 32. * New compaction filter API: CompactionFilter::FilterV2(). Allows to drop ranges of keys. * Removed flashcache support. +* DB::AddFile() is deprecated and is replaced with DB::IngestExternalFile(). DB::IngestExternalFile() remove all the restrictions that existed for DB::AddFile. ### New Features * Add avoid_flush_during_shutdown option, which speeds up DB shutdown by not flushing unpersisted data (i.e. with disableWAL = true). Unpersisted data will be lost. The options is dynamically changeable via SetDBOptions().