@nxtedition/rocksdb 8.0.4 → 8.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/BUILDING.md +2 -2
- package/binding.cc +72 -2
- package/deps/rocksdb/rocksdb/CMakeLists.txt +7 -0
- package/deps/rocksdb/rocksdb/Makefile +13 -1
- package/deps/rocksdb/rocksdb/db/builder.cc +13 -4
- package/deps/rocksdb/rocksdb/db/builder.h +2 -1
- package/deps/rocksdb/rocksdb/db/c.cc +6 -0
- package/deps/rocksdb/rocksdb/db/column_family.cc +1 -0
- package/deps/rocksdb/rocksdb/db/compaction/compaction.cc +18 -4
- package/deps/rocksdb/rocksdb/db/compaction/compaction_job.cc +2 -0
- package/deps/rocksdb/rocksdb/db/compaction/compaction_job_test.cc +2 -1
- package/deps/rocksdb/rocksdb/db/compaction/compaction_outputs.cc +22 -2
- package/deps/rocksdb/rocksdb/db/compaction/compaction_picker.cc +5 -1
- package/deps/rocksdb/rocksdb/db/compaction/compaction_picker_level.cc +14 -14
- package/deps/rocksdb/rocksdb/db/compaction/compaction_picker_test.cc +1 -2
- package/deps/rocksdb/rocksdb/db/db_bloom_filter_test.cc +2 -3
- package/deps/rocksdb/rocksdb/db/db_compaction_test.cc +225 -0
- package/deps/rocksdb/rocksdb/db/db_impl/db_impl.cc +8 -9
- package/deps/rocksdb/rocksdb/db/db_impl/db_impl.h +0 -8
- package/deps/rocksdb/rocksdb/db/db_impl/db_impl_compaction_flush.cc +63 -23
- package/deps/rocksdb/rocksdb/db/db_impl/db_impl_experimental.cc +2 -1
- package/deps/rocksdb/rocksdb/db/db_impl/db_impl_open.cc +12 -8
- package/deps/rocksdb/rocksdb/db/db_range_del_test.cc +115 -2
- package/deps/rocksdb/rocksdb/db/experimental.cc +2 -1
- package/deps/rocksdb/rocksdb/db/external_sst_file_basic_test.cc +1 -0
- package/deps/rocksdb/rocksdb/db/external_sst_file_ingestion_job.cc +88 -12
- package/deps/rocksdb/rocksdb/db/external_sst_file_ingestion_job.h +38 -1
- package/deps/rocksdb/rocksdb/db/external_sst_file_test.cc +14 -110
- package/deps/rocksdb/rocksdb/db/flush_job.cc +2 -3
- package/deps/rocksdb/rocksdb/db/import_column_family_job.cc +1 -1
- package/deps/rocksdb/rocksdb/db/repair.cc +2 -1
- package/deps/rocksdb/rocksdb/db/version_builder_test.cc +41 -39
- package/deps/rocksdb/rocksdb/db/version_edit.cc +12 -0
- package/deps/rocksdb/rocksdb/db/version_edit.h +18 -6
- package/deps/rocksdb/rocksdb/db/version_edit_test.cc +9 -9
- package/deps/rocksdb/rocksdb/db/version_set.cc +12 -6
- package/deps/rocksdb/rocksdb/db/version_set_test.cc +23 -9
- package/deps/rocksdb/rocksdb/db_stress_tool/db_stress_common.h +1 -0
- package/deps/rocksdb/rocksdb/db_stress_tool/db_stress_gflags.cc +4 -0
- package/deps/rocksdb/rocksdb/db_stress_tool/db_stress_test_base.cc +5 -0
- package/deps/rocksdb/rocksdb/include/rocksdb/c.h +4 -0
- package/deps/rocksdb/rocksdb/include/rocksdb/listener.h +7 -1
- package/deps/rocksdb/rocksdb/include/rocksdb/options.h +2 -1
- package/deps/rocksdb/rocksdb/include/rocksdb/utilities/backup_engine.h +69 -9
- package/deps/rocksdb/rocksdb/utilities/backup/backup_engine.cc +245 -74
- package/deps/rocksdb/rocksdb/utilities/backup/backup_engine_test.cc +195 -4
- package/index.js +17 -0
- package/max_rev_operator.h +100 -0
- package/package.json +1 -1
- package/prebuilds/darwin-arm64/node.napi.node +0 -0
- package/prebuilds/darwin-x64/node.napi.node +0 -0
- package/prebuilds/linux-x64/node.napi.node +0 -0
|
@@ -140,7 +140,10 @@ enum class CompactionReason : int {
|
|
|
140
140
|
// According to the comments in flush_job.cc, RocksDB treats flush as
|
|
141
141
|
// a level 0 compaction in internal stats.
|
|
142
142
|
kFlush,
|
|
143
|
-
//
|
|
143
|
+
// [InternalOnly] External sst file ingestion treated as a compaction
|
|
144
|
+
// with placeholder input level L0 as file ingestion
|
|
145
|
+
// technically does not have an input level like other compactions.
|
|
146
|
+
// Used only for internal stats and conflict checking with other compactions
|
|
144
147
|
kExternalSstIngestion,
|
|
145
148
|
// Compaction due to SST file being too old
|
|
146
149
|
kPeriodicCompaction,
|
|
@@ -151,6 +154,9 @@ enum class CompactionReason : int {
|
|
|
151
154
|
// A special TTL compaction for RoundRobin policy, which basically the same as
|
|
152
155
|
// kLevelMaxLevelSize, but the goal is to compact TTLed files.
|
|
153
156
|
kRoundRobinTtl,
|
|
157
|
+
// [InternalOnly] DBImpl::ReFitLevel treated as a compaction,
|
|
158
|
+
// Used only for internal conflict checking with other compactions
|
|
159
|
+
kRefitLevel,
|
|
154
160
|
// total number of compaction reasons, new reasons must be added above this.
|
|
155
161
|
kNumOfReasons,
|
|
156
162
|
};
|
|
@@ -1933,7 +1933,8 @@ struct IngestExternalFileOptions {
|
|
|
1933
1933
|
// that where created before the file was ingested.
|
|
1934
1934
|
bool snapshot_consistency = true;
|
|
1935
1935
|
// If set to false, IngestExternalFile() will fail if the file key range
|
|
1936
|
-
// overlaps with existing keys or tombstones
|
|
1936
|
+
// overlaps with existing keys or tombstones or output of ongoing compaction
|
|
1937
|
+
// during file ingestion in the DB.
|
|
1937
1938
|
bool allow_global_seqno = true;
|
|
1938
1939
|
// If set to false and the file key range overlaps with the memtable key range
|
|
1939
1940
|
// (memtable flush required), IngestExternalFile will fail.
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
#ifndef ROCKSDB_LITE
|
|
12
12
|
|
|
13
13
|
#include <cstdint>
|
|
14
|
+
#include <forward_list>
|
|
14
15
|
#include <functional>
|
|
15
16
|
#include <map>
|
|
16
17
|
#include <string>
|
|
@@ -23,6 +24,8 @@
|
|
|
23
24
|
#include "rocksdb/status.h"
|
|
24
25
|
|
|
25
26
|
namespace ROCKSDB_NAMESPACE {
|
|
27
|
+
class BackupEngineReadOnlyBase;
|
|
28
|
+
class BackupEngine;
|
|
26
29
|
|
|
27
30
|
// The default DB file checksum function name.
|
|
28
31
|
constexpr char kDbFileChecksumFuncName[] = "FileChecksumCrc32c";
|
|
@@ -270,6 +273,28 @@ inline BackupEngineOptions::ShareFilesNaming operator|(
|
|
|
270
273
|
return static_cast<BackupEngineOptions::ShareFilesNaming>(l | r);
|
|
271
274
|
}
|
|
272
275
|
|
|
276
|
+
// Identifying information about a backup shared file that is (or might be)
|
|
277
|
+
// excluded from a backup using exclude_files_callback.
|
|
278
|
+
struct BackupExcludedFileInfo {
|
|
279
|
+
explicit BackupExcludedFileInfo(const std::string& _relative_file)
|
|
280
|
+
: relative_file(_relative_file) {}
|
|
281
|
+
|
|
282
|
+
// File name and path relative to the backup dir.
|
|
283
|
+
std::string relative_file;
|
|
284
|
+
};
|
|
285
|
+
|
|
286
|
+
// An auxiliary structure for exclude_files_callback
|
|
287
|
+
struct MaybeExcludeBackupFile {
|
|
288
|
+
explicit MaybeExcludeBackupFile(BackupExcludedFileInfo&& _info)
|
|
289
|
+
: info(std::move(_info)) {}
|
|
290
|
+
|
|
291
|
+
// Identifying information about a backup shared file that could be excluded
|
|
292
|
+
const BackupExcludedFileInfo info;
|
|
293
|
+
|
|
294
|
+
// API user sets to true if the file should be excluded from this backup
|
|
295
|
+
bool exclude_decision = false;
|
|
296
|
+
};
|
|
297
|
+
|
|
273
298
|
struct CreateBackupOptions {
|
|
274
299
|
// Flush will always trigger if 2PC is enabled.
|
|
275
300
|
// If write-ahead logs are disabled, set flush_before_backup=true to
|
|
@@ -278,10 +303,31 @@ struct CreateBackupOptions {
|
|
|
278
303
|
|
|
279
304
|
// Callback for reporting progress, based on callback_trigger_interval_size.
|
|
280
305
|
//
|
|
281
|
-
//
|
|
282
|
-
//
|
|
283
|
-
|
|
284
|
-
|
|
306
|
+
// An exception thrown from the callback will result in Status::Aborted from
|
|
307
|
+
// the operation.
|
|
308
|
+
std::function<void()> progress_callback = {};
|
|
309
|
+
|
|
310
|
+
// A callback that allows the API user to select files for exclusion, such
|
|
311
|
+
// as if the files are known to exist in an alternate backup directory.
|
|
312
|
+
// Only "shared" files can be excluded from backups. This is an advanced
|
|
313
|
+
// feature because the BackupEngine user is trusted to keep track of files
|
|
314
|
+
// such that the DB can be restored.
|
|
315
|
+
//
|
|
316
|
+
// Input to the callback is a [begin,end) range of sharable files live in
|
|
317
|
+
// the DB being backed up, and the callback implementation sets
|
|
318
|
+
// exclude_decision=true for files to exclude. A callback offers maximum
|
|
319
|
+
// flexibility, e.g. if remote files are unavailable at backup time but
|
|
320
|
+
// whose existence has been recorded somewhere. In case of an empty or
|
|
321
|
+
// no-op callback, all files are included in the backup .
|
|
322
|
+
//
|
|
323
|
+
// To restore the DB, RestoreOptions::alternate_dirs must be used to provide
|
|
324
|
+
// the excluded files.
|
|
325
|
+
//
|
|
326
|
+
// An exception thrown from the callback will result in Status::Aborted from
|
|
327
|
+
// the operation.
|
|
328
|
+
std::function<void(MaybeExcludeBackupFile* files_begin,
|
|
329
|
+
MaybeExcludeBackupFile* files_end)>
|
|
330
|
+
exclude_files_callback = {};
|
|
285
331
|
|
|
286
332
|
// If false, background_thread_cpu_priority is ignored.
|
|
287
333
|
// Otherwise, the cpu priority can be decreased,
|
|
@@ -300,6 +346,11 @@ struct RestoreOptions {
|
|
|
300
346
|
// Default: false
|
|
301
347
|
bool keep_log_files;
|
|
302
348
|
|
|
349
|
+
// For backups that were created using exclude_files_callback, this
|
|
350
|
+
// option enables restoring those backups by providing BackupEngines on
|
|
351
|
+
// directories known to contain the required files.
|
|
352
|
+
std::forward_list<BackupEngineReadOnlyBase*> alternate_dirs;
|
|
353
|
+
|
|
303
354
|
explicit RestoreOptions(bool _keep_log_files = false)
|
|
304
355
|
: keep_log_files(_keep_log_files) {}
|
|
305
356
|
};
|
|
@@ -324,9 +375,15 @@ struct BackupInfo {
|
|
|
324
375
|
// Backup API user metadata
|
|
325
376
|
std::string app_metadata;
|
|
326
377
|
|
|
327
|
-
// Backup file details, if requested with include_file_details=true
|
|
378
|
+
// Backup file details, if requested with include_file_details=true.
|
|
379
|
+
// Does not include excluded_files.
|
|
328
380
|
std::vector<BackupFileInfo> file_details;
|
|
329
381
|
|
|
382
|
+
// Identifying information about shared files that were excluded from the
|
|
383
|
+
// created backup. See exclude_files_callback and alternate_dirs.
|
|
384
|
+
// This information is only provided if include_file_details=true.
|
|
385
|
+
std::vector<BackupExcludedFileInfo> excluded_files;
|
|
386
|
+
|
|
330
387
|
// DB "name" (a directory in the backup_env) for opening this backup as a
|
|
331
388
|
// read-only DB. This should also be used as the DBOptions::wal_dir, such
|
|
332
389
|
// as by default setting wal_dir="". See also env_for_open.
|
|
@@ -348,8 +405,8 @@ struct BackupInfo {
|
|
|
348
405
|
|
|
349
406
|
BackupInfo() {}
|
|
350
407
|
|
|
351
|
-
BackupInfo(BackupID _backup_id, int64_t _timestamp, uint64_t _size,
|
|
352
|
-
|
|
408
|
+
explicit BackupInfo(BackupID _backup_id, int64_t _timestamp, uint64_t _size,
|
|
409
|
+
uint32_t _number_files, const std::string& _app_metadata)
|
|
353
410
|
: backup_id(_backup_id),
|
|
354
411
|
timestamp(_timestamp),
|
|
355
412
|
size(_size),
|
|
@@ -364,8 +421,8 @@ class BackupStatistics {
|
|
|
364
421
|
number_fail_backup = 0;
|
|
365
422
|
}
|
|
366
423
|
|
|
367
|
-
BackupStatistics(uint32_t _number_success_backup,
|
|
368
|
-
|
|
424
|
+
explicit BackupStatistics(uint32_t _number_success_backup,
|
|
425
|
+
uint32_t _number_fail_backup)
|
|
369
426
|
: number_success_backup(_number_success_backup),
|
|
370
427
|
number_fail_backup(_number_fail_backup) {}
|
|
371
428
|
|
|
@@ -462,6 +519,9 @@ class BackupEngineReadOnlyBase {
|
|
|
462
519
|
// Returns Status::OK() if all checks are good
|
|
463
520
|
virtual IOStatus VerifyBackup(BackupID backup_id,
|
|
464
521
|
bool verify_with_checksum = false) const = 0;
|
|
522
|
+
|
|
523
|
+
// Internal use only
|
|
524
|
+
virtual BackupEngine* AsBackupEngine() = 0;
|
|
465
525
|
};
|
|
466
526
|
|
|
467
527
|
// Append-only functions of a BackupEngine. See BackupEngine comment for
|