├── .clang-format ├── .devcontainer └── devcontainer.json ├── .flake8 ├── .git-blame-ignore-revs ├── .gitignore ├── .pre-commit-config.yaml ├── ACKNOWLEDGEMENTS ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SWIFT_GUIDE.md ├── SWIFT_IDE_SETUP.md ├── bindings ├── CMakeLists.txt ├── __init__.py ├── bindingtester │ ├── __init__.py │ ├── bindingtester.py │ ├── known_testers.py │ ├── run_binding_tester.sh │ ├── run_tester_loop.sh │ ├── spec │ │ ├── bindingApiTester.md │ │ ├── directoryLayerTester.md │ │ └── tenantTester.md │ ├── tests │ │ ├── __init__.py │ │ ├── api.py │ │ ├── directory.py │ │ ├── directory_hca.py │ │ ├── directory_state_tree.py │ │ ├── directory_util.py │ │ ├── scripted.py │ │ ├── test_util.py │ │ └── tuple.py │ └── util.py ├── c │ ├── CMakeLists.txt │ ├── external_workload.map │ ├── fdb_c.cpp │ ├── fdb_c.map │ ├── fdb_c_shim.cpp │ ├── foundationdb │ │ ├── CWorkload.h │ │ ├── CppWorkload.h │ │ ├── fdb_c.h │ │ ├── fdb_c_apiversion.h.cmake │ │ ├── fdb_c_internal.h │ │ ├── fdb_c_shim.h │ │ └── fdb_c_types.h │ ├── generate_asm.py │ ├── symbolify.py │ └── test │ │ ├── apitester │ │ ├── TesterApiWorkload.cpp │ │ ├── TesterApiWorkload.h │ │ ├── TesterAtomicOpsCorrectnessWorkload.cpp │ │ ├── TesterCancelTransactionWorkload.cpp │ │ ├── TesterCorrectnessWorkload.cpp │ │ ├── TesterExampleWorkload.cpp │ │ ├── TesterKeyValueStore.cpp │ │ ├── TesterKeyValueStore.h │ │ ├── TesterOptions.h │ │ ├── TesterScheduler.cpp │ │ ├── TesterScheduler.h │ │ ├── TesterTestSpec.cpp │ │ ├── TesterTestSpec.h │ │ ├── TesterTransactionExecutor.cpp │ │ ├── TesterTransactionExecutor.h │ │ ├── TesterUtil.cpp │ │ ├── TesterUtil.h │ │ ├── TesterWatchAndWaitWorkload.cpp │ │ ├── TesterWorkload.cpp │ │ ├── TesterWorkload.h │ │ ├── fdb_c_api_tester.cpp │ │ ├── run_c_api_tests.py │ │ └── tests │ │ │ ├── CApiCancelTransactionBlocking.toml │ │ │ ├── CApiCancelTransactionCB.toml │ │ │ ├── CApiCancelTransactionDBPerTX.toml │ │ │ ├── CApiCancelTransactionDBPerTX_TLS.toml │ │ │ ├── CApiCancelTransactionWithTimeout.toml │ │ │ ├── CApiCorrectnessBlocking.toml │ │ │ ├── CApiCorrectnessCallbacksOnExtThr.toml │ │ │ ├── CApiCorrectnessDBPerTX.toml │ │ │ ├── CApiCorrectnessDisableBypass.toml │ │ │ ├── CApiCorrectnessMultiThr.toml │ │ │ ├── CApiCorrectnessSingleThr.toml │ │ │ ├── CApiCorrectnessTLS.toml │ │ │ ├── CApiCorrectnessWithTimeout.toml │ │ │ ├── CApiMultiTenantCorrectnessMultiThr.toml │ │ │ ├── CApiMultiTenantCorrectnessTLS.toml │ │ │ ├── CApiRunLoopProfiler.toml │ │ │ ├── CApiTamperClusterFile.toml │ │ │ ├── CApiTamperClusterFileTLS.toml │ │ │ └── upgrade │ │ │ └── MixedApiWorkloadMultiThr.toml │ │ ├── client_config_tester.cpp │ │ ├── client_memory_test.cpp │ │ ├── fdb_api.hpp │ │ ├── fdb_c90_test.c │ │ ├── fdb_c_client_config_tests.py │ │ ├── fdb_c_shim_tests.py │ │ ├── mako │ │ ├── admin_server.cpp │ │ ├── admin_server.hpp │ │ ├── async.cpp │ │ ├── async.hpp │ │ ├── ddsketch.hpp │ │ ├── future.hpp │ │ ├── limit.hpp │ │ ├── logger.hpp │ │ ├── macro.hpp │ │ ├── mako.cpp │ │ ├── mako.hpp │ │ ├── mako.rst │ │ ├── operations.cpp │ │ ├── operations.hpp │ │ ├── process.hpp │ │ ├── shm.hpp │ │ ├── stats.hpp │ │ ├── tenant.cpp │ │ ├── tenant.hpp │ │ ├── time.hpp │ │ ├── utils.cpp │ │ └── utils.hpp │ │ ├── performance_test.c │ │ ├── ryw_benchmark.c │ │ ├── shim_lib_tester.cpp │ │ ├── test.h │ │ ├── txn_size_test.c │ │ ├── unit │ │ ├── disconnected_timeout_tests.cpp │ │ ├── fdb_api.cpp │ │ ├── fdb_api.hpp │ │ ├── setup_tests.cpp │ │ ├── third_party │ │ │ └── CMakeLists.txt │ │ ├── trace_partial_file_suffix_test.cpp │ │ ├── unit_tests.cpp │ │ └── unit_tests_version_510.cpp │ │ └── workloads │ │ ├── CWorkload.c │ │ ├── RustWorkload │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── build.rs │ │ ├── src │ │ │ ├── bindings.rs │ │ │ ├── lib.rs │ │ │ └── mock.rs │ │ └── test_file.toml │ │ ├── SimpleWorkload.cpp │ │ ├── workloads.cpp │ │ └── workloads.h ├── flow │ ├── CMakeLists.txt │ ├── DirectoryLayer.actor.cpp │ ├── DirectoryLayer.h │ ├── DirectoryPartition.h │ ├── DirectorySubspace.cpp │ ├── DirectorySubspace.h │ ├── FDBLoanerTypes.h │ ├── HighContentionAllocator.actor.cpp │ ├── HighContentionAllocator.h │ ├── IDirectory.h │ ├── Node.actor.cpp │ ├── Subspace.cpp │ ├── Subspace.h │ ├── Tuple.cpp │ ├── Tuple.h │ ├── fdb_flow.actor.cpp │ ├── fdb_flow.h │ └── tester │ │ ├── CMakeLists.txt │ │ ├── DirectoryTester.actor.cpp │ │ ├── Tester.actor.cpp │ │ └── Tester.actor.h ├── go │ ├── CMakeLists.txt │ ├── README.md │ ├── bench │ │ └── int64ToBytes_bench_test.go │ ├── go.mod │ ├── godoc-resources │ │ ├── godocs.js │ │ ├── jquery.js │ │ ├── jquery.treeview.css │ │ ├── jquery.treeview.edit.js │ │ ├── jquery.treeview.js │ │ └── style.css │ └── src │ │ ├── _stacktester │ │ ├── directory.go │ │ └── stacktester.go │ │ ├── _util │ │ └── translate_fdb_options.go │ │ └── fdb │ │ ├── cluster.go │ │ ├── database.go │ │ ├── directory │ │ ├── allocator.go │ │ ├── directory.go │ │ ├── directory_layer.go │ │ ├── directory_partition.go │ │ ├── directory_subspace.go │ │ └── node.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── errors_test.go │ │ ├── fdb.go │ │ ├── fdb_darwin.go │ │ ├── fdb_freebsd.go │ │ ├── fdb_test.go │ │ ├── fdb_windows.go │ │ ├── futures.go │ │ ├── generated.go │ │ ├── keyselector.go │ │ ├── range.go │ │ ├── snapshot.go │ │ ├── subspace │ │ ├── subspace.go │ │ └── subspace_test.go │ │ ├── transaction.go │ │ └── tuple │ │ ├── testdata │ │ └── tuples.golden │ │ ├── tuple.go │ │ └── tuple_test.go ├── java │ ├── .clang-format │ ├── CMakeLists.txt │ ├── JavaWorkload.cpp │ ├── README.md │ ├── fdb-java-style.xml │ ├── fdbJNI.cpp │ ├── pom.xml.in │ ├── src │ │ ├── README.md │ │ ├── integration │ │ │ └── com │ │ │ │ └── apple │ │ │ │ └── foundationdb │ │ │ │ ├── BasicMultiClientIntegrationTest.java │ │ │ │ ├── CycleMultiClientIntegrationTest.java │ │ │ │ ├── DirectoryTest.java │ │ │ │ ├── FutureIntegrationTest.java │ │ │ │ ├── GetClientStatusIntegrationTest.java │ │ │ │ ├── MappedRangeQueryIntegrationTest.java │ │ │ │ ├── MultiClientHelper.java │ │ │ │ ├── RangeQueryIntegrationTest.java │ │ │ │ ├── RepeatableReadMultiThreadClientTest.java │ │ │ │ ├── RequiresDatabase.java │ │ │ │ ├── SidebandMultiThreadClientTest.java │ │ │ │ ├── TransactionIntegrationTest.java │ │ │ │ └── WatchesIntegrationTest.java │ │ ├── junit │ │ │ └── com │ │ │ │ └── apple │ │ │ │ └── foundationdb │ │ │ │ ├── EventKeeperTest.java │ │ │ │ ├── FDBLibraryRule.java │ │ │ │ ├── FakeFDBTransaction.java │ │ │ │ ├── RangeQueryTest.java │ │ │ │ └── tuple │ │ │ │ ├── ArrayUtilSortTest.java │ │ │ │ ├── ArrayUtilTest.java │ │ │ │ ├── ByteArrayUtilTest.java │ │ │ │ ├── TupleComparisonTest.java │ │ │ │ ├── TuplePackingTest.java │ │ │ │ └── TupleSerializationTest.java │ │ ├── main │ │ │ ├── com │ │ │ │ └── apple │ │ │ │ │ └── foundationdb │ │ │ │ │ ├── ApiVersion.java.cmake │ │ │ │ │ ├── Cluster.java │ │ │ │ │ ├── ClusterOptions.java │ │ │ │ │ ├── Database.java │ │ │ │ │ ├── DirectBufferIterator.java │ │ │ │ │ ├── DirectBufferPool.java │ │ │ │ │ ├── EventKeeper.java │ │ │ │ │ ├── FDB.java │ │ │ │ │ ├── FDBDatabase.java │ │ │ │ │ ├── FDBTenant.java │ │ │ │ │ ├── FDBTransaction.java │ │ │ │ │ ├── FutureBool.java │ │ │ │ │ ├── FutureInt64.java │ │ │ │ │ ├── FutureKey.java │ │ │ │ │ ├── FutureKeyArray.java │ │ │ │ │ ├── FutureKeyRangeArray.java │ │ │ │ │ ├── FutureMappedResults.java │ │ │ │ │ ├── FutureResult.java │ │ │ │ │ ├── FutureResults.java │ │ │ │ │ ├── FutureStrings.java │ │ │ │ │ ├── FutureVoid.java │ │ │ │ │ ├── JNIUtil.java │ │ │ │ │ ├── KeyArrayResult.java │ │ │ │ │ ├── KeyRangeArrayResult.java │ │ │ │ │ ├── KeySelector.java │ │ │ │ │ ├── KeyValue.java │ │ │ │ │ ├── LocalityUtil.java │ │ │ │ │ ├── MapEventKeeper.java │ │ │ │ │ ├── MappedKeyValue.java │ │ │ │ │ ├── MappedRangeQuery.java │ │ │ │ │ ├── MappedRangeResult.java │ │ │ │ │ ├── MappedRangeResultDirectBufferIterator.java │ │ │ │ │ ├── MappedRangeResultInfo.java │ │ │ │ │ ├── NativeFuture.java │ │ │ │ │ ├── NativeObjectWrapper.java │ │ │ │ │ ├── OptionConsumer.java │ │ │ │ │ ├── OptionsSet.java │ │ │ │ │ ├── Range.java │ │ │ │ │ ├── RangeQuery.java │ │ │ │ │ ├── RangeResult.java │ │ │ │ │ ├── RangeResultDirectBufferIterator.java │ │ │ │ │ ├── RangeResultInfo.java │ │ │ │ │ ├── RangeResultSummary.java │ │ │ │ │ ├── ReadTransaction.java │ │ │ │ │ ├── ReadTransactionContext.java │ │ │ │ │ ├── Tenant.java │ │ │ │ │ ├── TenantManagement.java │ │ │ │ │ ├── Transaction.java │ │ │ │ │ ├── TransactionContext.java │ │ │ │ │ ├── async │ │ │ │ │ ├── AsyncIterable.java │ │ │ │ │ ├── AsyncIterator.java │ │ │ │ │ ├── AsyncUtil.java │ │ │ │ │ ├── Cancellable.java │ │ │ │ │ ├── CloneableException.java │ │ │ │ │ ├── CloseableAsyncIterator.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── directory │ │ │ │ │ ├── Directory.java │ │ │ │ │ ├── DirectoryAlreadyExistsException.java │ │ │ │ │ ├── DirectoryException.java │ │ │ │ │ ├── DirectoryLayer.java │ │ │ │ │ ├── DirectoryMoveException.java │ │ │ │ │ ├── DirectoryPartition.java │ │ │ │ │ ├── DirectorySubspace.java │ │ │ │ │ ├── DirectoryUtil.java │ │ │ │ │ ├── DirectoryVersionException.java │ │ │ │ │ ├── MismatchedLayerException.java │ │ │ │ │ ├── NoSuchDirectoryException.java │ │ │ │ │ ├── PathUtil.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ ├── subspace │ │ │ │ │ ├── Subspace.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── testing │ │ │ │ │ ├── AbstractWorkload.java │ │ │ │ │ ├── PerfMetric.java │ │ │ │ │ ├── Promise.java │ │ │ │ │ └── WorkloadContext.java │ │ │ │ │ └── tuple │ │ │ │ │ ├── ByteArrayUtil.java │ │ │ │ │ ├── FastByteComparisons.java │ │ │ │ │ ├── IterableComparator.java │ │ │ │ │ ├── StringUtil.java │ │ │ │ │ ├── Tuple.java │ │ │ │ │ ├── TupleUtil.java │ │ │ │ │ ├── Versionstamp.java │ │ │ │ │ └── package-info.java │ │ │ └── overview.html.in │ │ ├── test │ │ │ └── com │ │ │ │ └── apple │ │ │ │ └── foundationdb │ │ │ │ └── test │ │ │ │ ├── AbstractTester.java │ │ │ │ ├── AsyncDirectoryExtension.java │ │ │ │ ├── AsyncStackTester.java │ │ │ │ ├── BlockingBenchmark.java │ │ │ │ ├── ConcurrentGetSetGet.java │ │ │ │ ├── Context.java │ │ │ │ ├── ContinuousSample.java │ │ │ │ ├── DirectoryExtension.java │ │ │ │ ├── DirectoryOperation.java │ │ │ │ ├── DirectoryUtil.java │ │ │ │ ├── Example.java │ │ │ │ ├── Instruction.java │ │ │ │ ├── IterableTest.java │ │ │ │ ├── LocalityTests.java │ │ │ │ ├── ParallelRandomScan.java │ │ │ │ ├── PerformanceTester.java │ │ │ │ ├── RYWBenchmark.java │ │ │ │ ├── RangeTest.java │ │ │ │ ├── SerialInsertion.java │ │ │ │ ├── SerialIteration.java │ │ │ │ ├── SerialTest.java │ │ │ │ ├── SnapshotTransactionTest.java │ │ │ │ ├── Stack.java │ │ │ │ ├── StackEntry.java │ │ │ │ ├── StackOperation.java │ │ │ │ ├── StackTester.java │ │ │ │ ├── StackUtils.java │ │ │ │ ├── TestApiVersion.java │ │ │ │ ├── TestResult.java │ │ │ │ ├── TesterArgs.java │ │ │ │ ├── TuplePerformanceTest.java │ │ │ │ ├── TupleTest.java │ │ │ │ ├── VersionstampSmokeTest.java │ │ │ │ ├── WatchTest.java │ │ │ │ └── WhileTrueTest.java │ │ └── tests.cmake │ └── suppressions.xml ├── python │ ├── CMakeLists.txt │ ├── MANIFEST.in │ ├── README.rst │ ├── fdb │ │ ├── __init__.py │ │ ├── apiversion.py.cmake │ │ ├── directory_impl.py │ │ ├── fdb_c.dll.pth │ │ ├── impl.py │ │ ├── libfdb_c.dylib.pth │ │ ├── libfdb_c.so.pth │ │ ├── locality.py │ │ ├── subspace_impl.py │ │ ├── tenant_management.py │ │ └── tuple.py │ ├── pycodestyle.cfg │ ├── pyproject.toml │ └── tests │ │ ├── cancellation_timeout_tests.py │ │ ├── directory_extension.py │ │ ├── size_limit_tests.py │ │ ├── tenant_tests.py │ │ ├── tester.py │ │ ├── tuple_tests.py │ │ └── unit_tests.py └── ruby │ ├── CMakeLists.txt │ ├── fdb.gemspec.cmake │ ├── fdb.gemspec.in │ ├── lib │ ├── fdb.rb │ ├── fdbdirectory.rb │ ├── fdbimpl.rb │ ├── fdbimpl_v609.rb │ ├── fdblocality.rb │ ├── fdbsubspace.rb │ └── fdbtuple.rb │ └── tests │ ├── directory_extension.rb │ └── tester.rb ├── cmake ├── AddFdbTest.cmake ├── AssertFileDoesntExist.cmake ├── CPackConfig.cmake ├── CheckForPthreads.c ├── CompileActorCompiler.cmake ├── CompileBoost.cmake ├── CompileCoverageTool.cmake ├── CompileRocksDB.cmake ├── CompileVexillographer.cmake ├── CompileZstd.cmake ├── CompilerChecks.cmake ├── Config.cmake.in ├── ConfigureCompiler.cmake ├── DotnetImports.props.in ├── EnableCsharp.cmake ├── FDBComponents.cmake ├── FDBInstall.cmake ├── FindCoroutines.cmake ├── FindGperftools.cmake ├── FindJinja2.cmake ├── FindLZ4.cmake ├── FindRocksDB.cmake ├── FindSphinx.cmake ├── FindSwiftLibs.cmake ├── FindThreads.cmake ├── FindWIX.cmake ├── Finddotnet.cmake ├── Findjemalloc.cmake ├── Findmono.cmake ├── Findsccache.cmake ├── Findtoml11.cmake ├── Finduring.cmake ├── Findvalgrind.cmake ├── FlowCommands.cmake ├── GenerateModulemap.cmake ├── GetFmt.cmake ├── GetMsgpack.cmake ├── InstallLayout.cmake ├── Jemalloc.cmake ├── Sandbox.conf.cmake ├── SwiftCrossCompileForceModuleRebuild.cmake ├── SwiftToCXXInterop.cmake ├── awssdk.cmake ├── foundationdb-client.pc.in ├── toolchain │ └── macos-to-linux.cmake ├── user-config.jam.cmake └── utils.cmake ├── contrib ├── CMakeLists.txt ├── Implib.so │ ├── .gitattributes │ ├── .gitignore │ ├── .pylintrc │ ├── LICENSE.txt │ ├── README.md │ ├── arch │ │ ├── README.md │ │ ├── aarch64 │ │ │ ├── config.ini │ │ │ ├── table.S.tpl │ │ │ └── trampoline.S.tpl │ │ ├── common │ │ │ └── init.cpp.tpl │ │ └── x86_64 │ │ │ ├── config.ini │ │ │ ├── table.S.tpl │ │ │ └── trampoline.S.tpl │ └── implib-gen.py ├── Joshua │ ├── README.md │ └── scripts │ │ ├── bindingTest.sh │ │ ├── bindingTestScript.sh │ │ ├── bindingTimeout.sh │ │ ├── binding_test_start.sh │ │ ├── binding_test_timeout.sh │ │ ├── correctnessTest.sh │ │ ├── correctnessTimeout.sh │ │ ├── localClusterStart.sh │ │ ├── longRunningCorrectnessTest.sh │ │ ├── longRunningCorrectnessTimeout.sh │ │ ├── valgrindTest.sh │ │ └── valgrindTimeout.sh ├── SimpleOpt │ ├── CMakeLists.txt │ └── include │ │ └── SimpleOpt │ │ └── SimpleOpt.h ├── TestHarness2 │ ├── .gitignore │ ├── README.md │ ├── analyze_determinism_failure.py │ └── test_harness │ │ ├── __init__.py │ │ ├── app.py │ │ ├── config.py │ │ ├── fdb.py │ │ ├── joshua.py │ │ ├── results.py │ │ ├── run.py │ │ ├── summarize.py │ │ ├── test_valgrind_parser.py │ │ ├── timeout.py │ │ ├── valgrind.py │ │ └── version.py ├── TraceLogHelper │ ├── CMakeLists.txt │ ├── Event.cs │ ├── JsonParser.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TraceLogHelper.csproj │ ├── TraceLogUtil.cs │ └── XmlParser.cs ├── alloc_instrumentation.py ├── alloc_instrumentation_traces.py ├── apiversioner.py ├── boost_zstd │ └── zstd.cpp ├── branch_diff.py ├── commit_debug.py ├── convert.py ├── crc32 │ ├── CMakeLists.txt │ ├── crc32.S │ ├── crc32_wrapper.c │ ├── crc32c-generated-constants.cpp │ ├── crc32c.cpp │ └── include │ │ └── crc32 │ │ ├── crc32_constants.h │ │ ├── crc32_wrapper.h │ │ └── crc32c.h ├── ctest_to_joshua.py ├── ddsketch_calc.py ├── ddsketch_compare.py ├── ddsketch_conversion.py ├── debug_determinism │ ├── CMakeLists.txt │ ├── README.md │ └── debug_determinism.cpp ├── export_graph.py ├── fdbcstat │ ├── README.md │ └── fdbcstat ├── folly_memcpy │ ├── CMakeLists.txt │ ├── folly_memcpy.S │ └── folly_memcpy.h ├── gen_compile_db.py ├── generate_profile.sh ├── grv_proxy_model │ ├── grv_test.py │ ├── plot.py │ ├── priority.py │ ├── proxy_model.py │ ├── rate_model.py │ ├── ratekeeper_model.py │ ├── smoother.py │ └── workload_model.py ├── joshua_logtool.py ├── joshua_stats │ ├── readme.md │ └── stats.py ├── libb64 │ ├── CMakeLists.txt │ ├── cdecode.c │ ├── cencode.c │ └── include │ │ └── libb64 │ │ ├── cdecode.h │ │ ├── cencode.h │ │ ├── decode.h │ │ └── encode.h ├── linenoise │ ├── CMakeLists.txt │ ├── include │ │ └── linenoise │ │ │ └── linenoise.h │ └── linenoise.c ├── lint.py ├── local_cluster │ ├── README.md │ ├── binding_test.py │ ├── lib │ │ ├── __init__.py │ │ ├── cluster_file.py │ │ ├── fdb_process.py │ │ ├── local_cluster.py │ │ ├── process.py │ │ └── work_directory.py │ └── local_cluster.py ├── lsan.suppressions ├── md5 │ ├── CMakeLists.txt │ ├── include │ │ └── md5 │ │ │ └── md5.h │ └── md5.c ├── mockkms │ ├── CMakeLists.txt │ ├── fault_injection.go │ ├── get_encryption_keys.go │ ├── mock_kms.go │ ├── mockkms_test.go │ └── utils.go ├── monitoring │ ├── CMakeLists.txt │ ├── actor_flamegraph.cpp │ └── fdb_c_version.py ├── mtlsbenchmark │ ├── client.sh │ ├── keys │ │ ├── ca_file.crt │ │ ├── certificate_file.crt │ │ └── key_file.key │ ├── readme.md │ └── server.sh ├── observability_splunk_dashboard │ ├── details.xml │ ├── historgram.xml │ ├── performance_overview.xml │ ├── ratekeeper.xml │ ├── recovery.xml │ └── transaction_latency.xml ├── pkg_tester │ ├── README.md │ ├── __snapshots__ │ │ └── test_fdb_pkgs.ambr │ ├── requirements.txt │ └── test_fdb_pkgs.py ├── prx.py ├── rapidjson │ └── rapidjson │ │ ├── allocators.h │ │ ├── document.h │ │ ├── encodedstream.h │ │ ├── encodings.h │ │ ├── error │ │ ├── en.h │ │ └── error.h │ │ ├── filereadstream.h │ │ ├── filewritestream.h │ │ ├── fwd.h │ │ ├── internal │ │ ├── biginteger.h │ │ ├── diyfp.h │ │ ├── dtoa.h │ │ ├── ieee754.h │ │ ├── itoa.h │ │ ├── meta.h │ │ ├── pow10.h │ │ ├── regex.h │ │ ├── stack.h │ │ ├── strfunc.h │ │ ├── strtod.h │ │ └── swap.h │ │ ├── istreamwrapper.h │ │ ├── memorybuffer.h │ │ ├── memorystream.h │ │ ├── msinttypes │ │ ├── inttypes.h │ │ └── stdint.h │ │ ├── ostreamwrapper.h │ │ ├── pointer.h │ │ ├── prettywriter.h │ │ ├── rapidjson.h │ │ ├── reader.h │ │ ├── schema.h │ │ ├── stream.h │ │ ├── stringbuffer.h │ │ └── writer.h ├── rapidxml │ ├── CMakeLists.txt │ ├── include │ │ └── rapidxml │ │ │ ├── rapidxml.hpp │ │ │ ├── rapidxml_iterators.hpp │ │ │ ├── rapidxml_print.hpp │ │ │ └── rapidxml_utils.hpp │ ├── license.txt │ └── manual.html ├── serialize-check │ ├── CMakeLists.txt │ ├── README.md │ ├── script │ │ └── renormalize.py │ └── src │ │ └── SourceScanner.cpp ├── sqlite │ ├── CMakeLists.txt │ ├── btree.c │ ├── btree.h │ ├── hash.h │ ├── shell.c │ ├── sqlite3.amalgamation.c │ ├── sqlite3.h │ ├── sqlite3ext.h │ ├── sqliteInt.h │ └── sqliteLimit.h ├── stacktrace │ ├── CMakeLists.txt │ ├── include │ │ └── stacktrace │ │ │ └── stacktrace.h │ ├── stacktrace.amalgamation.cpp │ └── stacktrace_internal │ │ ├── stacktrace_aarch64-inl.inc │ │ ├── stacktrace_arm-inl.inc │ │ ├── stacktrace_generic-inl.inc │ │ ├── stacktrace_powerpc-inl.inc │ │ ├── stacktrace_unimplemented-inl.inc │ │ ├── stacktrace_win32-inl.inc │ │ └── stacktrace_x86-inl.inc ├── transaction_profiling_analyzer │ ├── transaction_profiling_analyzer.py │ └── transaction_profiling_analyzer_tests.py └── tsan.suppressions ├── design ├── AcAC.md ├── Commit │ ├── Commit.svg │ ├── CommitOverall.svg │ ├── GRV.svg │ ├── Get.svg │ ├── GetRange.svg │ ├── GetRangeFallback.svg │ ├── How a commit is done in FDB.md │ ├── commit.sequence │ ├── commitoverall.sequence │ ├── get.sequence │ ├── getrange.sequence │ ├── getrangefallback.sequence │ └── grv.sequence ├── LoadBalancing │ ├── LoadBalancing.md │ └── LoadBalancing.pdf ├── backup-dataFormat.md ├── backup.md ├── backup_v2_partitioned_logs.md ├── coroutines.md ├── data-distributor-internals.md ├── dynamic-knobs.md ├── encryption-data-at-rest.md ├── feature-status.md ├── flow_transport.md ├── global-tag-throttling.md ├── hotshard.md ├── idempotency_ids.md ├── metadata-version.md ├── mocks3server_chaos_design.md ├── recovery-internals.md ├── replication-policy.md ├── restore_v1.md ├── s3-checksumming.md ├── special-key-space.md ├── storage-quota-diagram.svg ├── storage-quota.md ├── tlog-forward-compatibility.md.html ├── tlog-spilling.md.html ├── transaction-state-store.md └── tuple.md ├── documentation ├── CMakeLists.txt ├── FDB.pdf ├── FDB.svg ├── FDB_logo.png ├── FDB_logo.svg ├── coro_tutorial │ ├── CMakeLists.txt │ └── tutorial.cpp ├── sphinx │ ├── .gitignore │ ├── .pip.conf │ ├── conf.py │ ├── extensions │ │ ├── brokenrole.py │ │ ├── relativelink.py │ │ └── rubydomain.py │ ├── requirements.txt │ └── source │ │ ├── administration.rst │ │ ├── anti-features.rst │ │ ├── api-c.rst │ │ ├── api-common.rst.inc │ │ ├── api-error-codes.rst │ │ ├── api-general.rst │ │ ├── api-python.rst │ │ ├── api-reference.rst │ │ ├── api-ruby.rst │ │ ├── api-version-upgrade-guide.rst │ │ ├── architecture.rst │ │ ├── auditstorage.rst │ │ ├── authorization.rst │ │ ├── automatic-idempotency.rst │ │ ├── backups.rst │ │ ├── benchmarking.rst │ │ ├── blob-java.rst │ │ ├── blob.rst │ │ ├── building-cluster.rst │ │ ├── bulkdump.rst │ │ ├── bulkload-user.rst │ │ ├── cap-theorem.rst │ │ ├── class-scheduling-go.rst │ │ ├── class-scheduling-java.rst │ │ ├── class-scheduling-ruby.rst │ │ ├── class-scheduling.rst │ │ ├── client-design.rst │ │ ├── client-testing.rst │ │ ├── command-line-interface.rst │ │ ├── configuration.rst │ │ ├── consistency-check-urgent.rst │ │ ├── consistency-scan.rst │ │ ├── consistency.rst │ │ ├── contents.rst │ │ ├── data-modeling.rst │ │ ├── deadlock-blurb.rst.inc │ │ ├── design-recipes.rst │ │ ├── developer-guide.rst │ │ ├── disk-snapshot-backup.rst │ │ ├── downloads.rst │ │ ├── dtrace-probes.rst │ │ ├── earlier-release-notes.rst │ │ ├── engineering.rst │ │ ├── experimental-features.rst │ │ ├── fault-tolerance.rst │ │ ├── features.rst │ │ ├── flow.rst │ │ ├── getting-started-linux.rst │ │ ├── getting-started-mac.rst │ │ ├── global-configuration.rst │ │ ├── guide-common.rst.inc │ │ ├── ha-write-path.rst │ │ ├── hierarchical-documents-java.rst │ │ ├── hierarchical-documents.rst │ │ ├── images │ │ ├── AP_Partition.png │ │ ├── Architecture.pdf │ │ ├── Architecture.png │ │ ├── FDB_Partition.png │ │ ├── FDB_ha_write_path.png │ │ ├── FDB_multiple_txn_swimlane_diagram.png │ │ ├── FDB_read_path.png │ │ ├── FDB_write_path.png │ │ ├── architecture-1.jpeg │ │ ├── architecture-2.jpeg │ │ ├── architecture-3.jpeg │ │ ├── architecture-4.jpeg │ │ ├── architecture-5.jpeg │ │ ├── architecture-6.jpeg │ │ ├── concurrency.png │ │ ├── latency.png │ │ ├── scaling.png │ │ ├── serialized_mutation_metadata_format.png │ │ └── throughput.png │ │ ├── index.rst │ │ ├── internal-dev-tools.rst │ │ ├── known-limitations.rst │ │ ├── kv-architecture.rst │ │ ├── largeval.rst │ │ ├── layer-concept.rst │ │ ├── local-dev.rst │ │ ├── monitored-metrics.rst │ │ ├── moving-a-cluster.rst │ │ ├── mr-status-json-schemas.rst.inc │ │ ├── mr-status.rst │ │ ├── multimaps-java.rst │ │ ├── multimaps.rst │ │ ├── operations.rst │ │ ├── performance.rst │ │ ├── perpetual-storage-wiggle.rst │ │ ├── platforms.rst │ │ ├── priority-queues-java.rst │ │ ├── priority-queues.rst │ │ ├── queues-java.rst │ │ ├── queues.rst │ │ ├── rangelock.rst │ │ ├── read-write-path.rst │ │ ├── redwood.rst │ │ ├── release-notes │ │ ├── release-notes-014.rst │ │ ├── release-notes-016.rst │ │ ├── release-notes-021.rst │ │ ├── release-notes-022.rst │ │ ├── release-notes-023.rst │ │ ├── release-notes-100.rst │ │ ├── release-notes-200.rst │ │ ├── release-notes-300.rst │ │ ├── release-notes-400.rst │ │ ├── release-notes-410.rst │ │ ├── release-notes-420.rst │ │ ├── release-notes-430.rst │ │ ├── release-notes-440.rst │ │ ├── release-notes-450.rst │ │ ├── release-notes-460.rst │ │ ├── release-notes-500.rst │ │ ├── release-notes-510.rst │ │ ├── release-notes-520.rst │ │ ├── release-notes-600.rst │ │ ├── release-notes-610.rst │ │ ├── release-notes-620.rst │ │ ├── release-notes-630.rst │ │ ├── release-notes-700.rst │ │ ├── release-notes-710.rst │ │ ├── release-notes-720.rst │ │ ├── release-notes-730.rst │ │ └── release-notes-740.rst │ │ ├── request-tracing.rst │ │ ├── scalability.rst │ │ ├── segmented-range-reads-java.rst │ │ ├── segmented-range-reads.rst │ │ ├── simple-indexes-java.rst │ │ ├── simple-indexes.rst │ │ ├── spatial-indexing-java.rst │ │ ├── spatial-indexing.rst │ │ ├── special-keys.rst │ │ ├── subspace-indirection-java.rst │ │ ├── subspace-indirection.rst │ │ ├── tables-java.rst │ │ ├── tables.rst │ │ ├── technical-overview.rst │ │ ├── tenants.rst │ │ ├── testing.rst │ │ ├── time-series.rst │ │ ├── tls.rst │ │ ├── transaction-manifesto.rst │ │ ├── transaction-processing.rst │ │ ├── transaction-profiler-analyzer.rst │ │ ├── transaction-tagging.rst │ │ ├── tss.rst │ │ ├── tutorials.rst │ │ ├── vector-java.rst │ │ ├── vector.rst │ │ ├── visibility.rst │ │ └── why-foundationdb.rst └── tutorial │ ├── CMakeLists.txt │ ├── dining_philosophers.actor.cpp │ ├── make_h2o.actor.cpp │ ├── play.actor.cpp │ ├── play_network.actor.cpp │ ├── print_in_order.actor.cpp │ └── tutorial.actor.cpp ├── fdb.cluster.cmake ├── fdbbackup ├── CMakeLists.txt ├── Decode.cpp ├── FileConverter.actor.cpp ├── FileDecoder.actor.cpp ├── backup.actor.cpp ├── include │ └── fdbbackup │ │ ├── Decode.h │ │ └── FileConverter.h └── tests │ ├── dir_backup_test.sh │ └── s3_backup_test.sh ├── fdbcli ├── AdvanceVersionCommand.actor.cpp ├── AuditStorageCommand.actor.cpp ├── BulkDumpCommand.actor.cpp ├── BulkLoadCommand.actor.cpp ├── CMakeLists.txt ├── ConfigureCommand.actor.cpp ├── ConsistencyCheckCommand.actor.cpp ├── ConsistencyScanCommand.actor.cpp ├── CoordinatorsCommand.actor.cpp ├── DataDistributionCommand.actor.cpp ├── DebugCommands.actor.cpp ├── ExcludeCommand.actor.cpp ├── ExpensiveDataCheckCommand.actor.cpp ├── FileConfigureCommand.actor.cpp ├── FlowLineNoise.actor.cpp ├── ForceRecoveryWithDataLossCommand.actor.cpp ├── GetAuditStatusCommand.actor.cpp ├── HotRangeCommand.actor.cpp ├── IdempotencyIdsCommand.actor.cpp ├── IncludeCommand.actor.cpp ├── KillCommand.actor.cpp ├── LocationMetadataCommand.actor.cpp ├── LockCommand.actor.cpp ├── MaintenanceCommand.actor.cpp ├── MetaclusterCommands.actor.cpp ├── ProfileCommand.actor.cpp ├── QuotaCommand.actor.cpp ├── RangeConfigCommand.actor.cpp ├── SetClassCommand.actor.cpp ├── SnapshotCommand.actor.cpp ├── StatusCommand.actor.cpp ├── SuspendCommand.actor.cpp ├── TenantCommands.actor.cpp ├── TenantGroupCommands.actor.cpp ├── ThrottleCommand.actor.cpp ├── TriggerDDTeamInfoLogCommand.actor.cpp ├── TssqCommand.actor.cpp ├── Util.actor.cpp ├── VersionEpochCommand.actor.cpp ├── fdbcli.actor.cpp ├── include │ └── fdbcli │ │ ├── FlowLineNoise.h │ │ └── fdbcli.actor.h └── tests │ ├── fdbcli_tests.py │ └── metacluster_fdbcli_tests.py ├── fdbclient ├── ActorLineageProfiler.cpp ├── AnnotateActor.cpp ├── AsyncFileS3BlobStore.actor.cpp ├── AsyncTaskThread.actor.cpp ├── Atomic.cpp ├── AuditUtils.actor.cpp ├── BackupAgentBase.actor.cpp ├── BackupContainer.actor.cpp ├── BackupContainerFileSystem.actor.cpp ├── BackupContainerLocalDirectory.actor.cpp ├── BackupContainerS3BlobStore.actor.cpp ├── BackupTLSConfig.cpp ├── BlobCipher.cpp ├── BlobMetadataUtils.cpp ├── BuildFlags.h.in ├── BulkDumping.cpp ├── BulkLoading.cpp ├── CMakeLists.txt ├── ClientKnobCollection.cpp ├── ClientKnobs.cpp ├── ClientStatusReport.cpp ├── ClusterConnectionFile.actor.cpp ├── ClusterConnectionKey.actor.cpp ├── ClusterConnectionMemoryRecord.actor.cpp ├── CommitProxyInterface.cpp ├── ConfigKnobs.cpp ├── ConfigTransactionInterface.cpp ├── CoordinationInterface.cpp ├── DataDistributionConfig.actor.cpp ├── DatabaseBackupAgent.actor.cpp ├── DatabaseConfiguration.cpp ├── DatabaseContext.actor.cpp ├── FDBAWSCredentialsProvider.cpp ├── FDBTypes.cpp ├── FileBackupAgent.actor.cpp ├── FluentDSampleIngestor.cpp ├── GlobalConfig.actor.cpp ├── IConfigTransaction.cpp ├── IKnobCollection.cpp ├── ISingleThreadTransaction.cpp ├── IdempotencyId.actor.cpp ├── JsonBuilder.cpp ├── KeyRangeMap.actor.cpp ├── LinkTest.cpp ├── LocalClientAPI.cpp ├── ManagementAPI.actor.cpp ├── MetaclusterRegistration.cpp ├── MonitorLeader.actor.cpp ├── MultiVersionTransaction.actor.cpp ├── MutationLogReader.actor.cpp ├── NameLineage.cpp ├── NativeAPI.actor.cpp ├── ParallelStream.actor.cpp ├── PaxosConfigTransaction.actor.cpp ├── Printable.cpp ├── RESTClient.actor.cpp ├── RESTUtils.actor.cpp ├── RYWIterator.cpp ├── RandomKeyValueUtils.cpp ├── ReadYourWrites.actor.cpp ├── RestoreInterface.cpp ├── S3BlobStore.actor.cpp ├── S3Client.actor.cpp ├── S3Client_cli.actor.cpp ├── Schemas.cpp ├── ServerKnobCollection.cpp ├── ServerKnobs.cpp ├── SimpleConfigTransaction.actor.cpp ├── SpecialKeySpace.actor.cpp ├── StackLineage.cpp ├── StatusClient.actor.cpp ├── StorageCheckpoint.cpp ├── StorageServerInterface.cpp ├── Subspace.cpp ├── SystemData.cpp ├── TagThrottle.actor.cpp ├── TaskBucket.actor.cpp ├── Tenant.cpp ├── TenantManagement.actor.cpp ├── TestKnobCollection.cpp ├── ThreadSafeTransaction.cpp ├── Tracing.actor.cpp ├── TransactionLineage.cpp ├── Tuple.cpp ├── TupleVersionstamp.cpp ├── VersionVector.cpp ├── VersionedMap.cpp ├── WriteMap.cpp ├── azure_backup │ ├── BackupContainerAzureBlobStore.actor.cpp │ └── README.md ├── azurestorage.cmake ├── include │ └── fdbclient │ │ ├── AccumulativeChecksum.h │ │ ├── ActorLineageProfiler.h │ │ ├── AnnotateActor.h │ │ ├── AsyncFileS3BlobStore.actor.h │ │ ├── AsyncTaskThread.h │ │ ├── Atomic.h │ │ ├── Audit.h │ │ ├── AuditUtils.actor.h │ │ ├── BackupAgent.actor.h │ │ ├── BackupContainer.h │ │ ├── BackupContainerAzureBlobStore.h │ │ ├── BackupContainerFileSystem.h │ │ ├── BackupContainerLocalDirectory.h │ │ ├── BackupContainerS3BlobStore.h │ │ ├── BackupTLSConfig.h │ │ ├── BlobCipher.h │ │ ├── BlobMetadataUtils.h │ │ ├── BuildIdempotencyIdMutations.h │ │ ├── BulkDumping.h │ │ ├── BulkLoading.h │ │ ├── ClientBooleanParams.h │ │ ├── ClientKnobCollection.h │ │ ├── ClientKnobs.h │ │ ├── ClientLogEvents.h │ │ ├── ClientVersion.h │ │ ├── ClientWorkerInterface.h │ │ ├── ClusterConnectionFile.h │ │ ├── ClusterConnectionKey.actor.h │ │ ├── ClusterConnectionMemoryRecord.h │ │ ├── ClusterInterface.h │ │ ├── CommitProxyInterface.h │ │ ├── CommitTransaction.h │ │ ├── ConfigKnobs.h │ │ ├── ConfigTransactionInterface.h │ │ ├── ConsistencyScanInterface.actor.h │ │ ├── ConvertUTF.h │ │ ├── CoordinationInterface.h │ │ ├── DataDistributionConfig.actor.h │ │ ├── DatabaseConfiguration.h │ │ ├── DatabaseContext.h │ │ ├── EncryptKeyProxyInterface.h │ │ ├── EventTypes.actor.h │ │ ├── FDBAWSCredentialsProvider.h │ │ ├── FDBOptions.h │ │ ├── FDBTypes.h │ │ ├── GenericManagementAPI.actor.h │ │ ├── GenericTransactionHelper.h │ │ ├── GetEncryptCipherKeys.h │ │ ├── GetEncryptCipherKeys_impl.actor.h │ │ ├── GlobalConfig.actor.h │ │ ├── GlobalConfig.h │ │ ├── GrvProxyInterface.h │ │ ├── HighContentionPrefixAllocator.actor.h │ │ ├── IClientApi.h │ │ ├── IClosable.h │ │ ├── IConfigTransaction.h │ │ ├── IKeyValueStore.actor.h │ │ ├── IKnobCollection.h │ │ ├── ISingleThreadTransaction.h │ │ ├── IdempotencyId.actor.h │ │ ├── JSONDoc.h │ │ ├── JsonBuilder.h │ │ ├── KeyBackedRangeMap.actor.h │ │ ├── KeyBackedTypes.actor.h │ │ ├── KeyLocationService.h │ │ ├── KeyRangeMap.h │ │ ├── Knobs.h │ │ ├── LocalClientAPI.h │ │ ├── ManagementAPI.actor.h │ │ ├── MetaclusterRegistration.h │ │ ├── MonitorLeader.h │ │ ├── MultiVersionAssignmentVars.h │ │ ├── MultiVersionTransaction.h │ │ ├── MutationList.h │ │ ├── MutationLogReader.actor.h │ │ ├── NameLineage.h │ │ ├── NativeAPI.actor.h │ │ ├── Notified.h │ │ ├── PImpl.h │ │ ├── ParallelStream.actor.h │ │ ├── PartitionedLogIterator.h │ │ ├── PaxosConfigTransaction.h │ │ ├── ProcessInterface.h │ │ ├── RESTClient.h │ │ ├── RESTUtils.h │ │ ├── RYWIterator.h │ │ ├── RandomKeyValueUtils.h │ │ ├── RangeLock.h │ │ ├── ReadYourWrites.h │ │ ├── RestoreInterface.h │ │ ├── RunRYWTransaction.actor.h │ │ ├── RunTransaction.actor.h │ │ ├── S3BlobStore.h │ │ ├── S3Client.actor.h │ │ ├── Schemas.h │ │ ├── ServerKnobCollection.h │ │ ├── ServerKnobs.h │ │ ├── SimKmsVault.cpp │ │ ├── SimKmsVault.h │ │ ├── SimpleConfigTransaction.h │ │ ├── SimpleIni.h │ │ ├── SnapshotCache.h │ │ ├── SpecialKeySpace.actor.h │ │ ├── StackLineage.h │ │ ├── Status.h │ │ ├── StatusClient.h │ │ ├── StorageCheckpoint.h │ │ ├── StorageServerInterface.h │ │ ├── StorageServerShard.h │ │ ├── StorageWiggleMetrics.actor.h │ │ ├── Subspace.h │ │ ├── SystemData.h │ │ ├── TagThrottle.actor.h │ │ ├── TaskBucket.h │ │ ├── Tenant.h │ │ ├── TenantData.actor.h │ │ ├── TenantEntryCache.actor.h │ │ ├── TenantManagement.actor.h │ │ ├── TenantSpecialKeys.actor.h │ │ ├── TestKnobCollection.h │ │ ├── ThreadSafeTransaction.h │ │ ├── Tracing.h │ │ ├── TransactionLineage.h │ │ ├── Tuple.h │ │ ├── TupleVersionstamp.h │ │ ├── VersionVector.h │ │ ├── VersionedMap.actor.h │ │ ├── VersionedMap.h │ │ ├── WriteMap.h │ │ ├── json_spirit │ │ ├── json_spirit_error_position.h │ │ ├── json_spirit_reader_template.h │ │ ├── json_spirit_value.h │ │ ├── json_spirit_writer_options.h │ │ └── json_spirit_writer_template.h │ │ ├── sha1 │ │ └── SHA1.h │ │ └── zipf.h ├── notified_support.swift ├── sha1 │ └── SHA1.cpp ├── tests │ ├── aws_fixture.sh │ ├── bulkload_test.sh │ ├── fdb_cluster_fixture.sh │ ├── mocks3_fixture.sh │ ├── s3client_test.sh │ └── tests_common.sh ├── versions.h.cmake ├── vexillographer │ ├── c.cs │ ├── cpp.cs │ ├── fdb.options │ ├── java.cs │ ├── python.cs │ ├── ruby.cs │ ├── vexillographer.cs │ └── vexillographer.csproj └── zipf.c ├── fdbctl ├── CMakeLists.txt ├── ControlCommands.cpp ├── ControlService.cpp ├── include │ └── fdbctl │ │ ├── ControlCommands.h │ │ └── ControlService.h └── protos │ └── control_service.proto ├── fdbkubernetesmonitor ├── .gitignore ├── .golangci.yml ├── README.md ├── api │ ├── .testdata │ │ ├── default_config.json │ │ ├── fdb.cluster │ │ └── test_env.sh │ ├── annotations.go │ ├── config.go │ ├── config_test.go │ ├── suite_test.go │ ├── version.go │ └── version_test.go ├── copy.go ├── copy_test.go ├── go.mod ├── go.sum ├── internal │ └── certloader │ │ └── certloader.go ├── kubernetes.go ├── kubernetes_test.go ├── main.go ├── metrics.go ├── metrics_test.go ├── monitor.go ├── monitor_test.go └── suite_test.go ├── fdbmonitor ├── CMakeLists.txt ├── fdbmonitor.cpp ├── fdbmonitor.h ├── fdbmonitor_lib.cpp └── fdbmonitor_tests.cpp ├── fdbrpc ├── ActorFuzz.actor.cpp ├── ActorFuzzUnitTest.cpp ├── AsyncFileCached.actor.cpp ├── AsyncFileEncrypted.actor.cpp ├── AsyncFileNonDurable.actor.cpp ├── AsyncFileWriteChecker.cpp ├── Base64Decode.cpp ├── Base64Encode.cpp ├── CMakeLists.txt ├── CoroTests.cpp ├── DDSketchTest.actor.cpp ├── FailureMonitor.actor.cpp ├── FileTransfer.cpp ├── FlowGrpc.cpp ├── FlowGrpcTests.actor.cpp ├── FlowGrpcTests.cpp ├── FlowTests.actor.cpp ├── FlowTransport.actor.cpp ├── HTTP.actor.cpp ├── HTTPServer.actor.cpp ├── HealthMonitor.actor.cpp ├── IPAllowList.cpp ├── JsonWebKeySet.cpp ├── LinkTest.cpp ├── LoadBalance.actor.cpp ├── Locality.cpp ├── Net2FileSystem.cpp ├── QueueModel.cpp ├── Replication.cpp ├── ReplicationPolicy.cpp ├── ReplicationTypes.cpp ├── ReplicationUtils.cpp ├── SimExternalConnection.actor.cpp ├── Stats.actor.cpp ├── TokenCache.actor.cpp ├── TokenSign.cpp ├── TokenSign │ └── TokenSignStdTypes.cpp ├── TraceFileIO.cpp ├── actorFuzz.py ├── dsltest.actor.cpp ├── include │ └── fdbrpc │ │ ├── ActorFuzz.h │ │ ├── AsyncFileCached.actor.h │ │ ├── AsyncFileChaos.h │ │ ├── AsyncFileEIO.actor.h │ │ ├── AsyncFileEncrypted.h │ │ ├── AsyncFileKAIO.actor.h │ │ ├── AsyncFileNonDurable.actor.h │ │ ├── AsyncFileReadAhead.actor.h │ │ ├── AsyncFileWinASIO.actor.h │ │ ├── AsyncFileWriteChecker.actor.h │ │ ├── Base64Decode.h │ │ ├── Base64Encode.h │ │ ├── ContinuousSample.h │ │ ├── DDSketch.h │ │ ├── FailureMonitor.h │ │ ├── FileTransfer.h │ │ ├── FlowGrpc.h │ │ ├── FlowGrpcTests.h │ │ ├── FlowProcess.actor.h │ │ ├── FlowTransport.h │ │ ├── HTTP.h │ │ ├── HealthMonitor.h │ │ ├── IPAllowList.h │ │ ├── JsonWebKeySet.h │ │ ├── LoadBalance.actor.h │ │ ├── LoadBalance.h │ │ ├── LoadPlugin.h │ │ ├── Locality.h │ │ ├── MultiInterface.h │ │ ├── Net2FileSystem.h │ │ ├── PerfMetric.h │ │ ├── QueueModel.h │ │ ├── RangeMap.h │ │ ├── Replication.h │ │ ├── ReplicationPolicy.h │ │ ├── ReplicationTypes.h │ │ ├── ReplicationUtils.h │ │ ├── SimExternalConnection.h │ │ ├── SimulatorKillType.h │ │ ├── SimulatorMachineInfo.h │ │ ├── SimulatorProcessInfo.h │ │ ├── Smoother.h │ │ ├── Stats.h │ │ ├── TSSComparison.h │ │ ├── TenantInfo.h │ │ ├── TenantName.h │ │ ├── TimedRequest.h │ │ ├── TokenCache.h │ │ ├── TokenSign.h │ │ ├── TokenSignStdTypes.h │ │ ├── TokenSpec.h │ │ ├── TraceFileIO.h │ │ ├── WellKnownEndpoints.h │ │ ├── fdbrpc.h │ │ ├── genericactors.actor.h │ │ ├── grpc │ │ ├── AsyncGrpcClient.h │ │ ├── AsyncTaskExecutor.h │ │ └── Credentials.h │ │ ├── linux_kaio.h │ │ ├── networksender.actor.h │ │ ├── sim_validation.h │ │ └── simulator.h ├── libcoroutine │ ├── 386-ucontext.h │ ├── Base.h │ ├── Common.c │ ├── Common.h │ ├── Coro.c │ ├── Coro.h │ ├── amd64-ucontext.h │ ├── asm.S │ ├── bsd_license.txt │ ├── context.c │ ├── power-ucontext.h │ └── taskimpl.h ├── libeio │ ├── config.h.FreeBSD │ ├── config.h.linux │ ├── config.h.osx │ ├── ecb.h │ ├── eio.c │ ├── eio.h │ └── xthread.h ├── protos │ └── file_transfer.proto ├── sim2.actor.cpp ├── sim_validation.cpp ├── swift_sim2_hooks.cpp └── tests │ ├── AuthzTlsTest.actor.cpp │ ├── CMakeLists.txt │ ├── fdbrpc_bench.actor.cpp │ └── protos │ └── echo.proto ├── fdbserver ├── AccumulativeChecksumUtil.cpp ├── ApplyMetadataMutation.cpp ├── BackupProgress.actor.cpp ├── BackupWorker.actor.cpp ├── BulkDumpUtil.actor.cpp ├── BulkLoadUtil.actor.cpp ├── CMakeLists.txt ├── ClusterController.actor.cpp ├── ClusterRecovery.actor.cpp ├── CommitProxyServer.actor.cpp ├── ConfigBroadcaster.actor.cpp ├── ConfigDatabaseUnitTests.actor.cpp ├── ConfigFollowerInterface.cpp ├── ConfigNode.actor.cpp ├── ConsistencyScan.actor.cpp ├── CoordinatedState.actor.cpp ├── Coordination.actor.cpp ├── DDRelocationQueue.actor.cpp ├── DDShardTracker.actor.cpp ├── DDTeamCollection.actor.cpp ├── DDTxnProcessor.actor.cpp ├── DataDistribution.actor.cpp ├── DiskQueue.actor.cpp ├── EncryptKeyProxy.actor.cpp ├── FDBExecHelper.actor.cpp ├── GlobalTagThrottler.actor.cpp ├── GrvProxyServer.actor.cpp ├── GrvProxyTagThrottler.actor.cpp ├── GrvTransactionRateInfo.actor.cpp ├── IConfigConsumer.cpp ├── IKeyValueStore.cpp ├── IPager.cpp ├── KeyValueStoreCompressTestData.actor.cpp ├── KeyValueStoreMemory.actor.cpp ├── KeyValueStoreRocksDB.actor.cpp ├── KeyValueStoreSQLite.actor.cpp ├── KeyValueStoreShardedRocksDB.actor.cpp ├── KnobProtectiveGroups.cpp ├── LatencyBandConfig.cpp ├── LatencyBandsMap.actor.cpp ├── LeaderElection.actor.cpp ├── LocalConfiguration.actor.cpp ├── LogRouter.cpp ├── LogSystem.cpp ├── LogSystemConfig.cpp ├── LogSystemDiskQueueAdapter.actor.cpp ├── LogSystemPeekCursor.actor.cpp ├── MetricClient.actor.cpp ├── MetricLogger.actor.cpp ├── MockGlobalState.actor.cpp ├── MockS3Server.actor.cpp ├── MockS3ServerChaos.actor.cpp ├── MoveKeys.actor.cpp ├── MutationTracking.cpp ├── OnDemandStore.actor.cpp ├── PaxosConfigConsumer.actor.cpp ├── QuietDatabase.actor.cpp ├── RESTKmsConnector.actor.cpp ├── RESTKmsConnectorUtils.cpp ├── RESTSimKmsVault.actor.cpp ├── Ratekeeper.actor.cpp ├── RemoteIKeyValueStore.actor.cpp ├── ResolutionBalancer.actor.cpp ├── Resolver.actor.cpp ├── ResolverBug.cpp ├── RestoreApplier.actor.cpp ├── RestoreCommon.actor.cpp ├── RestoreController.actor.cpp ├── RestoreLoader.actor.cpp ├── RestoreRoleCommon.actor.cpp ├── RestoreUtil.actor.cpp ├── RestoreWorker.actor.cpp ├── RestoreWorkerInterface.actor.cpp ├── RkTagThrottleCollection.cpp ├── RocksDBCheckpointUtils.actor.cpp ├── RocksDBLogForwarder.actor.cpp ├── RoleLineage.actor.cpp ├── ServerCheckpoint.actor.cpp ├── ServerThroughputTracker.cpp ├── ShardsAffectedByTeamFailure.cpp ├── SigStack.cpp ├── SimKmsConnector.actor.cpp ├── SimpleConfigConsumer.actor.cpp ├── SimulatedCluster.actor.cpp ├── SkipList.cpp ├── Status.actor.cpp ├── StorageMetrics.actor.cpp ├── StorageServerUtils.cpp ├── TCInfo.actor.cpp ├── TLogServer.actor.cpp ├── TSSMappingUtil.actor.cpp ├── TagPartitionedLogSystem.actor.cpp ├── TagPartitionedLogSystemRecoveryTests.actor.cpp ├── TagThrottler.actor.cpp ├── TenantCache.actor.cpp ├── TestTLogServer.actor.cpp ├── TransactionStoreMutationTracking.cpp ├── TransactionTagCounter.actor.cpp ├── UID.swift ├── VFSAsync.cpp ├── VersionedBTree.actor.cpp ├── VersionedBTreeDebug.cpp ├── WaitFailure.actor.cpp ├── coroimpl │ ├── CoroFlow.actor.cpp │ └── CoroFlowCoro.actor.cpp ├── fdbserver.actor.cpp ├── include │ └── fdbserver │ │ ├── AccumulativeChecksumUtil.h │ │ ├── ApplyMetadataMutation.h │ │ ├── ArtMutationBuffer.h │ │ ├── BackupInterface.h │ │ ├── BackupProgress.actor.h │ │ ├── BulkDumpUtil.actor.h │ │ ├── BulkLoadUtil.actor.h │ │ ├── ClusterController.actor.h │ │ ├── ClusterRecovery.actor.h │ │ ├── ConfigBroadcastInterface.h │ │ ├── ConfigBroadcaster.h │ │ ├── ConfigFollowerInterface.h │ │ ├── ConfigNode.h │ │ ├── ConflictSet.h │ │ ├── CoordinatedState.h │ │ ├── CoordinationInterface.h │ │ ├── CoroFlow.h │ │ ├── DBCoreState.h │ │ ├── DDRelocationQueue.h │ │ ├── DDShardTracker.h │ │ ├── DDSharedContext.h │ │ ├── DDTeamCollection.h │ │ ├── DDTxnProcessor.h │ │ ├── DataDistribution.actor.h │ │ ├── DataDistributionTeam.h │ │ ├── DataDistributorInterface.h │ │ ├── DeltaTree.h │ │ ├── ExclusionTracker.actor.h │ │ ├── FDBExecHelper.actor.h │ │ ├── FDBRocksDBVersion.h │ │ ├── GrvProxyTagThrottler.h │ │ ├── GrvTransactionRateInfo.h │ │ ├── IConfigConsumer.h │ │ ├── IDiskQueue.h │ │ ├── IKeyValueContainer.h │ │ ├── IKeyValueStore.h │ │ ├── IPageEncryptionKeyProvider.actor.h │ │ ├── IPager.h │ │ ├── KmsConnector.h │ │ ├── KmsConnectorInterface.h │ │ ├── KnobProtectiveGroups.h │ │ ├── Knobs.h │ │ ├── LatencyBandConfig.h │ │ ├── LatencyBandsMap.h │ │ ├── LeaderElection.h │ │ ├── LocalConfiguration.h │ │ ├── LogProtocolMessage.h │ │ ├── LogSystem.h │ │ ├── LogSystemConfig.h │ │ ├── LogSystemDiskQueueAdapter.h │ │ ├── MasterData.actor.h │ │ ├── MasterInterface.h │ │ ├── MetricClient.h │ │ ├── MetricLogger.actor.h │ │ ├── MockDataDistributor.h │ │ ├── MockGlobalState.h │ │ ├── MockS3Server.h │ │ ├── MockS3ServerChaos.h │ │ ├── MoveKeys.actor.h │ │ ├── MovingWindow.h │ │ ├── MutationTracking.h │ │ ├── NetworkTest.h │ │ ├── OTELSpanContextMessage.h │ │ ├── OnDemandStore.h │ │ ├── PaxosConfigConsumer.h │ │ ├── ProxyCommitData.actor.h │ │ ├── QuietDatabase.h │ │ ├── RESTKmsConnector.h │ │ ├── RESTKmsConnectorUtils.h │ │ ├── RESTSimKmsVault.h │ │ ├── RadixTree.h │ │ ├── Ratekeeper.h │ │ ├── RatekeeperInterface.h │ │ ├── RecoveryState.h │ │ ├── RemoteIKeyValueStore.actor.h │ │ ├── ResolutionBalancer.actor.h │ │ ├── ResolverBug.h │ │ ├── ResolverInterface.h │ │ ├── RestoreApplier.actor.h │ │ ├── RestoreCommon.actor.h │ │ ├── RestoreController.actor.h │ │ ├── RestoreLoader.actor.h │ │ ├── RestoreRoleCommon.actor.h │ │ ├── RestoreUtil.h │ │ ├── RestoreWorker.actor.h │ │ ├── RestoreWorkerInterface.actor.h │ │ ├── RkTagThrottleCollection.h │ │ ├── RocksDBCheckpointUtils.actor.h │ │ ├── RocksDBLogForwarder.h │ │ ├── RoleLineage.actor.h │ │ ├── ServerCheckpoint.actor.h │ │ ├── ServerDBInfo.actor.h │ │ ├── ServerDBInfo.h │ │ ├── ServerThroughputTracker.h │ │ ├── ShardsAffectedByTeamFailure.h │ │ ├── SimEncryptKmsProxy.actor.h │ │ ├── SimKmsConnector.h │ │ ├── SimpleConfigConsumer.h │ │ ├── SimulatedCluster.h │ │ ├── SingletonRoles.h │ │ ├── SpanContextMessage.h │ │ ├── Status.actor.h │ │ ├── StorageCorruptionBug.h │ │ ├── StorageMetrics.actor.h │ │ ├── StorageServerUtils.h │ │ ├── TCInfo.h │ │ ├── TLogInterface.h │ │ ├── TSSMappingUtil.actor.h │ │ ├── TagPartitionedLogSystem.actor.h │ │ ├── TagThrottler.h │ │ ├── TenantCache.h │ │ ├── TestTLogServer.actor.h │ │ ├── TesterInterface.actor.h │ │ ├── TransactionStoreMutationTracking.h │ │ ├── TransactionTagCounter.h │ │ ├── VFSAsync.h │ │ ├── VersionedBTreeDebug.h │ │ ├── WaitFailure.h │ │ ├── WorkerInterface.actor.h │ │ ├── art.h │ │ ├── art_impl.h │ │ ├── fdbserver_stream_support.h │ │ ├── pubsub.h │ │ ├── template_fdb.h │ │ └── workloads │ │ ├── ApiWorkload.h │ │ ├── AsyncFile.actor.h │ │ ├── BlobStoreWorkload.h │ │ ├── BulkSetup.actor.h │ │ ├── MemoryKeyValueStore.h │ │ ├── MockDDTest.h │ │ ├── ReadWriteWorkload.actor.h │ │ └── workloads.actor.h ├── masterserver.actor.cpp ├── masterserver.swift ├── networktest.actor.cpp ├── pubsub.actor.cpp ├── storageserver.actor.cpp ├── swift │ └── tests │ │ ├── Rainbow.swift │ │ ├── SimpleSwiftTestSuite.swift │ │ ├── swift_test_streams.swift │ │ ├── swift_test_task.swift │ │ └── swift_tests.swift ├── swift_fdbserver_collections.swift ├── swift_fdbserver_cxx_swift_value_conformance.swift ├── swift_fdbserver_stream_support.swift ├── tester.actor.cpp ├── worker.actor.cpp └── workloads │ ├── ApiCorrectness.actor.cpp │ ├── ApiWorkload.actor.cpp │ ├── AsyncFile.cpp │ ├── AsyncFileCorrectness.actor.cpp │ ├── AsyncFileRead.actor.cpp │ ├── AsyncFileWrite.actor.cpp │ ├── AtomicOps.actor.cpp │ ├── AtomicOpsApiCorrectness.actor.cpp │ ├── AtomicRestore.actor.cpp │ ├── AtomicSwitchover.actor.cpp │ ├── AutomaticIdempotencyWorkload.actor.cpp │ ├── BackgroundSelectors.actor.cpp │ ├── Backup.actor.cpp │ ├── BackupAndParallelRestoreCorrectness.actor.cpp │ ├── BackupCorrectness.actor.cpp │ ├── BackupCorrectnessPartitioned.actor.cpp │ ├── BackupS3BlobCorrectness.actor.cpp │ ├── BackupToBlob.actor.cpp │ ├── BackupToDBAbort.actor.cpp │ ├── BackupToDBCorrectness.actor.cpp │ ├── BackupToDBUpgrade.actor.cpp │ ├── BlobFailureInjection.actor.cpp │ ├── BulkDumping.actor.cpp │ ├── BulkLoad.actor.cpp │ ├── BulkLoadWithTenants.actor.cpp │ ├── BulkLoading.actor.cpp │ ├── ChangeConfig.actor.cpp │ ├── ClearSingleRange.actor.cpp │ ├── ClientMetric.actor.cpp │ ├── ClientTransactionProfileCorrectness.actor.cpp │ ├── ClientWorkload.actor.cpp │ ├── ClogRemoteTLog.actor.cpp │ ├── ClogSingleConnection.actor.cpp │ ├── ClogTlog.actor.cpp │ ├── CommitBugCheck.actor.cpp │ ├── ConfigIncrement.actor.cpp │ ├── ConfigureDatabase.actor.cpp │ ├── ConflictRange.actor.cpp │ ├── ConsistencyCheck.actor.cpp │ ├── ConsistencyCheckUrgent.actor.cpp │ ├── CpuProfiler.actor.cpp │ ├── CreateTenant.actor.cpp │ ├── Cycle.actor.cpp │ ├── DDBalance.actor.cpp │ ├── DDMetrics.actor.cpp │ ├── DDMetricsExclude.actor.cpp │ ├── DataDistributionMetrics.actor.cpp │ ├── DataLossRecovery.actor.cpp │ ├── DcLag.actor.cpp │ ├── DifferentClustersSameRV.actor.cpp │ ├── DiskDurability.actor.cpp │ ├── DiskDurabilityTest.actor.cpp │ ├── DiskFailureInjection.actor.cpp │ ├── DummyWorkload.actor.cpp │ ├── EncryptKeyProxyTest.actor.cpp │ ├── EncryptionOps.actor.cpp │ ├── ExcludeIncludeStorageServersWorkload.actor.cpp │ ├── ExpectStableThroughput.actor.cpp │ ├── ExternalWorkload.actor.cpp │ ├── FailoverWithSSLag.actor.cpp │ ├── FastTriggeredWatches.actor.cpp │ ├── FileSystem.actor.cpp │ ├── FuzzApiCorrectness.actor.cpp │ ├── GcGenerations.actor.cpp │ ├── GetEstimatedRangeSize.actor.cpp │ ├── GetMappedRange.actor.cpp │ ├── GetRangeStream.actor.cpp │ ├── HTTPKeyValueStore.actor.cpp │ ├── HealthMetricsApi.actor.cpp │ ├── HighContentionPrefixAllocatorWorkload.actor.cpp │ ├── IDDTxnProcessorApiCorrectness.actor.cpp │ ├── Increment.actor.cpp │ ├── IncrementalBackup.actor.cpp │ ├── IndexScan.actor.cpp │ ├── Inventory.actor.cpp │ ├── KVStoreTest.actor.cpp │ ├── KillRegion.actor.cpp │ ├── LeakTLogInterface.actor.cpp │ ├── LocalRatekeeper.actor.cpp │ ├── LockDatabase.actor.cpp │ ├── LockDatabaseFrequently.actor.cpp │ ├── LogMetrics.actor.cpp │ ├── LowLatency.actor.cpp │ ├── MachineAttrition.actor.cpp │ ├── Mako.actor.cpp │ ├── MemoryKeyValueStore.cpp │ ├── MemoryLifetime.actor.cpp │ ├── MetaclusterManagementConcurrencyWorkload.actor.cpp │ ├── MetaclusterManagementWorkload.actor.cpp │ ├── MetaclusterRestoreWorkload.actor.cpp │ ├── MetricLogging.actor.cpp │ ├── MiniCycle.actor.cpp │ ├── MockDDReadWrite.actor.cpp │ ├── MockDDTest.actor.cpp │ ├── MockDDTrackerShardEvaluator.actor.cpp │ ├── MutationLogReaderCorrectness.actor.cpp │ ├── ParallelRestore.actor.cpp │ ├── Performance.actor.cpp │ ├── PerpetualWiggleStatsWorkload.actor.cpp │ ├── PerpetualWiggleStorageMigrationWorkload.actor.cpp │ ├── PhysicalShardMove.actor.cpp │ ├── Ping.actor.cpp │ ├── PrivateEndpoints.actor.cpp │ ├── ProtocolVersion.actor.cpp │ ├── PubSubMultiples.actor.cpp │ ├── QueuePush.actor.cpp │ ├── RYWDisable.actor.cpp │ ├── RYWPerformance.actor.cpp │ ├── RandomClogging.actor.cpp │ ├── RandomMoveKeys.actor.cpp │ ├── RandomRangeLock.actor.cpp │ ├── RandomSelector.actor.cpp │ ├── RangeLock.actor.cpp │ ├── RawTenantAccessWorkload.actor.cpp │ ├── ReadAfterWrite.actor.cpp │ ├── ReadHotDetection.actor.cpp │ ├── ReadWrite.actor.cpp │ ├── RemoveServersSafely.actor.cpp │ ├── ReportConflictingKeys.actor.cpp │ ├── ResolverBug.actor.cpp │ ├── Restore.actor.cpp │ ├── RestoreBackup.actor.cpp │ ├── RestoreFromBlob.actor.cpp │ ├── RestoreMultiRanges.actor.cpp │ ├── Rollback.actor.cpp │ ├── RyowCorrectness.actor.cpp │ ├── S3ClientWorkload.actor.cpp │ ├── SaveAndKill.actor.cpp │ ├── SelectorCorrectness.actor.cpp │ ├── Serializability.actor.cpp │ ├── Sideband.actor.cpp │ ├── SidebandSingle.actor.cpp │ ├── SimpleAtomicAdd.actor.cpp │ ├── SkewedReadWrite.actor.cpp │ ├── SlowTaskWorkload.actor.cpp │ ├── SnapTest.actor.cpp │ ├── SpecialKeySpaceCorrectness.actor.cpp │ ├── SpecialKeySpaceRobustness.actor.cpp │ ├── StatusWorkload.actor.cpp │ ├── StorageCorruption.actor.cpp │ ├── StorageQuota.actor.cpp │ ├── StorageServerCheckpointRestoreTest.actor.cpp │ ├── Storefront.actor.cpp │ ├── StreamingRangeRead.actor.cpp │ ├── StreamingRead.actor.cpp │ ├── SubmitBackup.actor.cpp │ ├── SuspendProcesses.actor.cpp │ ├── TagThrottleApi.actor.cpp │ ├── TargetedKill.actor.cpp │ ├── TaskBucketCorrectness.actor.cpp │ ├── TenantCapacityLimits.actor.cpp │ ├── TenantEntryCacheWorkload.actor.cpp │ ├── TenantLock.actor.cpp │ ├── TenantManagementConcurrencyWorkload.actor.cpp │ ├── TenantManagementWorkload.actor.cpp │ ├── ThreadSafety.actor.cpp │ ├── Throttling.actor.cpp │ ├── Throughput.actor.cpp │ ├── ThroughputQuota.actor.cpp │ ├── TimeKeeperCorrectness.actor.cpp │ ├── TransactionCost.actor.cpp │ ├── TriggerRecovery.actor.cpp │ ├── TxnTimeout.actor.cpp │ ├── UDPWorkload.actor.cpp │ ├── UnitPerf.actor.cpp │ ├── UnitTests.actor.cpp │ ├── Unreadable.actor.cpp │ ├── ValidateStorage.actor.cpp │ ├── VersionStamp.actor.cpp │ ├── WatchAndWait.actor.cpp │ ├── Watches.actor.cpp │ ├── WatchesSameKeyCorrectness.actor.cpp │ ├── WorkerErrors.actor.cpp │ ├── WriteBandwidth.actor.cpp │ ├── WriteDuringRead.actor.cpp │ ├── WriteTagThrottling.actor.cpp │ └── workloads.actor.cpp ├── fdbservice ├── CMakeLists.txt ├── FDBService.cpp ├── ServiceBase.cpp ├── ServiceBase.h └── ThreadPool.h ├── flow ├── ActorCollection.actor.cpp ├── ActorContext.cpp ├── ApiVersion.h.cmake ├── ApiVersions.cmake ├── Arena.cpp ├── CMakeLists.txt ├── CodeProbe.cpp ├── CompressedInt.actor.cpp ├── CompressionUtils.cpp ├── Deque.cpp ├── DeterministicRandom.cpp ├── EncryptUtils.cpp ├── Error.cpp ├── FastAlloc.cpp ├── FaultInjection.cpp ├── FileTraceLogWriter.cpp ├── FlowCheckedContinuation.swift ├── Hash3.c ├── Histogram.cpp ├── Hostname.actor.cpp ├── IAsyncFile.actor.cpp ├── IThreadPool.cpp ├── IThreadPoolTest.actor.cpp ├── IndexedSet.cpp ├── JsonTraceLogFormatter.cpp ├── Knobs.cpp ├── LinkTest.cpp ├── MkCert.cpp ├── MkCertCli.cpp ├── Net2.actor.cpp ├── Net2Packet.cpp ├── PKey.cpp ├── Platform.actor.cpp ├── ProcessEvents.cpp ├── Profiler.actor.cpp ├── ProtocolVersion.cpp ├── ProtocolVersion.h.cmake ├── ProtocolVersions.cmake ├── README.md ├── SignalSafeUnwind.cpp ├── SimBugInjector.cpp ├── SimpleCounter.cpp ├── SourceVersion.h.cmake ├── StreamCipher.cpp ├── SwiftBridging.swift ├── SwiftFileB.swift ├── SystemMonitor.cpp ├── TDMetric.cpp ├── TLSConfig.actor.cpp ├── TLSTest.cpp ├── ThreadHelper.actor.cpp ├── ThreadPrimitives.cpp ├── Trace.cpp ├── UnitTest.cpp ├── WipedString.cpp ├── WriteOnlySet.actor.cpp ├── XmlTraceLogFormatter.cpp ├── aarch64 │ ├── asmdefs.h │ ├── memcmp.S │ └── memcpy.S ├── acac.cpp ├── actorcompiler │ ├── Actor checklist.txt │ ├── ActorCompiler.cs │ ├── ActorCompiler.targets │ ├── ActorCompiler.xml │ ├── ActorParser.cs │ ├── ParseTree.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── actorcompiler.csproj │ └── usertype.dat ├── clock_support.swift ├── config.h.cmake ├── coveragetool │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── coveragetool.csproj ├── error_support.swift ├── flat_buffers.cpp ├── flow.cpp ├── flow_future_support.swift ├── flow_optional_support.swift ├── flow_stream_support.swift ├── future_support.swift ├── genericactors.actor.cpp ├── include │ └── flow │ │ ├── ActorCollection.h │ │ ├── ActorContext.h │ │ ├── Arena.h │ │ ├── ArgParseUtil.h │ │ ├── AsioReactor.h │ │ ├── AutoCPointer.h │ │ ├── BooleanParam.h │ │ ├── Buggify.h │ │ ├── ChaosMetrics.h │ │ ├── CodeProbe.h │ │ ├── CodeProbeUtils.h │ │ ├── CompressedInt.h │ │ ├── CompressionUtils.h │ │ ├── CoroUtils.h │ │ ├── Coroutines.h │ │ ├── CoroutinesImpl.h │ │ ├── DebugTrace.h │ │ ├── Deque.h │ │ ├── DeterministicRandom.h │ │ ├── EncryptUtils.h │ │ ├── Error.h │ │ ├── EventTypes.actor.h │ │ ├── FastAlloc.h │ │ ├── FastRef.h │ │ ├── FaultInjection.h │ │ ├── FileIdentifier.h │ │ ├── FileTraceLogWriter.h │ │ ├── FlowThread.h │ │ ├── GetSourceVersion.h │ │ ├── Hash3.h │ │ ├── Histogram.h │ │ ├── Hostname.h │ │ ├── IAsyncFile.h │ │ ├── IConnection.h │ │ ├── IDispatched.h │ │ ├── IPAddress.h │ │ ├── IRandom.h │ │ ├── IRateControl.h │ │ ├── IThreadPool.h │ │ ├── ITrace.h │ │ ├── IUDPSocket.h │ │ ├── IndexedSet.actor.h │ │ ├── IndexedSet.h │ │ ├── JsonTraceLogFormatter.h │ │ ├── Knobs.h │ │ ├── MetricSample.h │ │ ├── MkCert.h │ │ ├── Msgpack.h │ │ ├── Net2Packet.h │ │ ├── NetworkAddress.h │ │ ├── OTELMetrics.h │ │ ├── ObjectSerializer.h │ │ ├── ObjectSerializerTraits.h │ │ ├── Optional.h │ │ ├── OwningResource.h │ │ ├── PKey.h │ │ ├── Platform.actor.h │ │ ├── Platform.h │ │ ├── PriorityMultiLock.actor.h │ │ ├── ProcessEvents.h │ │ ├── Profiler.h │ │ ├── ScopeExit.h │ │ ├── SendBufferIterator.h │ │ ├── SignalSafeUnwind.h │ │ ├── SimBugInjector.h │ │ ├── SimpleCounter.h │ │ ├── StreamCipher.h │ │ ├── SystemMonitor.h │ │ ├── TDMetric.actor.h │ │ ├── TLSConfig.actor.h │ │ ├── TaskPriority.h │ │ ├── TaskQueue.h │ │ ├── ThreadHelper.actor.h │ │ ├── ThreadPrimitives.h │ │ ├── ThreadSafeQueue.h │ │ ├── Trace.h │ │ ├── Traceable.h │ │ ├── TreeBenchmark.h │ │ ├── TypeTraits.h │ │ ├── UnitTest.h │ │ ├── Util.h │ │ ├── WatchFile.actor.h │ │ ├── WipedString.h │ │ ├── WriteOnlySet.h │ │ ├── XmlTraceLogFormatter.h │ │ ├── actorcompiler.h │ │ ├── error_definitions.h │ │ ├── flat_buffers.h │ │ ├── flow.h │ │ ├── genericactors.actor.h │ │ ├── network.h │ │ ├── ppc-asm.h │ │ ├── ppc-opcode.h │ │ ├── rte_memcpy.h │ │ ├── serialize.h │ │ ├── singleton.h │ │ ├── sse2neon.h │ │ ├── swift.h │ │ ├── swift │ │ ├── ABI │ │ │ ├── MetadataValues.h │ │ │ └── Task.h │ │ └── Basic │ │ │ └── FlagSet.h │ │ ├── swift_concurrency_hooks.h │ │ ├── swift_future_support.h │ │ ├── swift_stream_support.h │ │ ├── swift_support.h │ │ ├── unactorcompiler.h │ │ ├── unsafe_swift_compat.h │ │ └── xxhash.h ├── network.cpp ├── no_intellisense.opt ├── protocolversion │ ├── ProtocolVersion.h.template │ ├── ProtocolVersion.java.template │ ├── protocol_version.py │ ├── protocol_version.py.template │ └── requirements.txt ├── reply_support.swift ├── serialize.cpp ├── stream_support.swift ├── swift_concurrency_hooks.cpp ├── swift_task_priority.cpp ├── task_priority_support.swift ├── test_memcpy.cpp ├── test_memcpy_perf.cpp ├── trace_support.swift ├── version.cpp └── xxhash.c ├── flowbench ├── BenchAsyncFileWriteCheckerLRU.cpp ├── BenchCallback.actor.cpp ├── BenchConflictSet.cpp ├── BenchEncrypt.cpp ├── BenchHash.cpp ├── BenchIONet2.actor.cpp ├── BenchIdempotencyIds.cpp ├── BenchIterate.cpp ├── BenchMem.cpp ├── BenchMetadataCheck.cpp ├── BenchNet2.actor.cpp ├── BenchPopulate.cpp ├── BenchPriorityMultiLock.actor.cpp ├── BenchRandom.cpp ├── BenchRef.cpp ├── BenchSamples.cpp ├── BenchSelectReplicas.cpp ├── BenchStream.actor.cpp ├── BenchTimer.cpp ├── BenchVersionVector.cpp ├── BenchVersionVectorSerialization.cpp ├── BenchZstd.cpp ├── CMakeLists.txt ├── GlobalData.cpp ├── README.md ├── benchmark.cmake ├── flowbench.actor.cpp └── include │ └── flowbench │ └── GlobalData.h ├── layers ├── bulkload │ └── bulk.py ├── compressedColumn │ └── compressedColumn.py ├── containers │ ├── highcontention │ │ └── queue.py │ ├── set.py │ ├── treap.py │ └── vector.py ├── pubsub │ ├── ps_prompt.py │ ├── ps_test.py │ ├── ps_tutorial.py │ ├── pubsub.py │ ├── pubsub_example.py │ ├── pubsub_orig.py │ ├── pubsub_simpledoc.py │ ├── remoteload.py │ ├── remotesend.py │ └── remotesubscribe.py └── taskbucket │ ├── __init__.py │ └── test.py ├── metacluster ├── CMakeLists.txt ├── Metacluster.cpp ├── MetaclusterMetadata.cpp ├── MetaclusterMetrics.actor.cpp ├── MetaclusterUtil.actor.cpp └── include │ └── metacluster │ ├── ConfigureCluster.h │ ├── ConfigureTenant.actor.h │ ├── CreateMetacluster.actor.h │ ├── CreateTenant.actor.h │ ├── DecommissionMetacluster.actor.h │ ├── DeleteTenant.actor.h │ ├── GetCluster.actor.h │ ├── GetTenant.actor.h │ ├── GetTenantGroup.actor.h │ ├── ListClusters.actor.h │ ├── ListTenantGroups.actor.h │ ├── ListTenants.actor.h │ ├── Metacluster.h │ ├── MetaclusterConsistency.actor.h │ ├── MetaclusterData.actor.h │ ├── MetaclusterInternal.actor.h │ ├── MetaclusterMetadata.h │ ├── MetaclusterMetrics.h │ ├── MetaclusterOperationContext.actor.h │ ├── MetaclusterTypes.h │ ├── MetaclusterUtil.actor.h │ ├── RegisterCluster.actor.h │ ├── RemoveCluster.actor.h │ ├── RenameTenant.actor.h │ ├── RestoreCluster.actor.h │ ├── TenantConsistency.actor.h │ └── UpdateTenantGroups.actor.h ├── packaging ├── deb │ ├── DEBIAN-foundationdb-clients │ │ └── postinst │ ├── DEBIAN-foundationdb-server │ │ ├── conffiles │ │ ├── postinst │ │ ├── postrm │ │ ├── preinst │ │ └── prerm │ ├── builddebs.sh │ ├── foundationdb-clients.control.in │ ├── foundationdb-init │ └── foundationdb-server.control.in ├── description ├── docker │ ├── Dockerfile │ ├── README.md │ ├── build-images.sh │ ├── entrypoint.bash │ ├── fdb-aws-s3-credentials-fetcher │ │ ├── README.md │ │ ├── fdb-aws-s3-credentials-fetcher.go │ │ ├── go.mod │ │ └── go.sum │ ├── fdb.bash │ ├── fdb_single.bash │ ├── kubernetes │ │ └── test_config.yaml │ ├── run_ycsb.sh │ ├── run_ycsb_standalone.sh │ ├── samples │ │ ├── golang │ │ │ ├── .env │ │ │ ├── README.md │ │ │ ├── app │ │ │ │ ├── Dockerfile │ │ │ │ ├── fdb.cluster │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── main.go │ │ │ │ └── start.bash │ │ │ └── docker-compose.yml │ │ ├── local │ │ │ ├── README.md │ │ │ ├── docker-compose.yml │ │ │ ├── start.bash │ │ │ └── stop.bash │ │ └── python │ │ │ ├── .env │ │ │ ├── README.md │ │ │ ├── app │ │ │ ├── Dockerfile │ │ │ ├── requirements.txt │ │ │ ├── server.py │ │ │ └── start.bash │ │ │ └── docker-compose.yml │ ├── sidecar.py │ ├── sidecar_test.py │ └── website │ │ └── .gitkeep ├── fdb.cluster.cmake ├── foundationdb.conf ├── foundationdb.ico ├── make_public.py ├── msi │ ├── CMakeLists.txt │ ├── FDBInstaller.wxs │ ├── FDBInstaller.wxs.cmake │ ├── LICENSE.rtf │ ├── MSIInstaller.wixproj │ ├── art │ │ ├── banner.jpg │ │ ├── banner.xcf │ │ ├── dialog.jpg │ │ ├── dialog.xcf │ │ └── favicon-60.png │ ├── generate_wxs.cmake │ └── skeleton.conf ├── multiversion │ ├── clients │ │ ├── postinst │ │ └── prerm │ └── server │ │ ├── postinst-deb │ │ ├── postinst-rpm │ │ └── prerm ├── osx │ ├── Distribution.xml │ ├── buildpkg.sh │ ├── com.foundationdb.fdbmonitor.plist │ ├── foundationdb.conf.new │ ├── resources │ │ ├── conclusion.rtf │ │ └── logo.png │ ├── scripts-clients │ │ └── postinstall │ ├── scripts-server │ │ ├── postinstall │ │ └── preinstall │ └── uninstall-FoundationDB.sh └── rpm │ ├── buildrpms.sh │ ├── foundationdb-init │ ├── foundationdb.service │ ├── foundationdb.spec.in │ └── scripts │ ├── postclients.sh │ ├── postserver.sh │ ├── preclients.sh │ ├── preserver.sh │ └── preunserver.sh ├── pull_request_template.md ├── recipes ├── go-recipes │ ├── blob.go │ ├── doc.go │ ├── graph.go │ ├── indirect.go │ ├── multi.go │ ├── priority.go │ ├── queue.go │ └── table.go ├── java-recipes │ ├── MicroBlob.java │ ├── MicroDoc.java │ ├── MicroGraph.java │ ├── MicroIndexes.java │ ├── MicroIndirect.java │ ├── MicroMulti.java │ ├── MicroPriority.java │ ├── MicroQueue.java │ ├── MicroRange.java │ ├── MicroSpatial.java │ ├── MicroSpatialTest.java │ ├── MicroTable.java │ └── MicroVector.java ├── python-recipes │ ├── micro_blob.py │ ├── micro_doc.py │ ├── micro_graph.py │ ├── micro_indirect.py │ ├── micro_multi.py │ ├── micro_priority.py │ ├── micro_queue.py │ └── micro_table.py └── ruby-recipes │ ├── micro_blob.rb │ ├── micro_doc.rb │ ├── micro_graph.rb │ ├── micro_indirect.rb │ ├── micro_multi.rb │ ├── micro_priority.rb │ ├── micro_queue.rb │ └── micro_table.rb ├── swift_build_support ├── empty.modulemap └── headeroverlay.yaml ├── swift_get_latest_toolchain.sh ├── tests ├── AsyncFileCorrectness.txt ├── AsyncFileMix.txt ├── AsyncFileRead.txt ├── AsyncFileReadRandom.txt ├── AsyncFileWrite.txt ├── BackupContainers.txt ├── BandwidthThrottle.txt ├── BigInsert.txt ├── BlobManagerUnit.toml ├── CMakeLists.txt ├── CTestCustom.ctest.cmake ├── ClusterControllerTests.txt ├── ConsistencyCheck.txt ├── DDMetricsExclude.txt ├── DataDistributionMetrics.txt ├── DiskDurability.txt ├── FileSystem.txt ├── Happy.txt ├── IThreadPool.txt ├── IncrementalDelete.txt ├── KVStoreMemTest.txt ├── KVStoreReadMostly.txt ├── KVStoreTest.txt ├── KVStoreTestRead.txt ├── KVStoreTestWrite.txt ├── KVStoreValueSize.txt ├── LayerStatusMerge.txt ├── Mako.txt ├── ParallelRestoreApiCorrectnessAtomicRestore.txt ├── ParallelRestoreOldBackupApiCorrectnessAtomicRestore.toml ├── PerfUnitTests.toml ├── PureNetwork.txt ├── RRW2500.txt ├── RandomRangeRead.txt ├── RandomRead.txt ├── RandomReadWrite.txt ├── ReadAbsent.txt ├── ReadAfterWrite.txt ├── ReadHalfAbsent.txt ├── RedwoodCorrectness.txt ├── RedwoodCorrectnessBTree.txt ├── RedwoodCorrectnessPager.txt ├── RedwoodCorrectnessUnits.txt ├── RedwoodPerfPrefixCompression.txt ├── RedwoodPerfRandomRangeScans.txt ├── RedwoodPerfSequentialInsert.txt ├── RedwoodPerfSet.txt ├── RedwoodPerfTests.txt ├── RocksDBTest.txt ├── S3BlobStore.txt ├── SampleNoSimAttrition.txt ├── SimpleExternalTest.txt ├── SpecificUnitTest.txt ├── StorageMetricsSampleTests.txt ├── StorageServerInterface.txt ├── StreamingWrite.txt ├── SystemData.txt ├── TestRunner │ ├── TestDirectory.py │ ├── TestRunner.py │ ├── authz_util.py │ ├── binary_download.py │ ├── cluster_args.py │ ├── fake_cluster.py │ ├── fdb_version.py.cmake │ ├── local_cluster.py │ ├── requirements.txt │ ├── test_util.py │ ├── tmp_cluster.py │ ├── tmp_multi_cluster.py │ └── upgrade_test.py ├── ThreadSafety.txt ├── TraceEventMetrics.txt ├── WorkerTests.txt ├── argument_parsing │ └── test_argument_parsing.py ├── authorization │ ├── admin_server.py │ ├── authz_test.py │ ├── conftest.py │ ├── requirements.txt │ └── util.py ├── default.txt ├── errors.txt ├── fail.txt ├── fast │ ├── AtomicBackupCorrectness.toml │ ├── AtomicBackupToDBCorrectness.toml │ ├── AtomicOps.toml │ ├── AtomicOpsApiCorrectness.toml │ ├── AutomaticIdempotency.toml │ ├── BackupAzureBlobCorrectness.toml │ ├── BackupCorrectness.toml │ ├── BackupCorrectnessClean.toml │ ├── BackupCorrectnessWithEKPKeyFetchFailures.toml │ ├── BackupCorrectnessWithTenantDeletion.toml │ ├── BackupS3BlobCorrectness.toml │ ├── BackupToDBCorrectness.toml │ ├── BackupToDBCorrectnessClean.toml │ ├── BulkDumping.toml │ ├── BulkLoading.toml │ ├── CloggedSideband.toml │ ├── CompressionUtilsUnit.toml │ ├── ConfigIncrement.toml │ ├── ConfigIncrementChangeCoordinators.toml │ ├── ConfigIncrementWithKills.toml │ ├── ConfigureLocked.toml │ ├── ConstrainedRandomSelector.toml │ ├── CycleAndLock.toml │ ├── CycleTest.toml │ ├── DataLossRecovery.toml │ ├── EncryptKeyProxyTest.toml │ ├── EncryptedBackupCorrectness.toml │ ├── EncryptionOps.toml │ ├── EncryptionUnitTests.toml │ ├── FuzzApiCorrectness.toml │ ├── FuzzApiCorrectnessClean.toml │ ├── GetEstimatedRangeSize.toml │ ├── GetMappedRange.toml │ ├── HTTPKeyValueStore.toml │ ├── IDDTxnProcessorMoveKeys.toml │ ├── IncrementTest.toml │ ├── IncrementalBackup.toml │ ├── IncrementalBackupWithEKPKeyFetchFailures.toml │ ├── IncrementalBackupWithTenantDeletion.toml │ ├── InventoryTestAlmostReadOnly.toml │ ├── InventoryTestSomeWrites.toml │ ├── KillRegionCycle.toml │ ├── LocalRatekeeper.toml │ ├── LongStackWriteDuringRead.toml │ ├── LowLatency.toml │ ├── LowLatencySingleClog.toml │ ├── MemoryLifetime.toml │ ├── MockDDReadWrite.toml │ ├── MoveKeysCycle.toml │ ├── MutationLogReaderCorrectness.toml │ ├── PerpetualWiggleStats.toml │ ├── PhysicalShardMove.toml │ ├── PrivateEndpoints.toml │ ├── ProtocolVersion.toml │ ├── RESTUnit.toml │ ├── RandomSelector.toml │ ├── RandomUnitTests.toml │ ├── RangeLockCycle.toml │ ├── RangeLocking.toml │ ├── RawTenantAccessClean.toml │ ├── ReadHotDetectionCorrectness.toml │ ├── ReportConflictingKeys.toml │ ├── RocksdbNondeterministicTest.toml │ ├── SelectorCorrectness.toml │ ├── ShardedRocksNondeterministicTest.toml │ ├── Sideband.toml │ ├── SidebandSingle.toml │ ├── SidebandWithStatus.toml │ ├── SimpleAtomicAdd.toml │ ├── SpecialKeySpaceCorrectness.toml │ ├── SpecialKeySpaceRobustness.toml │ ├── StorageServerCheckpointRestore.toml │ ├── StreamingRangeRead.toml │ ├── SwizzledRollbackSideband.toml │ ├── SystemRebootTestCycle.toml │ ├── TaskBucketCorrectness.toml │ ├── TenantCycle.toml │ ├── TenantCycleTokenless.toml │ ├── TenantEntryCache.toml │ ├── TenantLock.toml │ ├── TimeKeeperCorrectness.toml │ ├── TxnStateStoreCycleTest.toml │ ├── TxnTimeout.toml │ ├── UDP.toml │ ├── Unreadable.toml │ ├── ValidateStorage.toml │ ├── VersionStamp.toml │ ├── Watches.toml │ ├── WriteDuringRead.toml │ └── WriteDuringReadClean.toml ├── killall.txt ├── latency.txt ├── loopback_cluster │ ├── run_cluster.sh │ └── run_custom_cluster.sh ├── negative │ ├── ResolverIgnoreReads.toml │ ├── ResolverIgnoreTooOld.toml │ ├── ResolverIgnoreWrites.toml │ └── StorageCorruption.toml ├── noSim │ ├── KeyValueStoreRocksDBTest.toml │ ├── PerfShardedRocksDBTest.toml │ ├── RandomUnitTests.toml │ ├── ShardedRocksDBCheckpointDeterminism.toml │ ├── ShardedRocksDBCheckpointTest.toml │ ├── ShardedRocksDBTest.toml │ └── SlowTask.txt ├── performance-fs.txt ├── performance.txt ├── ping.TXT ├── pingServers.TXT ├── pt.TXT ├── python_tests │ ├── __init__.py │ ├── multithreaded_client.py │ ├── python_correctness.py │ ├── python_performance.py │ └── ryw_benchmark.py ├── randomSelector.txt ├── rare │ ├── AllSimUnitTests.toml │ ├── CheckRelocation.toml │ ├── ClogRemoteTLog.toml │ ├── ClogTlog.toml │ ├── ClogUnclog.toml │ ├── CloggedCycleWithKills.toml │ ├── ConfigDBUnitTest.toml │ ├── ConflictRangeCheck.toml │ ├── ConflictRangeRYOWCheck.toml │ ├── CycleRollbackClogged.toml │ ├── CycleWithDeadHall.toml │ ├── CycleWithKills.toml │ ├── DataDistributionMetrics.toml │ ├── DcLag.toml │ ├── ExpectStableThroughput.toml │ ├── FailoverWithSSLag.toml │ ├── HighContentionPrefixAllocator.toml │ ├── InventoryTestHeavyWrites.toml │ ├── LargeApiCorrectness.toml │ ├── LargeApiCorrectnessStatus.toml │ ├── MetaclusterManagement.toml │ ├── MetaclusterManagementConcurrency.toml │ ├── MetaclusterRecovery.toml │ ├── PerpetualWiggleStorageMigration.toml │ ├── RYWDisable.toml │ ├── RandomReadWriteTest.toml │ ├── ReadSkewReadWrite.toml │ ├── RedwoodCorrectnessBTree.toml │ ├── RedwoodDeltaTree.toml │ ├── RestoreMultiRanges.toml │ ├── SpecificUnitTests.toml │ ├── StatusBuilderPerf.toml │ ├── StorageQuotaTest.toml │ ├── SwizzledLargeApiCorrectness.toml │ ├── TLogVersionMessagesOverheadFactor.toml │ ├── Throttling.toml │ ├── ThroughputQuota.toml │ ├── TransactionCost.toml │ ├── TransactionTagApiCorrectness.toml │ ├── TransactionTagSwizzledApiCorrectness.toml │ └── WriteTagThrottling.toml ├── restarting │ ├── from_7.1.0_until_7.2.0 │ │ ├── ConfigureStorageMigrationTestRestart-1.toml │ │ ├── ConfigureStorageMigrationTestRestart-2.toml │ │ ├── ConfigureTestRestart-1.toml │ │ ├── ConfigureTestRestart-2.toml │ │ ├── DrUpgradeRestart-1.txt │ │ ├── DrUpgradeRestart-2.txt │ │ ├── SnapIncrementalRestore-1.txt │ │ ├── SnapIncrementalRestore-2.txt │ │ ├── UpgradeAndBackupRestore-1.toml │ │ └── UpgradeAndBackupRestore-2.toml │ ├── from_7.1.0_until_7.3.0 │ │ ├── ClientTransactionProfilingCorrectness-1.txt │ │ ├── ClientTransactionProfilingCorrectness-2.txt │ │ ├── CycleTestRestart-1.txt │ │ ├── CycleTestRestart-2.txt │ │ ├── StorefrontTestRestart-1.txt │ │ └── StorefrontTestRestart-2.txt │ ├── from_7.1.63_until_7.2.0 │ │ ├── ClientMetricRestart-1.toml │ │ └── ClientMetricRestart-2.toml │ ├── from_7.2.0_until_7.3.0 │ │ ├── ConfigureStorageMigrationTestRestart-1.toml │ │ ├── ConfigureStorageMigrationTestRestart-2.toml │ │ ├── ConfigureTestRestart-1.toml │ │ ├── ConfigureTestRestart-2.toml │ │ ├── DrUpgradeRestart-1.toml │ │ └── DrUpgradeRestart-2.toml │ ├── from_7.2.4_until_7.3.0 │ │ ├── UpgradeAndBackupRestore-1.toml │ │ └── UpgradeAndBackupRestore-2.toml │ ├── from_7.3.0 │ │ ├── ConfigureStorageMigrationTestRestart-1.toml │ │ ├── ConfigureStorageMigrationTestRestart-2.toml │ │ ├── ConfigureTestRestart-1.toml │ │ ├── ConfigureTestRestart-2.toml │ │ ├── DrUpgradeRestart-1.toml │ │ ├── DrUpgradeRestart-2.toml │ │ ├── StorefrontTestRestart-1.toml │ │ ├── StorefrontTestRestart-2.toml │ │ ├── UpgradeAndBackupRestore-1.toml │ │ ├── UpgradeAndBackupRestore-2.toml │ │ ├── VersionVectorDisableRestart-1.toml │ │ ├── VersionVectorDisableRestart-2.toml │ │ ├── VersionVectorEnableRestart-1.toml │ │ └── VersionVectorEnableRestart-2.toml │ ├── from_7.3.0_until_7.4.0 │ │ ├── SnapCycleRestart-1.toml │ │ ├── SnapCycleRestart-2.toml │ │ ├── SnapTestAttrition-1.toml │ │ ├── SnapTestAttrition-2.toml │ │ ├── SnapTestRestart-1.toml │ │ ├── SnapTestRestart-2.toml │ │ ├── SnapTestSimpleRestart-1.toml │ │ └── SnapTestSimpleRestart-2.toml │ ├── from_7.3.29 │ │ ├── ClientTransactionProfilingCorrectness-1.toml │ │ ├── ClientTransactionProfilingCorrectness-2.toml │ │ ├── CycleTestRestart-1.toml │ │ └── CycleTestRestart-2.toml │ ├── from_7.3.49 │ │ ├── ClientMetricRestart-1.toml │ │ └── ClientMetricRestart-2.toml │ ├── from_7.3.5_until_7.3.29 │ │ ├── ClientTransactionProfilingCorrectness-1.toml │ │ ├── ClientTransactionProfilingCorrectness-2.toml │ │ ├── CycleTestRestart-1.toml │ │ └── CycleTestRestart-2.toml │ ├── from_7.4.0 │ │ ├── SnapCycleRestart-1.toml │ │ ├── SnapCycleRestart-2.toml │ │ ├── SnapTestAttrition-1.toml │ │ ├── SnapTestAttrition-2.toml │ │ ├── SnapTestRestart-1.toml │ │ ├── SnapTestRestart-2.toml │ │ ├── SnapTestSimpleRestart-1.toml │ │ └── SnapTestSimpleRestart-2.toml │ ├── to_7.4.5 │ │ ├── ConfigureStorageMigrationTestRestart-1.toml │ │ ├── ConfigureStorageMigrationTestRestart-2.toml │ │ ├── CycleTestRestart-1.toml │ │ └── CycleTestRestart-2.toml │ └── to_8.0.0 │ │ ├── ConfigureStorageMigrationTestRestart-1.toml │ │ ├── ConfigureStorageMigrationTestRestart-2.toml │ │ ├── CycleTestRestart-1.toml │ │ └── CycleTestRestart-2.toml ├── s3VersionHeaders.txt ├── selectorCorrectness.txt ├── slow │ ├── ApiCorrectness.toml │ ├── ApiCorrectnessAtomicRestore.toml │ ├── ApiCorrectnessSwitchover.toml │ ├── ApiCorrectnessWithConsistencyCheck.toml │ ├── BackupAndRestore.toml │ ├── BackupCorrectnessPartitioned.toml │ ├── BackupNewAndOldRestore.toml │ ├── BackupOldAndNewRestore.toml │ ├── BackupS3BlobCorrectnessHeavyChaos.toml │ ├── BulkDumpingS3.toml │ ├── BulkDumpingS3WithChaos.toml │ ├── ClogWithRollbacks.toml │ ├── CloggedCycleTest.toml │ ├── CloggedStorefront.toml │ ├── CommitBug.toml │ ├── ConfigureStorageMigrationTest.toml │ ├── ConfigureTest.toml │ ├── CycleRollbackPlain.toml │ ├── DDBalanceAndRemove.toml │ ├── DDBalanceAndRemoveStatus.toml │ ├── DifferentClustersSameRV.toml │ ├── DiskFailureCycle.toml │ ├── ExcludeIncludeStorageServers.toml │ ├── FastTriggeredWatches.toml │ ├── GcGenerations.toml │ ├── LongRunning.toml │ ├── LowLatencyWithFailures.toml │ ├── MoveKeysClean.toml │ ├── MoveKeysSideband.toml │ ├── ParallelRestoreNewBackupCorrectnessAtomicOp.toml │ ├── ParallelRestoreNewBackupCorrectnessCycle.toml │ ├── ParallelRestoreNewBackupCorrectnessMultiCycles.toml │ ├── ParallelRestoreNewBackupWriteDuringReadAtomicRestore.toml │ ├── ParallelRestoreOldBackupCorrectnessAtomicOp.toml │ ├── ParallelRestoreOldBackupCorrectnessCycle.toml │ ├── ParallelRestoreOldBackupCorrectnessMultiCycles.toml │ ├── ParallelRestoreOldBackupWriteDuringReadAtomicRestore.toml │ ├── RyowCorrectness.toml │ ├── S3Client.toml │ ├── S3ClientWorkloadWithChaos.toml │ ├── Serializability.toml │ ├── SharedBackupCorrectness.toml │ ├── SharedBackupToDBCorrectness.toml │ ├── SharedDefaultBackupCorrectness.toml │ ├── StorefrontTest.toml │ ├── SwizzledApiCorrectness.toml │ ├── SwizzledCycleTest.toml │ ├── SwizzledDdBalance.toml │ ├── SwizzledRollbackTimeLapse.toml │ ├── SwizzledRollbackTimeLapseIncrement.toml │ ├── SwizzledTenantManagement.toml │ ├── SwizzledTenantManagementMetacluster.toml │ ├── TenantCapacityLimits.toml │ ├── TenantManagement.toml │ ├── TenantManagementConcurrency.toml │ ├── VersionStampBackupToDB.toml │ ├── VersionStampSwitchover.toml │ ├── WriteDuringReadAtomicRestore.toml │ ├── WriteDuringReadSwitchover.toml │ └── ddbalance.toml └── status │ ├── invalid_proc_addresses.json │ ├── invalid_proc_addresses.txt │ ├── local_6_machine_no_replicas_remain.json │ ├── local_6_machine_no_replicas_remain.txt │ ├── separate_1_of_3_coordinators_remain.json │ ├── separate_1_of_3_coordinators_remain.txt │ ├── separate_2_of_3_coordinators_remain.json │ ├── separate_2_of_3_coordinators_remain.txt │ ├── separate_cannot_write_cluster_file.json │ ├── separate_cannot_write_cluster_file.txt │ ├── separate_idle.json │ ├── separate_idle.txt │ ├── separate_initializing.json │ ├── separate_initializing.txt │ ├── separate_no_coordinators.json │ ├── separate_no_coordinators.txt │ ├── separate_no_database.json │ ├── separate_no_database.txt │ ├── separate_no_servers.json │ ├── separate_no_servers.txt │ ├── separate_not_enough_servers.json │ ├── separate_not_enough_servers.txt │ ├── single_process_too_many_config_params.json │ └── single_process_too_many_config_params.txt └── versions.target.cmake /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/.clang-format -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/.flake8 -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /ACKNOWLEDGEMENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/ACKNOWLEDGEMENTS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SWIFT_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/SWIFT_GUIDE.md -------------------------------------------------------------------------------- /SWIFT_IDE_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/SWIFT_IDE_SETUP.md -------------------------------------------------------------------------------- /bindings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/__init__.py -------------------------------------------------------------------------------- /bindings/bindingtester/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/bindingtester/__init__.py -------------------------------------------------------------------------------- /bindings/bindingtester/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/bindingtester/util.py -------------------------------------------------------------------------------- /bindings/c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/c/external_workload.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/external_workload.map -------------------------------------------------------------------------------- /bindings/c/fdb_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/fdb_c.cpp -------------------------------------------------------------------------------- /bindings/c/fdb_c.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/fdb_c.map -------------------------------------------------------------------------------- /bindings/c/fdb_c_shim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/fdb_c_shim.cpp -------------------------------------------------------------------------------- /bindings/c/foundationdb/fdb_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/foundationdb/fdb_c.h -------------------------------------------------------------------------------- /bindings/c/generate_asm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/generate_asm.py -------------------------------------------------------------------------------- /bindings/c/symbolify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/symbolify.py -------------------------------------------------------------------------------- /bindings/c/test/fdb_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/test/fdb_api.hpp -------------------------------------------------------------------------------- /bindings/c/test/fdb_c90_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/test/fdb_c90_test.c -------------------------------------------------------------------------------- /bindings/c/test/mako/async.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/test/mako/async.cpp -------------------------------------------------------------------------------- /bindings/c/test/mako/async.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/test/mako/async.hpp -------------------------------------------------------------------------------- /bindings/c/test/mako/ddsketch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/test/mako/ddsketch.hpp -------------------------------------------------------------------------------- /bindings/c/test/mako/future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/test/mako/future.hpp -------------------------------------------------------------------------------- /bindings/c/test/mako/limit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/test/mako/limit.hpp -------------------------------------------------------------------------------- /bindings/c/test/mako/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/test/mako/logger.hpp -------------------------------------------------------------------------------- /bindings/c/test/mako/macro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/test/mako/macro.hpp -------------------------------------------------------------------------------- /bindings/c/test/mako/mako.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/test/mako/mako.cpp -------------------------------------------------------------------------------- /bindings/c/test/mako/mako.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/test/mako/mako.hpp -------------------------------------------------------------------------------- /bindings/c/test/mako/mako.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/test/mako/mako.rst -------------------------------------------------------------------------------- /bindings/c/test/mako/process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/test/mako/process.hpp -------------------------------------------------------------------------------- /bindings/c/test/mako/shm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/test/mako/shm.hpp -------------------------------------------------------------------------------- /bindings/c/test/mako/stats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/test/mako/stats.hpp -------------------------------------------------------------------------------- /bindings/c/test/mako/tenant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/test/mako/tenant.cpp -------------------------------------------------------------------------------- /bindings/c/test/mako/tenant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/test/mako/tenant.hpp -------------------------------------------------------------------------------- /bindings/c/test/mako/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/test/mako/time.hpp -------------------------------------------------------------------------------- /bindings/c/test/mako/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/test/mako/utils.cpp -------------------------------------------------------------------------------- /bindings/c/test/mako/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/test/mako/utils.hpp -------------------------------------------------------------------------------- /bindings/c/test/performance_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/test/performance_test.c -------------------------------------------------------------------------------- /bindings/c/test/ryw_benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/test/ryw_benchmark.c -------------------------------------------------------------------------------- /bindings/c/test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/test/test.h -------------------------------------------------------------------------------- /bindings/c/test/txn_size_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/test/txn_size_test.c -------------------------------------------------------------------------------- /bindings/c/test/unit/fdb_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/test/unit/fdb_api.cpp -------------------------------------------------------------------------------- /bindings/c/test/unit/fdb_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/c/test/unit/fdb_api.hpp -------------------------------------------------------------------------------- /bindings/flow/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/flow/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/flow/DirectoryLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/flow/DirectoryLayer.h -------------------------------------------------------------------------------- /bindings/flow/DirectoryPartition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/flow/DirectoryPartition.h -------------------------------------------------------------------------------- /bindings/flow/DirectorySubspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/flow/DirectorySubspace.h -------------------------------------------------------------------------------- /bindings/flow/FDBLoanerTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/flow/FDBLoanerTypes.h -------------------------------------------------------------------------------- /bindings/flow/IDirectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/flow/IDirectory.h -------------------------------------------------------------------------------- /bindings/flow/Node.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/flow/Node.actor.cpp -------------------------------------------------------------------------------- /bindings/flow/Subspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/flow/Subspace.cpp -------------------------------------------------------------------------------- /bindings/flow/Subspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/flow/Subspace.h -------------------------------------------------------------------------------- /bindings/flow/Tuple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/flow/Tuple.cpp -------------------------------------------------------------------------------- /bindings/flow/Tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/flow/Tuple.h -------------------------------------------------------------------------------- /bindings/flow/fdb_flow.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/flow/fdb_flow.actor.cpp -------------------------------------------------------------------------------- /bindings/flow/fdb_flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/flow/fdb_flow.h -------------------------------------------------------------------------------- /bindings/go/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/go/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/go/README.md -------------------------------------------------------------------------------- /bindings/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/go/go.mod -------------------------------------------------------------------------------- /bindings/go/src/fdb/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/go/src/fdb/cluster.go -------------------------------------------------------------------------------- /bindings/go/src/fdb/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/go/src/fdb/database.go -------------------------------------------------------------------------------- /bindings/go/src/fdb/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/go/src/fdb/doc.go -------------------------------------------------------------------------------- /bindings/go/src/fdb/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/go/src/fdb/errors.go -------------------------------------------------------------------------------- /bindings/go/src/fdb/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/go/src/fdb/errors_test.go -------------------------------------------------------------------------------- /bindings/go/src/fdb/fdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/go/src/fdb/fdb.go -------------------------------------------------------------------------------- /bindings/go/src/fdb/fdb_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/go/src/fdb/fdb_darwin.go -------------------------------------------------------------------------------- /bindings/go/src/fdb/fdb_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/go/src/fdb/fdb_freebsd.go -------------------------------------------------------------------------------- /bindings/go/src/fdb/fdb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/go/src/fdb/fdb_test.go -------------------------------------------------------------------------------- /bindings/go/src/fdb/fdb_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/go/src/fdb/fdb_windows.go -------------------------------------------------------------------------------- /bindings/go/src/fdb/futures.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/go/src/fdb/futures.go -------------------------------------------------------------------------------- /bindings/go/src/fdb/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/go/src/fdb/generated.go -------------------------------------------------------------------------------- /bindings/go/src/fdb/keyselector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/go/src/fdb/keyselector.go -------------------------------------------------------------------------------- /bindings/go/src/fdb/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/go/src/fdb/range.go -------------------------------------------------------------------------------- /bindings/go/src/fdb/snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/go/src/fdb/snapshot.go -------------------------------------------------------------------------------- /bindings/go/src/fdb/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/go/src/fdb/transaction.go -------------------------------------------------------------------------------- /bindings/go/src/fdb/tuple/tuple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/go/src/fdb/tuple/tuple.go -------------------------------------------------------------------------------- /bindings/java/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/java/.clang-format -------------------------------------------------------------------------------- /bindings/java/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/java/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/java/JavaWorkload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/java/JavaWorkload.cpp -------------------------------------------------------------------------------- /bindings/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/java/README.md -------------------------------------------------------------------------------- /bindings/java/fdb-java-style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/java/fdb-java-style.xml -------------------------------------------------------------------------------- /bindings/java/fdbJNI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/java/fdbJNI.cpp -------------------------------------------------------------------------------- /bindings/java/pom.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/java/pom.xml.in -------------------------------------------------------------------------------- /bindings/java/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/java/src/README.md -------------------------------------------------------------------------------- /bindings/java/src/tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/java/src/tests.cmake -------------------------------------------------------------------------------- /bindings/java/suppressions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/java/suppressions.xml -------------------------------------------------------------------------------- /bindings/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/python/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/python/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/python/MANIFEST.in -------------------------------------------------------------------------------- /bindings/python/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/python/README.rst -------------------------------------------------------------------------------- /bindings/python/fdb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/python/fdb/__init__.py -------------------------------------------------------------------------------- /bindings/python/fdb/fdb_c.dll.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/python/fdb/fdb_c.dll.pth -------------------------------------------------------------------------------- /bindings/python/fdb/impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/python/fdb/impl.py -------------------------------------------------------------------------------- /bindings/python/fdb/locality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/python/fdb/locality.py -------------------------------------------------------------------------------- /bindings/python/fdb/tuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/python/fdb/tuple.py -------------------------------------------------------------------------------- /bindings/python/pycodestyle.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/python/pycodestyle.cfg -------------------------------------------------------------------------------- /bindings/python/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/python/pyproject.toml -------------------------------------------------------------------------------- /bindings/python/tests/tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/python/tests/tester.py -------------------------------------------------------------------------------- /bindings/ruby/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/ruby/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/ruby/fdb.gemspec.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/ruby/fdb.gemspec.cmake -------------------------------------------------------------------------------- /bindings/ruby/fdb.gemspec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/ruby/fdb.gemspec.in -------------------------------------------------------------------------------- /bindings/ruby/lib/fdb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/ruby/lib/fdb.rb -------------------------------------------------------------------------------- /bindings/ruby/lib/fdbdirectory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/ruby/lib/fdbdirectory.rb -------------------------------------------------------------------------------- /bindings/ruby/lib/fdbimpl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/ruby/lib/fdbimpl.rb -------------------------------------------------------------------------------- /bindings/ruby/lib/fdbimpl_v609.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/ruby/lib/fdbimpl_v609.rb -------------------------------------------------------------------------------- /bindings/ruby/lib/fdblocality.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/ruby/lib/fdblocality.rb -------------------------------------------------------------------------------- /bindings/ruby/lib/fdbsubspace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/ruby/lib/fdbsubspace.rb -------------------------------------------------------------------------------- /bindings/ruby/lib/fdbtuple.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/ruby/lib/fdbtuple.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/tester.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/bindings/ruby/tests/tester.rb -------------------------------------------------------------------------------- /cmake/AddFdbTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/AddFdbTest.cmake -------------------------------------------------------------------------------- /cmake/AssertFileDoesntExist.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/AssertFileDoesntExist.cmake -------------------------------------------------------------------------------- /cmake/CPackConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/CPackConfig.cmake -------------------------------------------------------------------------------- /cmake/CheckForPthreads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/CheckForPthreads.c -------------------------------------------------------------------------------- /cmake/CompileActorCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/CompileActorCompiler.cmake -------------------------------------------------------------------------------- /cmake/CompileBoost.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/CompileBoost.cmake -------------------------------------------------------------------------------- /cmake/CompileCoverageTool.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/CompileCoverageTool.cmake -------------------------------------------------------------------------------- /cmake/CompileRocksDB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/CompileRocksDB.cmake -------------------------------------------------------------------------------- /cmake/CompileVexillographer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/CompileVexillographer.cmake -------------------------------------------------------------------------------- /cmake/CompileZstd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/CompileZstd.cmake -------------------------------------------------------------------------------- /cmake/CompilerChecks.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/CompilerChecks.cmake -------------------------------------------------------------------------------- /cmake/Config.cmake.in: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/@targets_export_name@.cmake") 2 | -------------------------------------------------------------------------------- /cmake/ConfigureCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/ConfigureCompiler.cmake -------------------------------------------------------------------------------- /cmake/DotnetImports.props.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/DotnetImports.props.in -------------------------------------------------------------------------------- /cmake/EnableCsharp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/EnableCsharp.cmake -------------------------------------------------------------------------------- /cmake/FDBComponents.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/FDBComponents.cmake -------------------------------------------------------------------------------- /cmake/FDBInstall.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/FDBInstall.cmake -------------------------------------------------------------------------------- /cmake/FindCoroutines.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/FindCoroutines.cmake -------------------------------------------------------------------------------- /cmake/FindGperftools.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/FindGperftools.cmake -------------------------------------------------------------------------------- /cmake/FindJinja2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/FindJinja2.cmake -------------------------------------------------------------------------------- /cmake/FindLZ4.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/FindLZ4.cmake -------------------------------------------------------------------------------- /cmake/FindRocksDB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/FindRocksDB.cmake -------------------------------------------------------------------------------- /cmake/FindSphinx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/FindSphinx.cmake -------------------------------------------------------------------------------- /cmake/FindSwiftLibs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/FindSwiftLibs.cmake -------------------------------------------------------------------------------- /cmake/FindThreads.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/FindThreads.cmake -------------------------------------------------------------------------------- /cmake/FindWIX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/FindWIX.cmake -------------------------------------------------------------------------------- /cmake/Finddotnet.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/Finddotnet.cmake -------------------------------------------------------------------------------- /cmake/Findjemalloc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/Findjemalloc.cmake -------------------------------------------------------------------------------- /cmake/Findmono.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/Findmono.cmake -------------------------------------------------------------------------------- /cmake/Findsccache.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/Findsccache.cmake -------------------------------------------------------------------------------- /cmake/Findtoml11.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/Findtoml11.cmake -------------------------------------------------------------------------------- /cmake/Finduring.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/Finduring.cmake -------------------------------------------------------------------------------- /cmake/Findvalgrind.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/Findvalgrind.cmake -------------------------------------------------------------------------------- /cmake/FlowCommands.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/FlowCommands.cmake -------------------------------------------------------------------------------- /cmake/GenerateModulemap.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/GenerateModulemap.cmake -------------------------------------------------------------------------------- /cmake/GetFmt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/GetFmt.cmake -------------------------------------------------------------------------------- /cmake/GetMsgpack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/GetMsgpack.cmake -------------------------------------------------------------------------------- /cmake/InstallLayout.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/InstallLayout.cmake -------------------------------------------------------------------------------- /cmake/Jemalloc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/Jemalloc.cmake -------------------------------------------------------------------------------- /cmake/Sandbox.conf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/Sandbox.conf.cmake -------------------------------------------------------------------------------- /cmake/SwiftToCXXInterop.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/SwiftToCXXInterop.cmake -------------------------------------------------------------------------------- /cmake/awssdk.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/awssdk.cmake -------------------------------------------------------------------------------- /cmake/foundationdb-client.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/foundationdb-client.pc.in -------------------------------------------------------------------------------- /cmake/user-config.jam.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/user-config.jam.cmake -------------------------------------------------------------------------------- /cmake/utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/cmake/utils.cmake -------------------------------------------------------------------------------- /contrib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/Implib.so/.gitattributes: -------------------------------------------------------------------------------- 1 | arch/*/*.tpl linguist-vendored 2 | -------------------------------------------------------------------------------- /contrib/Implib.so/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/Implib.so/.gitignore -------------------------------------------------------------------------------- /contrib/Implib.so/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/Implib.so/.pylintrc -------------------------------------------------------------------------------- /contrib/Implib.so/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/Implib.so/LICENSE.txt -------------------------------------------------------------------------------- /contrib/Implib.so/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/Implib.so/README.md -------------------------------------------------------------------------------- /contrib/Implib.so/arch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/Implib.so/arch/README.md -------------------------------------------------------------------------------- /contrib/Implib.so/arch/aarch64/config.ini: -------------------------------------------------------------------------------- 1 | [Arch] 2 | PointerSize = 8 3 | SymbolReloc = R_AARCH64_ABS64 4 | -------------------------------------------------------------------------------- /contrib/Implib.so/implib-gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/Implib.so/implib-gen.py -------------------------------------------------------------------------------- /contrib/Joshua/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/Joshua/README.md -------------------------------------------------------------------------------- /contrib/Joshua/scripts/correctnessTimeout.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash -u 2 | 3 | 4 | python3 -m test_harness.timeout 5 | -------------------------------------------------------------------------------- /contrib/Joshua/scripts/valgrindTimeout.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash -u 2 | python3 -m test_harness.timeout --use-valgrind 3 | -------------------------------------------------------------------------------- /contrib/SimpleOpt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/SimpleOpt/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/TestHarness2/.gitignore: -------------------------------------------------------------------------------- 1 | /tmp/ 2 | /venv 3 | -------------------------------------------------------------------------------- /contrib/TestHarness2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/TestHarness2/README.md -------------------------------------------------------------------------------- /contrib/TraceLogHelper/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/TraceLogHelper/Event.cs -------------------------------------------------------------------------------- /contrib/alloc_instrumentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/alloc_instrumentation.py -------------------------------------------------------------------------------- /contrib/apiversioner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/apiversioner.py -------------------------------------------------------------------------------- /contrib/boost_zstd/zstd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/boost_zstd/zstd.cpp -------------------------------------------------------------------------------- /contrib/branch_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/branch_diff.py -------------------------------------------------------------------------------- /contrib/commit_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/commit_debug.py -------------------------------------------------------------------------------- /contrib/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/convert.py -------------------------------------------------------------------------------- /contrib/crc32/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/crc32/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/crc32/crc32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/crc32/crc32.S -------------------------------------------------------------------------------- /contrib/crc32/crc32_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/crc32/crc32_wrapper.c -------------------------------------------------------------------------------- /contrib/crc32/crc32c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/crc32/crc32c.cpp -------------------------------------------------------------------------------- /contrib/ctest_to_joshua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/ctest_to_joshua.py -------------------------------------------------------------------------------- /contrib/ddsketch_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/ddsketch_calc.py -------------------------------------------------------------------------------- /contrib/ddsketch_compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/ddsketch_compare.py -------------------------------------------------------------------------------- /contrib/ddsketch_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/ddsketch_conversion.py -------------------------------------------------------------------------------- /contrib/export_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/export_graph.py -------------------------------------------------------------------------------- /contrib/fdbcstat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/fdbcstat/README.md -------------------------------------------------------------------------------- /contrib/fdbcstat/fdbcstat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/fdbcstat/fdbcstat -------------------------------------------------------------------------------- /contrib/gen_compile_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/gen_compile_db.py -------------------------------------------------------------------------------- /contrib/generate_profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/generate_profile.sh -------------------------------------------------------------------------------- /contrib/grv_proxy_model/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/grv_proxy_model/plot.py -------------------------------------------------------------------------------- /contrib/joshua_logtool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/joshua_logtool.py -------------------------------------------------------------------------------- /contrib/joshua_stats/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/joshua_stats/readme.md -------------------------------------------------------------------------------- /contrib/joshua_stats/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/joshua_stats/stats.py -------------------------------------------------------------------------------- /contrib/libb64/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/libb64/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/libb64/cdecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/libb64/cdecode.c -------------------------------------------------------------------------------- /contrib/libb64/cencode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/libb64/cencode.c -------------------------------------------------------------------------------- /contrib/linenoise/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/linenoise/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/linenoise/linenoise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/linenoise/linenoise.c -------------------------------------------------------------------------------- /contrib/lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/lint.py -------------------------------------------------------------------------------- /contrib/local_cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/local_cluster/README.md -------------------------------------------------------------------------------- /contrib/lsan.suppressions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/lsan.suppressions -------------------------------------------------------------------------------- /contrib/md5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/md5/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/md5/include/md5/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/md5/include/md5/md5.h -------------------------------------------------------------------------------- /contrib/md5/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/md5/md5.c -------------------------------------------------------------------------------- /contrib/mockkms/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/mockkms/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/mockkms/fault_injection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/mockkms/fault_injection.go -------------------------------------------------------------------------------- /contrib/mockkms/mock_kms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/mockkms/mock_kms.go -------------------------------------------------------------------------------- /contrib/mockkms/mockkms_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/mockkms/mockkms_test.go -------------------------------------------------------------------------------- /contrib/mockkms/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/mockkms/utils.go -------------------------------------------------------------------------------- /contrib/monitoring/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/monitoring/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/mtlsbenchmark/client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/mtlsbenchmark/client.sh -------------------------------------------------------------------------------- /contrib/mtlsbenchmark/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/mtlsbenchmark/readme.md -------------------------------------------------------------------------------- /contrib/mtlsbenchmark/server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/mtlsbenchmark/server.sh -------------------------------------------------------------------------------- /contrib/pkg_tester/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/pkg_tester/README.md -------------------------------------------------------------------------------- /contrib/prx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/prx.py -------------------------------------------------------------------------------- /contrib/rapidjson/rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/rapidjson/rapidjson/fwd.h -------------------------------------------------------------------------------- /contrib/rapidxml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/rapidxml/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/rapidxml/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/rapidxml/license.txt -------------------------------------------------------------------------------- /contrib/rapidxml/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/rapidxml/manual.html -------------------------------------------------------------------------------- /contrib/serialize-check/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/serialize-check/README.md -------------------------------------------------------------------------------- /contrib/sqlite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/sqlite/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/sqlite/btree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/sqlite/btree.c -------------------------------------------------------------------------------- /contrib/sqlite/btree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/sqlite/btree.h -------------------------------------------------------------------------------- /contrib/sqlite/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/sqlite/hash.h -------------------------------------------------------------------------------- /contrib/sqlite/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/sqlite/shell.c -------------------------------------------------------------------------------- /contrib/sqlite/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/sqlite/sqlite3.h -------------------------------------------------------------------------------- /contrib/sqlite/sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/sqlite/sqlite3ext.h -------------------------------------------------------------------------------- /contrib/sqlite/sqliteInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/sqlite/sqliteInt.h -------------------------------------------------------------------------------- /contrib/sqlite/sqliteLimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/sqlite/sqliteLimit.h -------------------------------------------------------------------------------- /contrib/stacktrace/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/stacktrace/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/tsan.suppressions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/contrib/tsan.suppressions -------------------------------------------------------------------------------- /design/AcAC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/AcAC.md -------------------------------------------------------------------------------- /design/Commit/Commit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/Commit/Commit.svg -------------------------------------------------------------------------------- /design/Commit/CommitOverall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/Commit/CommitOverall.svg -------------------------------------------------------------------------------- /design/Commit/GRV.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/Commit/GRV.svg -------------------------------------------------------------------------------- /design/Commit/Get.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/Commit/Get.svg -------------------------------------------------------------------------------- /design/Commit/GetRange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/Commit/GetRange.svg -------------------------------------------------------------------------------- /design/Commit/GetRangeFallback.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/Commit/GetRangeFallback.svg -------------------------------------------------------------------------------- /design/Commit/commit.sequence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/Commit/commit.sequence -------------------------------------------------------------------------------- /design/Commit/get.sequence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/Commit/get.sequence -------------------------------------------------------------------------------- /design/Commit/getrange.sequence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/Commit/getrange.sequence -------------------------------------------------------------------------------- /design/Commit/grv.sequence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/Commit/grv.sequence -------------------------------------------------------------------------------- /design/backup-dataFormat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/backup-dataFormat.md -------------------------------------------------------------------------------- /design/backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/backup.md -------------------------------------------------------------------------------- /design/coroutines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/coroutines.md -------------------------------------------------------------------------------- /design/dynamic-knobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/dynamic-knobs.md -------------------------------------------------------------------------------- /design/encryption-data-at-rest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/encryption-data-at-rest.md -------------------------------------------------------------------------------- /design/feature-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/feature-status.md -------------------------------------------------------------------------------- /design/flow_transport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/flow_transport.md -------------------------------------------------------------------------------- /design/global-tag-throttling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/global-tag-throttling.md -------------------------------------------------------------------------------- /design/hotshard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/hotshard.md -------------------------------------------------------------------------------- /design/idempotency_ids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/idempotency_ids.md -------------------------------------------------------------------------------- /design/metadata-version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/metadata-version.md -------------------------------------------------------------------------------- /design/recovery-internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/recovery-internals.md -------------------------------------------------------------------------------- /design/replication-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/replication-policy.md -------------------------------------------------------------------------------- /design/restore_v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/restore_v1.md -------------------------------------------------------------------------------- /design/s3-checksumming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/s3-checksumming.md -------------------------------------------------------------------------------- /design/special-key-space.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/special-key-space.md -------------------------------------------------------------------------------- /design/storage-quota-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/storage-quota-diagram.svg -------------------------------------------------------------------------------- /design/storage-quota.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/storage-quota.md -------------------------------------------------------------------------------- /design/tlog-spilling.md.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/tlog-spilling.md.html -------------------------------------------------------------------------------- /design/transaction-state-store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/transaction-state-store.md -------------------------------------------------------------------------------- /design/tuple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/design/tuple.md -------------------------------------------------------------------------------- /documentation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/documentation/CMakeLists.txt -------------------------------------------------------------------------------- /documentation/FDB.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/documentation/FDB.pdf -------------------------------------------------------------------------------- /documentation/FDB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/documentation/FDB.svg -------------------------------------------------------------------------------- /documentation/FDB_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/documentation/FDB_logo.png -------------------------------------------------------------------------------- /documentation/FDB_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/documentation/FDB_logo.svg -------------------------------------------------------------------------------- /documentation/sphinx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/documentation/sphinx/.gitignore -------------------------------------------------------------------------------- /documentation/sphinx/.pip.conf: -------------------------------------------------------------------------------- 1 | [global] 2 | timeout = 60 3 | index-url = https://pypi.python.org/simple 4 | -------------------------------------------------------------------------------- /documentation/sphinx/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/documentation/sphinx/conf.py -------------------------------------------------------------------------------- /fdb.cluster.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdb.cluster.cmake -------------------------------------------------------------------------------- /fdbbackup/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbbackup/CMakeLists.txt -------------------------------------------------------------------------------- /fdbbackup/Decode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbbackup/Decode.cpp -------------------------------------------------------------------------------- /fdbbackup/FileConverter.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbbackup/FileConverter.actor.cpp -------------------------------------------------------------------------------- /fdbbackup/FileDecoder.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbbackup/FileDecoder.actor.cpp -------------------------------------------------------------------------------- /fdbbackup/backup.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbbackup/backup.actor.cpp -------------------------------------------------------------------------------- /fdbbackup/tests/dir_backup_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbbackup/tests/dir_backup_test.sh -------------------------------------------------------------------------------- /fdbbackup/tests/s3_backup_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbbackup/tests/s3_backup_test.sh -------------------------------------------------------------------------------- /fdbcli/BulkDumpCommand.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbcli/BulkDumpCommand.actor.cpp -------------------------------------------------------------------------------- /fdbcli/BulkLoadCommand.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbcli/BulkLoadCommand.actor.cpp -------------------------------------------------------------------------------- /fdbcli/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbcli/CMakeLists.txt -------------------------------------------------------------------------------- /fdbcli/ConfigureCommand.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbcli/ConfigureCommand.actor.cpp -------------------------------------------------------------------------------- /fdbcli/DebugCommands.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbcli/DebugCommands.actor.cpp -------------------------------------------------------------------------------- /fdbcli/ExcludeCommand.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbcli/ExcludeCommand.actor.cpp -------------------------------------------------------------------------------- /fdbcli/FlowLineNoise.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbcli/FlowLineNoise.actor.cpp -------------------------------------------------------------------------------- /fdbcli/HotRangeCommand.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbcli/HotRangeCommand.actor.cpp -------------------------------------------------------------------------------- /fdbcli/IncludeCommand.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbcli/IncludeCommand.actor.cpp -------------------------------------------------------------------------------- /fdbcli/KillCommand.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbcli/KillCommand.actor.cpp -------------------------------------------------------------------------------- /fdbcli/LockCommand.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbcli/LockCommand.actor.cpp -------------------------------------------------------------------------------- /fdbcli/ProfileCommand.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbcli/ProfileCommand.actor.cpp -------------------------------------------------------------------------------- /fdbcli/QuotaCommand.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbcli/QuotaCommand.actor.cpp -------------------------------------------------------------------------------- /fdbcli/SetClassCommand.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbcli/SetClassCommand.actor.cpp -------------------------------------------------------------------------------- /fdbcli/SnapshotCommand.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbcli/SnapshotCommand.actor.cpp -------------------------------------------------------------------------------- /fdbcli/StatusCommand.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbcli/StatusCommand.actor.cpp -------------------------------------------------------------------------------- /fdbcli/SuspendCommand.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbcli/SuspendCommand.actor.cpp -------------------------------------------------------------------------------- /fdbcli/TenantCommands.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbcli/TenantCommands.actor.cpp -------------------------------------------------------------------------------- /fdbcli/ThrottleCommand.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbcli/ThrottleCommand.actor.cpp -------------------------------------------------------------------------------- /fdbcli/TssqCommand.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbcli/TssqCommand.actor.cpp -------------------------------------------------------------------------------- /fdbcli/Util.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbcli/Util.actor.cpp -------------------------------------------------------------------------------- /fdbcli/fdbcli.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbcli/fdbcli.actor.cpp -------------------------------------------------------------------------------- /fdbcli/tests/fdbcli_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbcli/tests/fdbcli_tests.py -------------------------------------------------------------------------------- /fdbclient/ActorLineageProfiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/ActorLineageProfiler.cpp -------------------------------------------------------------------------------- /fdbclient/AnnotateActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/AnnotateActor.cpp -------------------------------------------------------------------------------- /fdbclient/Atomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/Atomic.cpp -------------------------------------------------------------------------------- /fdbclient/AuditUtils.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/AuditUtils.actor.cpp -------------------------------------------------------------------------------- /fdbclient/BackupTLSConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/BackupTLSConfig.cpp -------------------------------------------------------------------------------- /fdbclient/BlobCipher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/BlobCipher.cpp -------------------------------------------------------------------------------- /fdbclient/BlobMetadataUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/BlobMetadataUtils.cpp -------------------------------------------------------------------------------- /fdbclient/BuildFlags.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/BuildFlags.h.in -------------------------------------------------------------------------------- /fdbclient/BulkDumping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/BulkDumping.cpp -------------------------------------------------------------------------------- /fdbclient/BulkLoading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/BulkLoading.cpp -------------------------------------------------------------------------------- /fdbclient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/CMakeLists.txt -------------------------------------------------------------------------------- /fdbclient/ClientKnobCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/ClientKnobCollection.cpp -------------------------------------------------------------------------------- /fdbclient/ClientKnobs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/ClientKnobs.cpp -------------------------------------------------------------------------------- /fdbclient/ClientStatusReport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/ClientStatusReport.cpp -------------------------------------------------------------------------------- /fdbclient/CommitProxyInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/CommitProxyInterface.cpp -------------------------------------------------------------------------------- /fdbclient/ConfigKnobs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/ConfigKnobs.cpp -------------------------------------------------------------------------------- /fdbclient/FDBTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/FDBTypes.cpp -------------------------------------------------------------------------------- /fdbclient/GlobalConfig.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/GlobalConfig.actor.cpp -------------------------------------------------------------------------------- /fdbclient/IConfigTransaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/IConfigTransaction.cpp -------------------------------------------------------------------------------- /fdbclient/IKnobCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/IKnobCollection.cpp -------------------------------------------------------------------------------- /fdbclient/IdempotencyId.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/IdempotencyId.actor.cpp -------------------------------------------------------------------------------- /fdbclient/JsonBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/JsonBuilder.cpp -------------------------------------------------------------------------------- /fdbclient/KeyRangeMap.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/KeyRangeMap.actor.cpp -------------------------------------------------------------------------------- /fdbclient/LinkTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/LinkTest.cpp -------------------------------------------------------------------------------- /fdbclient/LocalClientAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/LocalClientAPI.cpp -------------------------------------------------------------------------------- /fdbclient/ManagementAPI.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/ManagementAPI.actor.cpp -------------------------------------------------------------------------------- /fdbclient/MonitorLeader.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/MonitorLeader.actor.cpp -------------------------------------------------------------------------------- /fdbclient/NameLineage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/NameLineage.cpp -------------------------------------------------------------------------------- /fdbclient/NativeAPI.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/NativeAPI.actor.cpp -------------------------------------------------------------------------------- /fdbclient/ParallelStream.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/ParallelStream.actor.cpp -------------------------------------------------------------------------------- /fdbclient/Printable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/Printable.cpp -------------------------------------------------------------------------------- /fdbclient/RESTClient.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/RESTClient.actor.cpp -------------------------------------------------------------------------------- /fdbclient/RESTUtils.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/RESTUtils.actor.cpp -------------------------------------------------------------------------------- /fdbclient/RYWIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/RYWIterator.cpp -------------------------------------------------------------------------------- /fdbclient/RandomKeyValueUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/RandomKeyValueUtils.cpp -------------------------------------------------------------------------------- /fdbclient/ReadYourWrites.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/ReadYourWrites.actor.cpp -------------------------------------------------------------------------------- /fdbclient/RestoreInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/RestoreInterface.cpp -------------------------------------------------------------------------------- /fdbclient/S3BlobStore.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/S3BlobStore.actor.cpp -------------------------------------------------------------------------------- /fdbclient/S3Client.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/S3Client.actor.cpp -------------------------------------------------------------------------------- /fdbclient/S3Client_cli.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/S3Client_cli.actor.cpp -------------------------------------------------------------------------------- /fdbclient/Schemas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/Schemas.cpp -------------------------------------------------------------------------------- /fdbclient/ServerKnobCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/ServerKnobCollection.cpp -------------------------------------------------------------------------------- /fdbclient/ServerKnobs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/ServerKnobs.cpp -------------------------------------------------------------------------------- /fdbclient/StackLineage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/StackLineage.cpp -------------------------------------------------------------------------------- /fdbclient/StatusClient.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/StatusClient.actor.cpp -------------------------------------------------------------------------------- /fdbclient/StorageCheckpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/StorageCheckpoint.cpp -------------------------------------------------------------------------------- /fdbclient/Subspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/Subspace.cpp -------------------------------------------------------------------------------- /fdbclient/SystemData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/SystemData.cpp -------------------------------------------------------------------------------- /fdbclient/TagThrottle.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/TagThrottle.actor.cpp -------------------------------------------------------------------------------- /fdbclient/TaskBucket.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/TaskBucket.actor.cpp -------------------------------------------------------------------------------- /fdbclient/Tenant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/Tenant.cpp -------------------------------------------------------------------------------- /fdbclient/TestKnobCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/TestKnobCollection.cpp -------------------------------------------------------------------------------- /fdbclient/Tracing.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/Tracing.actor.cpp -------------------------------------------------------------------------------- /fdbclient/TransactionLineage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/TransactionLineage.cpp -------------------------------------------------------------------------------- /fdbclient/Tuple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/Tuple.cpp -------------------------------------------------------------------------------- /fdbclient/TupleVersionstamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/TupleVersionstamp.cpp -------------------------------------------------------------------------------- /fdbclient/VersionVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/VersionVector.cpp -------------------------------------------------------------------------------- /fdbclient/VersionedMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/VersionedMap.cpp -------------------------------------------------------------------------------- /fdbclient/WriteMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/WriteMap.cpp -------------------------------------------------------------------------------- /fdbclient/azure_backup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/azure_backup/README.md -------------------------------------------------------------------------------- /fdbclient/azurestorage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/azurestorage.cmake -------------------------------------------------------------------------------- /fdbclient/include/fdbclient/zipf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/include/fdbclient/zipf.h -------------------------------------------------------------------------------- /fdbclient/notified_support.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/notified_support.swift -------------------------------------------------------------------------------- /fdbclient/sha1/SHA1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/sha1/SHA1.cpp -------------------------------------------------------------------------------- /fdbclient/tests/aws_fixture.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/tests/aws_fixture.sh -------------------------------------------------------------------------------- /fdbclient/tests/bulkload_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/tests/bulkload_test.sh -------------------------------------------------------------------------------- /fdbclient/tests/mocks3_fixture.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/tests/mocks3_fixture.sh -------------------------------------------------------------------------------- /fdbclient/tests/s3client_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/tests/s3client_test.sh -------------------------------------------------------------------------------- /fdbclient/tests/tests_common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/tests/tests_common.sh -------------------------------------------------------------------------------- /fdbclient/versions.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/versions.h.cmake -------------------------------------------------------------------------------- /fdbclient/vexillographer/c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/vexillographer/c.cs -------------------------------------------------------------------------------- /fdbclient/vexillographer/cpp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/vexillographer/cpp.cs -------------------------------------------------------------------------------- /fdbclient/vexillographer/java.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/vexillographer/java.cs -------------------------------------------------------------------------------- /fdbclient/vexillographer/ruby.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/vexillographer/ruby.cs -------------------------------------------------------------------------------- /fdbclient/zipf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbclient/zipf.c -------------------------------------------------------------------------------- /fdbctl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbctl/CMakeLists.txt -------------------------------------------------------------------------------- /fdbctl/ControlCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbctl/ControlCommands.cpp -------------------------------------------------------------------------------- /fdbctl/ControlService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbctl/ControlService.cpp -------------------------------------------------------------------------------- /fdbkubernetesmonitor/.gitignore: -------------------------------------------------------------------------------- 1 | fdbkubernetesmonitor 2 | cover.out 3 | -------------------------------------------------------------------------------- /fdbkubernetesmonitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbkubernetesmonitor/README.md -------------------------------------------------------------------------------- /fdbkubernetesmonitor/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbkubernetesmonitor/copy.go -------------------------------------------------------------------------------- /fdbkubernetesmonitor/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbkubernetesmonitor/go.mod -------------------------------------------------------------------------------- /fdbkubernetesmonitor/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbkubernetesmonitor/go.sum -------------------------------------------------------------------------------- /fdbkubernetesmonitor/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbkubernetesmonitor/main.go -------------------------------------------------------------------------------- /fdbkubernetesmonitor/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbkubernetesmonitor/metrics.go -------------------------------------------------------------------------------- /fdbkubernetesmonitor/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbkubernetesmonitor/monitor.go -------------------------------------------------------------------------------- /fdbmonitor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbmonitor/CMakeLists.txt -------------------------------------------------------------------------------- /fdbmonitor/fdbmonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbmonitor/fdbmonitor.cpp -------------------------------------------------------------------------------- /fdbmonitor/fdbmonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbmonitor/fdbmonitor.h -------------------------------------------------------------------------------- /fdbmonitor/fdbmonitor_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbmonitor/fdbmonitor_lib.cpp -------------------------------------------------------------------------------- /fdbmonitor/fdbmonitor_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbmonitor/fdbmonitor_tests.cpp -------------------------------------------------------------------------------- /fdbrpc/ActorFuzz.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/ActorFuzz.actor.cpp -------------------------------------------------------------------------------- /fdbrpc/ActorFuzzUnitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/ActorFuzzUnitTest.cpp -------------------------------------------------------------------------------- /fdbrpc/AsyncFileCached.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/AsyncFileCached.actor.cpp -------------------------------------------------------------------------------- /fdbrpc/AsyncFileWriteChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/AsyncFileWriteChecker.cpp -------------------------------------------------------------------------------- /fdbrpc/Base64Decode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/Base64Decode.cpp -------------------------------------------------------------------------------- /fdbrpc/Base64Encode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/Base64Encode.cpp -------------------------------------------------------------------------------- /fdbrpc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/CMakeLists.txt -------------------------------------------------------------------------------- /fdbrpc/CoroTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/CoroTests.cpp -------------------------------------------------------------------------------- /fdbrpc/DDSketchTest.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/DDSketchTest.actor.cpp -------------------------------------------------------------------------------- /fdbrpc/FailureMonitor.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/FailureMonitor.actor.cpp -------------------------------------------------------------------------------- /fdbrpc/FileTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/FileTransfer.cpp -------------------------------------------------------------------------------- /fdbrpc/FlowGrpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/FlowGrpc.cpp -------------------------------------------------------------------------------- /fdbrpc/FlowGrpcTests.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/FlowGrpcTests.actor.cpp -------------------------------------------------------------------------------- /fdbrpc/FlowGrpcTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/FlowGrpcTests.cpp -------------------------------------------------------------------------------- /fdbrpc/FlowTests.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/FlowTests.actor.cpp -------------------------------------------------------------------------------- /fdbrpc/FlowTransport.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/FlowTransport.actor.cpp -------------------------------------------------------------------------------- /fdbrpc/HTTP.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/HTTP.actor.cpp -------------------------------------------------------------------------------- /fdbrpc/HTTPServer.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/HTTPServer.actor.cpp -------------------------------------------------------------------------------- /fdbrpc/HealthMonitor.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/HealthMonitor.actor.cpp -------------------------------------------------------------------------------- /fdbrpc/IPAllowList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/IPAllowList.cpp -------------------------------------------------------------------------------- /fdbrpc/JsonWebKeySet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/JsonWebKeySet.cpp -------------------------------------------------------------------------------- /fdbrpc/LinkTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/LinkTest.cpp -------------------------------------------------------------------------------- /fdbrpc/LoadBalance.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/LoadBalance.actor.cpp -------------------------------------------------------------------------------- /fdbrpc/Locality.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/Locality.cpp -------------------------------------------------------------------------------- /fdbrpc/Net2FileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/Net2FileSystem.cpp -------------------------------------------------------------------------------- /fdbrpc/QueueModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/QueueModel.cpp -------------------------------------------------------------------------------- /fdbrpc/Replication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/Replication.cpp -------------------------------------------------------------------------------- /fdbrpc/ReplicationPolicy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/ReplicationPolicy.cpp -------------------------------------------------------------------------------- /fdbrpc/ReplicationTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/ReplicationTypes.cpp -------------------------------------------------------------------------------- /fdbrpc/ReplicationUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/ReplicationUtils.cpp -------------------------------------------------------------------------------- /fdbrpc/Stats.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/Stats.actor.cpp -------------------------------------------------------------------------------- /fdbrpc/TokenCache.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/TokenCache.actor.cpp -------------------------------------------------------------------------------- /fdbrpc/TokenSign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/TokenSign.cpp -------------------------------------------------------------------------------- /fdbrpc/TraceFileIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/TraceFileIO.cpp -------------------------------------------------------------------------------- /fdbrpc/actorFuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/actorFuzz.py -------------------------------------------------------------------------------- /fdbrpc/dsltest.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/dsltest.actor.cpp -------------------------------------------------------------------------------- /fdbrpc/include/fdbrpc/DDSketch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/include/fdbrpc/DDSketch.h -------------------------------------------------------------------------------- /fdbrpc/include/fdbrpc/FlowGrpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/include/fdbrpc/FlowGrpc.h -------------------------------------------------------------------------------- /fdbrpc/include/fdbrpc/HTTP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/include/fdbrpc/HTTP.h -------------------------------------------------------------------------------- /fdbrpc/include/fdbrpc/Locality.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/include/fdbrpc/Locality.h -------------------------------------------------------------------------------- /fdbrpc/include/fdbrpc/RangeMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/include/fdbrpc/RangeMap.h -------------------------------------------------------------------------------- /fdbrpc/include/fdbrpc/Smoother.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/include/fdbrpc/Smoother.h -------------------------------------------------------------------------------- /fdbrpc/include/fdbrpc/Stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/include/fdbrpc/Stats.h -------------------------------------------------------------------------------- /fdbrpc/include/fdbrpc/fdbrpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/include/fdbrpc/fdbrpc.h -------------------------------------------------------------------------------- /fdbrpc/libcoroutine/Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/libcoroutine/Base.h -------------------------------------------------------------------------------- /fdbrpc/libcoroutine/Common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/libcoroutine/Common.c -------------------------------------------------------------------------------- /fdbrpc/libcoroutine/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/libcoroutine/Common.h -------------------------------------------------------------------------------- /fdbrpc/libcoroutine/Coro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/libcoroutine/Coro.c -------------------------------------------------------------------------------- /fdbrpc/libcoroutine/Coro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/libcoroutine/Coro.h -------------------------------------------------------------------------------- /fdbrpc/libcoroutine/asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/libcoroutine/asm.S -------------------------------------------------------------------------------- /fdbrpc/libcoroutine/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/libcoroutine/context.c -------------------------------------------------------------------------------- /fdbrpc/libcoroutine/taskimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/libcoroutine/taskimpl.h -------------------------------------------------------------------------------- /fdbrpc/libeio/config.h.FreeBSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/libeio/config.h.FreeBSD -------------------------------------------------------------------------------- /fdbrpc/libeio/config.h.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/libeio/config.h.linux -------------------------------------------------------------------------------- /fdbrpc/libeio/config.h.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/libeio/config.h.osx -------------------------------------------------------------------------------- /fdbrpc/libeio/ecb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/libeio/ecb.h -------------------------------------------------------------------------------- /fdbrpc/libeio/eio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/libeio/eio.c -------------------------------------------------------------------------------- /fdbrpc/libeio/eio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/libeio/eio.h -------------------------------------------------------------------------------- /fdbrpc/libeio/xthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/libeio/xthread.h -------------------------------------------------------------------------------- /fdbrpc/sim2.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/sim2.actor.cpp -------------------------------------------------------------------------------- /fdbrpc/sim_validation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/sim_validation.cpp -------------------------------------------------------------------------------- /fdbrpc/swift_sim2_hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/swift_sim2_hooks.cpp -------------------------------------------------------------------------------- /fdbrpc/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/tests/CMakeLists.txt -------------------------------------------------------------------------------- /fdbrpc/tests/protos/echo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbrpc/tests/protos/echo.proto -------------------------------------------------------------------------------- /fdbserver/BackupWorker.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/BackupWorker.actor.cpp -------------------------------------------------------------------------------- /fdbserver/BulkDumpUtil.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/BulkDumpUtil.actor.cpp -------------------------------------------------------------------------------- /fdbserver/BulkLoadUtil.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/BulkLoadUtil.actor.cpp -------------------------------------------------------------------------------- /fdbserver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/CMakeLists.txt -------------------------------------------------------------------------------- /fdbserver/ConfigNode.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/ConfigNode.actor.cpp -------------------------------------------------------------------------------- /fdbserver/Coordination.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/Coordination.actor.cpp -------------------------------------------------------------------------------- /fdbserver/DiskQueue.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/DiskQueue.actor.cpp -------------------------------------------------------------------------------- /fdbserver/IConfigConsumer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/IConfigConsumer.cpp -------------------------------------------------------------------------------- /fdbserver/IKeyValueStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/IKeyValueStore.cpp -------------------------------------------------------------------------------- /fdbserver/IPager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/IPager.cpp -------------------------------------------------------------------------------- /fdbserver/LatencyBandConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/LatencyBandConfig.cpp -------------------------------------------------------------------------------- /fdbserver/LogRouter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/LogRouter.cpp -------------------------------------------------------------------------------- /fdbserver/LogSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/LogSystem.cpp -------------------------------------------------------------------------------- /fdbserver/LogSystemConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/LogSystemConfig.cpp -------------------------------------------------------------------------------- /fdbserver/MetricClient.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/MetricClient.actor.cpp -------------------------------------------------------------------------------- /fdbserver/MetricLogger.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/MetricLogger.actor.cpp -------------------------------------------------------------------------------- /fdbserver/MockS3Server.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/MockS3Server.actor.cpp -------------------------------------------------------------------------------- /fdbserver/MoveKeys.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/MoveKeys.actor.cpp -------------------------------------------------------------------------------- /fdbserver/MutationTracking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/MutationTracking.cpp -------------------------------------------------------------------------------- /fdbserver/Ratekeeper.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/Ratekeeper.actor.cpp -------------------------------------------------------------------------------- /fdbserver/Resolver.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/Resolver.actor.cpp -------------------------------------------------------------------------------- /fdbserver/ResolverBug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/ResolverBug.cpp -------------------------------------------------------------------------------- /fdbserver/RestoreUtil.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/RestoreUtil.actor.cpp -------------------------------------------------------------------------------- /fdbserver/RoleLineage.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/RoleLineage.actor.cpp -------------------------------------------------------------------------------- /fdbserver/SigStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/SigStack.cpp -------------------------------------------------------------------------------- /fdbserver/SkipList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/SkipList.cpp -------------------------------------------------------------------------------- /fdbserver/Status.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/Status.actor.cpp -------------------------------------------------------------------------------- /fdbserver/StorageServerUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/StorageServerUtils.cpp -------------------------------------------------------------------------------- /fdbserver/TCInfo.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/TCInfo.actor.cpp -------------------------------------------------------------------------------- /fdbserver/TLogServer.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/TLogServer.actor.cpp -------------------------------------------------------------------------------- /fdbserver/TagThrottler.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/TagThrottler.actor.cpp -------------------------------------------------------------------------------- /fdbserver/TenantCache.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/TenantCache.actor.cpp -------------------------------------------------------------------------------- /fdbserver/UID.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/UID.swift -------------------------------------------------------------------------------- /fdbserver/VFSAsync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/VFSAsync.cpp -------------------------------------------------------------------------------- /fdbserver/WaitFailure.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/WaitFailure.actor.cpp -------------------------------------------------------------------------------- /fdbserver/fdbserver.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/fdbserver.actor.cpp -------------------------------------------------------------------------------- /fdbserver/masterserver.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/masterserver.actor.cpp -------------------------------------------------------------------------------- /fdbserver/masterserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/masterserver.swift -------------------------------------------------------------------------------- /fdbserver/networktest.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/networktest.actor.cpp -------------------------------------------------------------------------------- /fdbserver/pubsub.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/pubsub.actor.cpp -------------------------------------------------------------------------------- /fdbserver/tester.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/tester.actor.cpp -------------------------------------------------------------------------------- /fdbserver/worker.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbserver/worker.actor.cpp -------------------------------------------------------------------------------- /fdbservice/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbservice/CMakeLists.txt -------------------------------------------------------------------------------- /fdbservice/FDBService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbservice/FDBService.cpp -------------------------------------------------------------------------------- /fdbservice/ServiceBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbservice/ServiceBase.cpp -------------------------------------------------------------------------------- /fdbservice/ServiceBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbservice/ServiceBase.h -------------------------------------------------------------------------------- /fdbservice/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/fdbservice/ThreadPool.h -------------------------------------------------------------------------------- /flow/ActorCollection.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/ActorCollection.actor.cpp -------------------------------------------------------------------------------- /flow/ActorContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/ActorContext.cpp -------------------------------------------------------------------------------- /flow/ApiVersion.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/ApiVersion.h.cmake -------------------------------------------------------------------------------- /flow/ApiVersions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/ApiVersions.cmake -------------------------------------------------------------------------------- /flow/Arena.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/Arena.cpp -------------------------------------------------------------------------------- /flow/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/CMakeLists.txt -------------------------------------------------------------------------------- /flow/CodeProbe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/CodeProbe.cpp -------------------------------------------------------------------------------- /flow/CompressedInt.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/CompressedInt.actor.cpp -------------------------------------------------------------------------------- /flow/CompressionUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/CompressionUtils.cpp -------------------------------------------------------------------------------- /flow/Deque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/Deque.cpp -------------------------------------------------------------------------------- /flow/DeterministicRandom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/DeterministicRandom.cpp -------------------------------------------------------------------------------- /flow/EncryptUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/EncryptUtils.cpp -------------------------------------------------------------------------------- /flow/Error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/Error.cpp -------------------------------------------------------------------------------- /flow/FastAlloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/FastAlloc.cpp -------------------------------------------------------------------------------- /flow/FaultInjection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/FaultInjection.cpp -------------------------------------------------------------------------------- /flow/FileTraceLogWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/FileTraceLogWriter.cpp -------------------------------------------------------------------------------- /flow/Hash3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/Hash3.c -------------------------------------------------------------------------------- /flow/Histogram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/Histogram.cpp -------------------------------------------------------------------------------- /flow/Hostname.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/Hostname.actor.cpp -------------------------------------------------------------------------------- /flow/IAsyncFile.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/IAsyncFile.actor.cpp -------------------------------------------------------------------------------- /flow/IThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/IThreadPool.cpp -------------------------------------------------------------------------------- /flow/IThreadPoolTest.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/IThreadPoolTest.actor.cpp -------------------------------------------------------------------------------- /flow/IndexedSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/IndexedSet.cpp -------------------------------------------------------------------------------- /flow/JsonTraceLogFormatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/JsonTraceLogFormatter.cpp -------------------------------------------------------------------------------- /flow/Knobs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/Knobs.cpp -------------------------------------------------------------------------------- /flow/LinkTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/LinkTest.cpp -------------------------------------------------------------------------------- /flow/MkCert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/MkCert.cpp -------------------------------------------------------------------------------- /flow/MkCertCli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/MkCertCli.cpp -------------------------------------------------------------------------------- /flow/Net2.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/Net2.actor.cpp -------------------------------------------------------------------------------- /flow/Net2Packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/Net2Packet.cpp -------------------------------------------------------------------------------- /flow/PKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/PKey.cpp -------------------------------------------------------------------------------- /flow/Platform.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/Platform.actor.cpp -------------------------------------------------------------------------------- /flow/ProcessEvents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/ProcessEvents.cpp -------------------------------------------------------------------------------- /flow/Profiler.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/Profiler.actor.cpp -------------------------------------------------------------------------------- /flow/ProtocolVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/ProtocolVersion.cpp -------------------------------------------------------------------------------- /flow/ProtocolVersion.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/ProtocolVersion.h.cmake -------------------------------------------------------------------------------- /flow/ProtocolVersions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/ProtocolVersions.cmake -------------------------------------------------------------------------------- /flow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/README.md -------------------------------------------------------------------------------- /flow/SignalSafeUnwind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/SignalSafeUnwind.cpp -------------------------------------------------------------------------------- /flow/SimBugInjector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/SimBugInjector.cpp -------------------------------------------------------------------------------- /flow/SimpleCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/SimpleCounter.cpp -------------------------------------------------------------------------------- /flow/SourceVersion.h.cmake: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #define sourceVersion "${CURRENT_GIT_VERSION}" 3 | -------------------------------------------------------------------------------- /flow/StreamCipher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/StreamCipher.cpp -------------------------------------------------------------------------------- /flow/SwiftBridging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/SwiftBridging.swift -------------------------------------------------------------------------------- /flow/SwiftFileB.swift: -------------------------------------------------------------------------------- 1 | import Flow 2 | 3 | @_expose(Cxx) 4 | public func swiftFileB() { 5 | } 6 | -------------------------------------------------------------------------------- /flow/SystemMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/SystemMonitor.cpp -------------------------------------------------------------------------------- /flow/TDMetric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/TDMetric.cpp -------------------------------------------------------------------------------- /flow/TLSConfig.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/TLSConfig.actor.cpp -------------------------------------------------------------------------------- /flow/TLSTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/TLSTest.cpp -------------------------------------------------------------------------------- /flow/ThreadHelper.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/ThreadHelper.actor.cpp -------------------------------------------------------------------------------- /flow/ThreadPrimitives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/ThreadPrimitives.cpp -------------------------------------------------------------------------------- /flow/Trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/Trace.cpp -------------------------------------------------------------------------------- /flow/UnitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/UnitTest.cpp -------------------------------------------------------------------------------- /flow/WipedString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/WipedString.cpp -------------------------------------------------------------------------------- /flow/WriteOnlySet.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/WriteOnlySet.actor.cpp -------------------------------------------------------------------------------- /flow/XmlTraceLogFormatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/XmlTraceLogFormatter.cpp -------------------------------------------------------------------------------- /flow/aarch64/asmdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/aarch64/asmdefs.h -------------------------------------------------------------------------------- /flow/aarch64/memcmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/aarch64/memcmp.S -------------------------------------------------------------------------------- /flow/aarch64/memcpy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/aarch64/memcpy.S -------------------------------------------------------------------------------- /flow/acac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/acac.cpp -------------------------------------------------------------------------------- /flow/actorcompiler/ParseTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/actorcompiler/ParseTree.cs -------------------------------------------------------------------------------- /flow/actorcompiler/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/actorcompiler/Program.cs -------------------------------------------------------------------------------- /flow/actorcompiler/usertype.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/actorcompiler/usertype.dat -------------------------------------------------------------------------------- /flow/clock_support.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/clock_support.swift -------------------------------------------------------------------------------- /flow/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/config.h.cmake -------------------------------------------------------------------------------- /flow/coveragetool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/coveragetool/Program.cs -------------------------------------------------------------------------------- /flow/error_support.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/error_support.swift -------------------------------------------------------------------------------- /flow/flat_buffers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/flat_buffers.cpp -------------------------------------------------------------------------------- /flow/flow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/flow.cpp -------------------------------------------------------------------------------- /flow/flow_future_support.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/flow_future_support.swift -------------------------------------------------------------------------------- /flow/flow_optional_support.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/flow_optional_support.swift -------------------------------------------------------------------------------- /flow/flow_stream_support.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/flow_stream_support.swift -------------------------------------------------------------------------------- /flow/future_support.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/future_support.swift -------------------------------------------------------------------------------- /flow/genericactors.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/genericactors.actor.cpp -------------------------------------------------------------------------------- /flow/include/flow/ActorContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/ActorContext.h -------------------------------------------------------------------------------- /flow/include/flow/Arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/Arena.h -------------------------------------------------------------------------------- /flow/include/flow/ArgParseUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/ArgParseUtil.h -------------------------------------------------------------------------------- /flow/include/flow/AsioReactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/AsioReactor.h -------------------------------------------------------------------------------- /flow/include/flow/AutoCPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/AutoCPointer.h -------------------------------------------------------------------------------- /flow/include/flow/BooleanParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/BooleanParam.h -------------------------------------------------------------------------------- /flow/include/flow/Buggify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/Buggify.h -------------------------------------------------------------------------------- /flow/include/flow/ChaosMetrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/ChaosMetrics.h -------------------------------------------------------------------------------- /flow/include/flow/CodeProbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/CodeProbe.h -------------------------------------------------------------------------------- /flow/include/flow/CoroUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/CoroUtils.h -------------------------------------------------------------------------------- /flow/include/flow/Coroutines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/Coroutines.h -------------------------------------------------------------------------------- /flow/include/flow/DebugTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/DebugTrace.h -------------------------------------------------------------------------------- /flow/include/flow/Deque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/Deque.h -------------------------------------------------------------------------------- /flow/include/flow/EncryptUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/EncryptUtils.h -------------------------------------------------------------------------------- /flow/include/flow/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/Error.h -------------------------------------------------------------------------------- /flow/include/flow/FastAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/FastAlloc.h -------------------------------------------------------------------------------- /flow/include/flow/FastRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/FastRef.h -------------------------------------------------------------------------------- /flow/include/flow/FlowThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/FlowThread.h -------------------------------------------------------------------------------- /flow/include/flow/Hash3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/Hash3.h -------------------------------------------------------------------------------- /flow/include/flow/Histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/Histogram.h -------------------------------------------------------------------------------- /flow/include/flow/Hostname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/Hostname.h -------------------------------------------------------------------------------- /flow/include/flow/IAsyncFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/IAsyncFile.h -------------------------------------------------------------------------------- /flow/include/flow/IConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/IConnection.h -------------------------------------------------------------------------------- /flow/include/flow/IDispatched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/IDispatched.h -------------------------------------------------------------------------------- /flow/include/flow/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/IPAddress.h -------------------------------------------------------------------------------- /flow/include/flow/IRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/IRandom.h -------------------------------------------------------------------------------- /flow/include/flow/IRateControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/IRateControl.h -------------------------------------------------------------------------------- /flow/include/flow/IThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/IThreadPool.h -------------------------------------------------------------------------------- /flow/include/flow/ITrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/ITrace.h -------------------------------------------------------------------------------- /flow/include/flow/IUDPSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/IUDPSocket.h -------------------------------------------------------------------------------- /flow/include/flow/IndexedSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/IndexedSet.h -------------------------------------------------------------------------------- /flow/include/flow/Knobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/Knobs.h -------------------------------------------------------------------------------- /flow/include/flow/MetricSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/MetricSample.h -------------------------------------------------------------------------------- /flow/include/flow/MkCert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/MkCert.h -------------------------------------------------------------------------------- /flow/include/flow/Msgpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/Msgpack.h -------------------------------------------------------------------------------- /flow/include/flow/Net2Packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/Net2Packet.h -------------------------------------------------------------------------------- /flow/include/flow/OTELMetrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/OTELMetrics.h -------------------------------------------------------------------------------- /flow/include/flow/Optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/Optional.h -------------------------------------------------------------------------------- /flow/include/flow/PKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/PKey.h -------------------------------------------------------------------------------- /flow/include/flow/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/Platform.h -------------------------------------------------------------------------------- /flow/include/flow/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/Profiler.h -------------------------------------------------------------------------------- /flow/include/flow/ScopeExit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/ScopeExit.h -------------------------------------------------------------------------------- /flow/include/flow/StreamCipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/StreamCipher.h -------------------------------------------------------------------------------- /flow/include/flow/TaskPriority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/TaskPriority.h -------------------------------------------------------------------------------- /flow/include/flow/TaskQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/TaskQueue.h -------------------------------------------------------------------------------- /flow/include/flow/Trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/Trace.h -------------------------------------------------------------------------------- /flow/include/flow/Traceable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/Traceable.h -------------------------------------------------------------------------------- /flow/include/flow/TypeTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/TypeTraits.h -------------------------------------------------------------------------------- /flow/include/flow/UnitTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/UnitTest.h -------------------------------------------------------------------------------- /flow/include/flow/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/Util.h -------------------------------------------------------------------------------- /flow/include/flow/WipedString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/WipedString.h -------------------------------------------------------------------------------- /flow/include/flow/WriteOnlySet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/WriteOnlySet.h -------------------------------------------------------------------------------- /flow/include/flow/flat_buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/flat_buffers.h -------------------------------------------------------------------------------- /flow/include/flow/flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/flow.h -------------------------------------------------------------------------------- /flow/include/flow/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/network.h -------------------------------------------------------------------------------- /flow/include/flow/ppc-asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/ppc-asm.h -------------------------------------------------------------------------------- /flow/include/flow/ppc-opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/ppc-opcode.h -------------------------------------------------------------------------------- /flow/include/flow/rte_memcpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/rte_memcpy.h -------------------------------------------------------------------------------- /flow/include/flow/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/serialize.h -------------------------------------------------------------------------------- /flow/include/flow/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/singleton.h -------------------------------------------------------------------------------- /flow/include/flow/sse2neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/sse2neon.h -------------------------------------------------------------------------------- /flow/include/flow/swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/swift.h -------------------------------------------------------------------------------- /flow/include/flow/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/include/flow/xxhash.h -------------------------------------------------------------------------------- /flow/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/network.cpp -------------------------------------------------------------------------------- /flow/no_intellisense.opt: -------------------------------------------------------------------------------- 1 | /D "NO_INTELLISENSE=1" -------------------------------------------------------------------------------- /flow/protocolversion/requirements.txt: -------------------------------------------------------------------------------- 1 | Jinja2==3.1.6 2 | MarkupSafe==2.1.3 3 | -------------------------------------------------------------------------------- /flow/reply_support.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/reply_support.swift -------------------------------------------------------------------------------- /flow/serialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/serialize.cpp -------------------------------------------------------------------------------- /flow/stream_support.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/stream_support.swift -------------------------------------------------------------------------------- /flow/swift_concurrency_hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/swift_concurrency_hooks.cpp -------------------------------------------------------------------------------- /flow/swift_task_priority.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/swift_task_priority.cpp -------------------------------------------------------------------------------- /flow/task_priority_support.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/task_priority_support.swift -------------------------------------------------------------------------------- /flow/test_memcpy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/test_memcpy.cpp -------------------------------------------------------------------------------- /flow/test_memcpy_perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/test_memcpy_perf.cpp -------------------------------------------------------------------------------- /flow/trace_support.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/trace_support.swift -------------------------------------------------------------------------------- /flow/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/version.cpp -------------------------------------------------------------------------------- /flow/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flow/xxhash.c -------------------------------------------------------------------------------- /flowbench/BenchConflictSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flowbench/BenchConflictSet.cpp -------------------------------------------------------------------------------- /flowbench/BenchEncrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flowbench/BenchEncrypt.cpp -------------------------------------------------------------------------------- /flowbench/BenchHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flowbench/BenchHash.cpp -------------------------------------------------------------------------------- /flowbench/BenchIONet2.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flowbench/BenchIONet2.actor.cpp -------------------------------------------------------------------------------- /flowbench/BenchIterate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flowbench/BenchIterate.cpp -------------------------------------------------------------------------------- /flowbench/BenchMem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flowbench/BenchMem.cpp -------------------------------------------------------------------------------- /flowbench/BenchMetadataCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flowbench/BenchMetadataCheck.cpp -------------------------------------------------------------------------------- /flowbench/BenchNet2.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flowbench/BenchNet2.actor.cpp -------------------------------------------------------------------------------- /flowbench/BenchPopulate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flowbench/BenchPopulate.cpp -------------------------------------------------------------------------------- /flowbench/BenchRandom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flowbench/BenchRandom.cpp -------------------------------------------------------------------------------- /flowbench/BenchRef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flowbench/BenchRef.cpp -------------------------------------------------------------------------------- /flowbench/BenchSamples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flowbench/BenchSamples.cpp -------------------------------------------------------------------------------- /flowbench/BenchStream.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flowbench/BenchStream.actor.cpp -------------------------------------------------------------------------------- /flowbench/BenchTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flowbench/BenchTimer.cpp -------------------------------------------------------------------------------- /flowbench/BenchVersionVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flowbench/BenchVersionVector.cpp -------------------------------------------------------------------------------- /flowbench/BenchZstd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flowbench/BenchZstd.cpp -------------------------------------------------------------------------------- /flowbench/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flowbench/CMakeLists.txt -------------------------------------------------------------------------------- /flowbench/GlobalData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flowbench/GlobalData.cpp -------------------------------------------------------------------------------- /flowbench/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flowbench/README.md -------------------------------------------------------------------------------- /flowbench/benchmark.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flowbench/benchmark.cmake -------------------------------------------------------------------------------- /flowbench/flowbench.actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/flowbench/flowbench.actor.cpp -------------------------------------------------------------------------------- /layers/bulkload/bulk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/layers/bulkload/bulk.py -------------------------------------------------------------------------------- /layers/containers/set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/layers/containers/set.py -------------------------------------------------------------------------------- /layers/containers/treap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/layers/containers/treap.py -------------------------------------------------------------------------------- /layers/containers/vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/layers/containers/vector.py -------------------------------------------------------------------------------- /layers/pubsub/ps_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/layers/pubsub/ps_prompt.py -------------------------------------------------------------------------------- /layers/pubsub/ps_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/layers/pubsub/ps_test.py -------------------------------------------------------------------------------- /layers/pubsub/ps_tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/layers/pubsub/ps_tutorial.py -------------------------------------------------------------------------------- /layers/pubsub/pubsub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/layers/pubsub/pubsub.py -------------------------------------------------------------------------------- /layers/pubsub/pubsub_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/layers/pubsub/pubsub_example.py -------------------------------------------------------------------------------- /layers/pubsub/pubsub_orig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/layers/pubsub/pubsub_orig.py -------------------------------------------------------------------------------- /layers/pubsub/remoteload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/layers/pubsub/remoteload.py -------------------------------------------------------------------------------- /layers/pubsub/remotesend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/layers/pubsub/remotesend.py -------------------------------------------------------------------------------- /layers/pubsub/remotesubscribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/layers/pubsub/remotesubscribe.py -------------------------------------------------------------------------------- /layers/taskbucket/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/layers/taskbucket/__init__.py -------------------------------------------------------------------------------- /layers/taskbucket/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/layers/taskbucket/test.py -------------------------------------------------------------------------------- /metacluster/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/metacluster/CMakeLists.txt -------------------------------------------------------------------------------- /metacluster/Metacluster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/metacluster/Metacluster.cpp -------------------------------------------------------------------------------- /packaging/deb/builddebs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/deb/builddebs.sh -------------------------------------------------------------------------------- /packaging/deb/foundationdb-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/deb/foundationdb-init -------------------------------------------------------------------------------- /packaging/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/description -------------------------------------------------------------------------------- /packaging/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/docker/Dockerfile -------------------------------------------------------------------------------- /packaging/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/docker/README.md -------------------------------------------------------------------------------- /packaging/docker/build-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/docker/build-images.sh -------------------------------------------------------------------------------- /packaging/docker/entrypoint.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/docker/entrypoint.bash -------------------------------------------------------------------------------- /packaging/docker/fdb.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/docker/fdb.bash -------------------------------------------------------------------------------- /packaging/docker/fdb_single.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/docker/fdb_single.bash -------------------------------------------------------------------------------- /packaging/docker/run_ycsb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/docker/run_ycsb.sh -------------------------------------------------------------------------------- /packaging/docker/sidecar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/docker/sidecar.py -------------------------------------------------------------------------------- /packaging/docker/sidecar_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/docker/sidecar_test.py -------------------------------------------------------------------------------- /packaging/docker/website/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packaging/fdb.cluster.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/fdb.cluster.cmake -------------------------------------------------------------------------------- /packaging/foundationdb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/foundationdb.conf -------------------------------------------------------------------------------- /packaging/foundationdb.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/foundationdb.ico -------------------------------------------------------------------------------- /packaging/make_public.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/make_public.py -------------------------------------------------------------------------------- /packaging/msi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/msi/CMakeLists.txt -------------------------------------------------------------------------------- /packaging/msi/FDBInstaller.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/msi/FDBInstaller.wxs -------------------------------------------------------------------------------- /packaging/msi/LICENSE.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/msi/LICENSE.rtf -------------------------------------------------------------------------------- /packaging/msi/art/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/msi/art/banner.jpg -------------------------------------------------------------------------------- /packaging/msi/art/banner.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/msi/art/banner.xcf -------------------------------------------------------------------------------- /packaging/msi/art/dialog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/msi/art/dialog.jpg -------------------------------------------------------------------------------- /packaging/msi/art/dialog.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/msi/art/dialog.xcf -------------------------------------------------------------------------------- /packaging/msi/art/favicon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/msi/art/favicon-60.png -------------------------------------------------------------------------------- /packaging/msi/generate_wxs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/msi/generate_wxs.cmake -------------------------------------------------------------------------------- /packaging/msi/skeleton.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/msi/skeleton.conf -------------------------------------------------------------------------------- /packaging/osx/Distribution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/osx/Distribution.xml -------------------------------------------------------------------------------- /packaging/osx/buildpkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/osx/buildpkg.sh -------------------------------------------------------------------------------- /packaging/osx/resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/osx/resources/logo.png -------------------------------------------------------------------------------- /packaging/rpm/buildrpms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/rpm/buildrpms.sh -------------------------------------------------------------------------------- /packaging/rpm/foundationdb-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/packaging/rpm/foundationdb-init -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /recipes/go-recipes/blob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/recipes/go-recipes/blob.go -------------------------------------------------------------------------------- /recipes/go-recipes/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/recipes/go-recipes/doc.go -------------------------------------------------------------------------------- /recipes/go-recipes/graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/recipes/go-recipes/graph.go -------------------------------------------------------------------------------- /recipes/go-recipes/indirect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/recipes/go-recipes/indirect.go -------------------------------------------------------------------------------- /recipes/go-recipes/multi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/recipes/go-recipes/multi.go -------------------------------------------------------------------------------- /recipes/go-recipes/priority.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/recipes/go-recipes/priority.go -------------------------------------------------------------------------------- /recipes/go-recipes/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/recipes/go-recipes/queue.go -------------------------------------------------------------------------------- /recipes/go-recipes/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/recipes/go-recipes/table.go -------------------------------------------------------------------------------- /swift_get_latest_toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/swift_get_latest_toolchain.sh -------------------------------------------------------------------------------- /tests/AsyncFileCorrectness.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/AsyncFileCorrectness.txt -------------------------------------------------------------------------------- /tests/AsyncFileMix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/AsyncFileMix.txt -------------------------------------------------------------------------------- /tests/AsyncFileRead.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/AsyncFileRead.txt -------------------------------------------------------------------------------- /tests/AsyncFileReadRandom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/AsyncFileReadRandom.txt -------------------------------------------------------------------------------- /tests/AsyncFileWrite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/AsyncFileWrite.txt -------------------------------------------------------------------------------- /tests/BackupContainers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/BackupContainers.txt -------------------------------------------------------------------------------- /tests/BandwidthThrottle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/BandwidthThrottle.txt -------------------------------------------------------------------------------- /tests/BigInsert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/BigInsert.txt -------------------------------------------------------------------------------- /tests/BlobManagerUnit.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/BlobManagerUnit.toml -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/CTestCustom.ctest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/CTestCustom.ctest.cmake -------------------------------------------------------------------------------- /tests/ClusterControllerTests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/ClusterControllerTests.txt -------------------------------------------------------------------------------- /tests/ConsistencyCheck.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/ConsistencyCheck.txt -------------------------------------------------------------------------------- /tests/DDMetricsExclude.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/DDMetricsExclude.txt -------------------------------------------------------------------------------- /tests/DiskDurability.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/DiskDurability.txt -------------------------------------------------------------------------------- /tests/FileSystem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/FileSystem.txt -------------------------------------------------------------------------------- /tests/Happy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/Happy.txt -------------------------------------------------------------------------------- /tests/IThreadPool.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/IThreadPool.txt -------------------------------------------------------------------------------- /tests/IncrementalDelete.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/IncrementalDelete.txt -------------------------------------------------------------------------------- /tests/KVStoreMemTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/KVStoreMemTest.txt -------------------------------------------------------------------------------- /tests/KVStoreReadMostly.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/KVStoreReadMostly.txt -------------------------------------------------------------------------------- /tests/KVStoreTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/KVStoreTest.txt -------------------------------------------------------------------------------- /tests/KVStoreTestRead.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/KVStoreTestRead.txt -------------------------------------------------------------------------------- /tests/KVStoreTestWrite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/KVStoreTestWrite.txt -------------------------------------------------------------------------------- /tests/KVStoreValueSize.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/KVStoreValueSize.txt -------------------------------------------------------------------------------- /tests/LayerStatusMerge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/LayerStatusMerge.txt -------------------------------------------------------------------------------- /tests/Mako.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/Mako.txt -------------------------------------------------------------------------------- /tests/PerfUnitTests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/PerfUnitTests.toml -------------------------------------------------------------------------------- /tests/PureNetwork.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/PureNetwork.txt -------------------------------------------------------------------------------- /tests/RRW2500.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/RRW2500.txt -------------------------------------------------------------------------------- /tests/RandomRangeRead.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/RandomRangeRead.txt -------------------------------------------------------------------------------- /tests/RandomRead.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/RandomRead.txt -------------------------------------------------------------------------------- /tests/RandomReadWrite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/RandomReadWrite.txt -------------------------------------------------------------------------------- /tests/ReadAbsent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/ReadAbsent.txt -------------------------------------------------------------------------------- /tests/ReadAfterWrite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/ReadAfterWrite.txt -------------------------------------------------------------------------------- /tests/ReadHalfAbsent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/ReadHalfAbsent.txt -------------------------------------------------------------------------------- /tests/RedwoodCorrectness.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/RedwoodCorrectness.txt -------------------------------------------------------------------------------- /tests/RedwoodPerfSet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/RedwoodPerfSet.txt -------------------------------------------------------------------------------- /tests/RedwoodPerfTests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/RedwoodPerfTests.txt -------------------------------------------------------------------------------- /tests/RocksDBTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/RocksDBTest.txt -------------------------------------------------------------------------------- /tests/S3BlobStore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/S3BlobStore.txt -------------------------------------------------------------------------------- /tests/SampleNoSimAttrition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/SampleNoSimAttrition.txt -------------------------------------------------------------------------------- /tests/SimpleExternalTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/SimpleExternalTest.txt -------------------------------------------------------------------------------- /tests/SpecificUnitTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/SpecificUnitTest.txt -------------------------------------------------------------------------------- /tests/StorageServerInterface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/StorageServerInterface.txt -------------------------------------------------------------------------------- /tests/StreamingWrite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/StreamingWrite.txt -------------------------------------------------------------------------------- /tests/SystemData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/SystemData.txt -------------------------------------------------------------------------------- /tests/TestRunner/TestRunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/TestRunner/TestRunner.py -------------------------------------------------------------------------------- /tests/TestRunner/authz_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/TestRunner/authz_util.py -------------------------------------------------------------------------------- /tests/TestRunner/cluster_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/TestRunner/cluster_args.py -------------------------------------------------------------------------------- /tests/TestRunner/fake_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/TestRunner/fake_cluster.py -------------------------------------------------------------------------------- /tests/TestRunner/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/TestRunner/test_util.py -------------------------------------------------------------------------------- /tests/TestRunner/tmp_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/TestRunner/tmp_cluster.py -------------------------------------------------------------------------------- /tests/TestRunner/upgrade_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/TestRunner/upgrade_test.py -------------------------------------------------------------------------------- /tests/ThreadSafety.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/ThreadSafety.txt -------------------------------------------------------------------------------- /tests/TraceEventMetrics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/TraceEventMetrics.txt -------------------------------------------------------------------------------- /tests/WorkerTests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/WorkerTests.txt -------------------------------------------------------------------------------- /tests/authorization/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/authorization/conftest.py -------------------------------------------------------------------------------- /tests/authorization/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/authorization/util.py -------------------------------------------------------------------------------- /tests/default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/default.txt -------------------------------------------------------------------------------- /tests/errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/errors.txt -------------------------------------------------------------------------------- /tests/fail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fail.txt -------------------------------------------------------------------------------- /tests/fast/AtomicOps.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/AtomicOps.toml -------------------------------------------------------------------------------- /tests/fast/BulkDumping.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/BulkDumping.toml -------------------------------------------------------------------------------- /tests/fast/BulkLoading.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/BulkLoading.toml -------------------------------------------------------------------------------- /tests/fast/CloggedSideband.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/CloggedSideband.toml -------------------------------------------------------------------------------- /tests/fast/ConfigIncrement.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/ConfigIncrement.toml -------------------------------------------------------------------------------- /tests/fast/ConfigureLocked.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/ConfigureLocked.toml -------------------------------------------------------------------------------- /tests/fast/CycleAndLock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/CycleAndLock.toml -------------------------------------------------------------------------------- /tests/fast/CycleTest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/CycleTest.toml -------------------------------------------------------------------------------- /tests/fast/DataLossRecovery.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/DataLossRecovery.toml -------------------------------------------------------------------------------- /tests/fast/EncryptionOps.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/EncryptionOps.toml -------------------------------------------------------------------------------- /tests/fast/GetMappedRange.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/GetMappedRange.toml -------------------------------------------------------------------------------- /tests/fast/IncrementTest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/IncrementTest.toml -------------------------------------------------------------------------------- /tests/fast/KillRegionCycle.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/KillRegionCycle.toml -------------------------------------------------------------------------------- /tests/fast/LocalRatekeeper.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/LocalRatekeeper.toml -------------------------------------------------------------------------------- /tests/fast/LowLatency.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/LowLatency.toml -------------------------------------------------------------------------------- /tests/fast/MemoryLifetime.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/MemoryLifetime.toml -------------------------------------------------------------------------------- /tests/fast/MockDDReadWrite.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/MockDDReadWrite.toml -------------------------------------------------------------------------------- /tests/fast/MoveKeysCycle.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/MoveKeysCycle.toml -------------------------------------------------------------------------------- /tests/fast/PrivateEndpoints.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/PrivateEndpoints.toml -------------------------------------------------------------------------------- /tests/fast/ProtocolVersion.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/ProtocolVersion.toml -------------------------------------------------------------------------------- /tests/fast/RESTUnit.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/RESTUnit.toml -------------------------------------------------------------------------------- /tests/fast/RandomSelector.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/RandomSelector.toml -------------------------------------------------------------------------------- /tests/fast/RandomUnitTests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/RandomUnitTests.toml -------------------------------------------------------------------------------- /tests/fast/RangeLockCycle.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/RangeLockCycle.toml -------------------------------------------------------------------------------- /tests/fast/RangeLocking.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/RangeLocking.toml -------------------------------------------------------------------------------- /tests/fast/Sideband.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/Sideband.toml -------------------------------------------------------------------------------- /tests/fast/SidebandSingle.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/SidebandSingle.toml -------------------------------------------------------------------------------- /tests/fast/SimpleAtomicAdd.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/SimpleAtomicAdd.toml -------------------------------------------------------------------------------- /tests/fast/TenantCycle.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/TenantCycle.toml -------------------------------------------------------------------------------- /tests/fast/TenantEntryCache.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/TenantEntryCache.toml -------------------------------------------------------------------------------- /tests/fast/TenantLock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/TenantLock.toml -------------------------------------------------------------------------------- /tests/fast/TxnTimeout.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/TxnTimeout.toml -------------------------------------------------------------------------------- /tests/fast/UDP.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/UDP.toml -------------------------------------------------------------------------------- /tests/fast/Unreadable.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/Unreadable.toml -------------------------------------------------------------------------------- /tests/fast/ValidateStorage.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/ValidateStorage.toml -------------------------------------------------------------------------------- /tests/fast/VersionStamp.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/VersionStamp.toml -------------------------------------------------------------------------------- /tests/fast/Watches.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/Watches.toml -------------------------------------------------------------------------------- /tests/fast/WriteDuringRead.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/fast/WriteDuringRead.toml -------------------------------------------------------------------------------- /tests/killall.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/killall.txt -------------------------------------------------------------------------------- /tests/latency.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/latency.txt -------------------------------------------------------------------------------- /tests/noSim/RandomUnitTests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/noSim/RandomUnitTests.toml -------------------------------------------------------------------------------- /tests/noSim/SlowTask.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/noSim/SlowTask.txt -------------------------------------------------------------------------------- /tests/performance-fs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/performance-fs.txt -------------------------------------------------------------------------------- /tests/performance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/performance.txt -------------------------------------------------------------------------------- /tests/ping.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/ping.TXT -------------------------------------------------------------------------------- /tests/pingServers.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/pingServers.TXT -------------------------------------------------------------------------------- /tests/pt.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/pt.TXT -------------------------------------------------------------------------------- /tests/python_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/python_tests/__init__.py -------------------------------------------------------------------------------- /tests/randomSelector.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/randomSelector.txt -------------------------------------------------------------------------------- /tests/rare/AllSimUnitTests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/rare/AllSimUnitTests.toml -------------------------------------------------------------------------------- /tests/rare/CheckRelocation.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/rare/CheckRelocation.toml -------------------------------------------------------------------------------- /tests/rare/ClogRemoteTLog.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/rare/ClogRemoteTLog.toml -------------------------------------------------------------------------------- /tests/rare/ClogTlog.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/rare/ClogTlog.toml -------------------------------------------------------------------------------- /tests/rare/ClogUnclog.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/rare/ClogUnclog.toml -------------------------------------------------------------------------------- /tests/rare/ConfigDBUnitTest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/rare/ConfigDBUnitTest.toml -------------------------------------------------------------------------------- /tests/rare/CycleWithKills.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/rare/CycleWithKills.toml -------------------------------------------------------------------------------- /tests/rare/DcLag.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/rare/DcLag.toml -------------------------------------------------------------------------------- /tests/rare/RYWDisable.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/rare/RYWDisable.toml -------------------------------------------------------------------------------- /tests/rare/RedwoodDeltaTree.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/rare/RedwoodDeltaTree.toml -------------------------------------------------------------------------------- /tests/rare/StorageQuotaTest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/rare/StorageQuotaTest.toml -------------------------------------------------------------------------------- /tests/rare/Throttling.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/rare/Throttling.toml -------------------------------------------------------------------------------- /tests/rare/ThroughputQuota.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/rare/ThroughputQuota.toml -------------------------------------------------------------------------------- /tests/rare/TransactionCost.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/rare/TransactionCost.toml -------------------------------------------------------------------------------- /tests/s3VersionHeaders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/s3VersionHeaders.txt -------------------------------------------------------------------------------- /tests/selectorCorrectness.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/selectorCorrectness.txt -------------------------------------------------------------------------------- /tests/slow/ApiCorrectness.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/slow/ApiCorrectness.toml -------------------------------------------------------------------------------- /tests/slow/BackupAndRestore.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/slow/BackupAndRestore.toml -------------------------------------------------------------------------------- /tests/slow/BulkDumpingS3.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/slow/BulkDumpingS3.toml -------------------------------------------------------------------------------- /tests/slow/CloggedCycleTest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/slow/CloggedCycleTest.toml -------------------------------------------------------------------------------- /tests/slow/CommitBug.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/slow/CommitBug.toml -------------------------------------------------------------------------------- /tests/slow/ConfigureTest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/slow/ConfigureTest.toml -------------------------------------------------------------------------------- /tests/slow/DiskFailureCycle.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/slow/DiskFailureCycle.toml -------------------------------------------------------------------------------- /tests/slow/GcGenerations.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/slow/GcGenerations.toml -------------------------------------------------------------------------------- /tests/slow/LongRunning.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/slow/LongRunning.toml -------------------------------------------------------------------------------- /tests/slow/MoveKeysClean.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/slow/MoveKeysClean.toml -------------------------------------------------------------------------------- /tests/slow/MoveKeysSideband.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/slow/MoveKeysSideband.toml -------------------------------------------------------------------------------- /tests/slow/RyowCorrectness.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/slow/RyowCorrectness.toml -------------------------------------------------------------------------------- /tests/slow/S3Client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/slow/S3Client.toml -------------------------------------------------------------------------------- /tests/slow/Serializability.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/slow/Serializability.toml -------------------------------------------------------------------------------- /tests/slow/StorefrontTest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/slow/StorefrontTest.toml -------------------------------------------------------------------------------- /tests/slow/TenantManagement.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/slow/TenantManagement.toml -------------------------------------------------------------------------------- /tests/slow/ddbalance.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/slow/ddbalance.toml -------------------------------------------------------------------------------- /tests/status/separate_idle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/status/separate_idle.json -------------------------------------------------------------------------------- /tests/status/separate_idle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/tests/status/separate_idle.txt -------------------------------------------------------------------------------- /versions.target.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/foundationdb/HEAD/versions.target.cmake --------------------------------------------------------------------------------