diff --git a/db/external_sst_file_ingestion_job.cc b/db/external_sst_file_ingestion_job.cc index 51b636678..7a93a2dc4 100644 --- a/db/external_sst_file_ingestion_job.cc +++ b/db/external_sst_file_ingestion_job.cc @@ -142,6 +142,9 @@ Status ExternalSstFileIngestionJob::Prepare( ingestion_options_.failed_move_fall_back_to_copy) { // Original file is on a different FS, use copy instead of hard linking. f.copy_file = true; + ROCKS_LOG_INFO(db_options_.info_log, + "Triy to link file %s but it's not supported : %s", + path_outside_db.c_str(), status.ToString().c_str()); } } else { f.copy_file = true; diff --git a/db/import_column_family_job.cc b/db/import_column_family_job.cc index 951fc3819..4c6edc63d 100644 --- a/db/import_column_family_job.cc +++ b/db/import_column_family_job.cc @@ -97,6 +97,9 @@ Status ImportColumnFamilyJob::Prepare(uint64_t next_file_number, if (status.IsNotSupported()) { // Original file is on a different FS, use copy instead of hard linking hardlink_files = false; + ROCKS_LOG_INFO(db_options_.info_log, + "Try to link file %s but it's not supported : %s", + f.internal_file_path.c_str(), status.ToString().c_str()); } } if (!hardlink_files) {