ITADN

Expose IngestExternalFileOptions::failed_move_fall_back_to_copy in RocksJava

#14803Openrichinmrudul 创建于 2026-05-28
R
richinmrudulcommented
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: ```java boolean failedMoveFallBackToCopy() IngestExternalFileOptions setFailedMoveFallBackToCopy(boolean failedMoveFallBackToCopy)
0 条评论