Hi RocksDB maintainers,
C++ IngestExternalFileOptions exposes failed_move_fall_back_to_copy, which controls whether file ingestion falls back to copying when hard linking fails. This applies to ingestion modes such as move_files and link_files.
RocksJava's org.rocksdb.IngestExternalFileOptions does not currently expose this option, so Java users cannot control the fallback behavior.
Expected behavior:
RocksJava should expose getter/setter methods, likely:
boolean failedMoveFallBackToCopy()
IngestExternalFileOptions setFailedMoveFallBackToCopy(boolean failedMoveFallBackToCopy)
Hi RocksDB maintainers,
C++
IngestExternalFileOptionsexposesfailed_move_fall_back_to_copy, which controls whether file ingestion falls back to copying when hard linking fails. This applies to ingestion modes such asmove_filesandlink_files.RocksJava's
org.rocksdb.IngestExternalFileOptionsdoes not currently expose this option, so Java users cannot control the fallback behavior.Expected behavior:
RocksJava should expose getter/setter methods, likely: