facebook / rocksdb

A library that provides an embeddable, persistent key-value store for fast storage.
http://rocksdb.org
GNU General Public License v2.0
28.09k stars 6.25k forks source link

Expose column family export and import methods publicly #12691

Open drdcoda opened 2 months ago

drdcoda commented 2 months ago

Expose ExportColumnFamily() and CreateColumnFamilyWithImport() methods in the public C-style API. For proper usage, by any external calling application, this will require additional support functions (especially to facilitate marshalling of LiveFileMetadata structure and the ImportColumnFamilyOptions classes/structs via properties and objects from native to C# applications and back) to be implemented and exposed in the RocksDB public API.

Additional detail in post for Feature Request.