| /rocksdb-6.9/java/src/test/java/org/rocksdb/ |
| D | OptimisticTransactionTest.java | 32 txn.commit(); in getForUpdate_cf_conflict() 42 txn2.commit(); in getForUpdate_cf_conflict() 69 txn.commit(); in getForUpdate_conflict() 79 txn2.commit(); in getForUpdate_conflict() 114 txn.commit(); in multiGetForUpdate_cf_conflict() 126 txn2.commit(); in multiGetForUpdate_cf_conflict() 158 txn.commit(); in multiGetForUpdate_conflict() 170 txn2.commit(); in multiGetForUpdate_conflict() 198 txn.commit(); in undoGetForUpdate_cf_conflict() 211 txn2.commit(); in undoGetForUpdate_cf_conflict() [all …]
|
| D | TransactionTest.java | 32 txn.commit(); in getForUpdate_cf_conflict() 65 txn.commit(); in getForUpdate_conflict() 106 txn.commit(); in multiGetForUpdate_cf_conflict() 145 txn.commit(); in multiGetForUpdate_conflict() 210 txn.commit(); in state()
|
| D | AbstractTransactionTest.java | 109 public void commit() throws RocksDBException { in commit() method in AbstractTransactionTest 115 txn.commit(); in commit() 170 txn.commit(); in savePoint()
|
| /rocksdb-6.9/docs/_posts/ |
| D | 2017-12-19-write-prepared-txn.markdown | 12 …commit phase in 2PC (two-phase commit) also becomes noticeable since most of the work, i.e., writi… 16 …commit issue, we should do memtable writes at earlier phases of 2PC so that the commit phase becom… 25 …commit time, it writes a commit marker to the WAL, whose sequence number, `commit_seq`, will be us… 27 …hat caches the recent commit entries. Looking up the entries in the cache must be enough for almos…
|
| D | 2017-08-25-flushwal.markdown | 24 …commit) to write to both binlog as well as the storage engine such as InnoDB and MyRocks. The grou… 26 …bility without however needing a storage WAL flush after each individual commit. MyRocks benefits …
|
| D | 2014-05-22-rocksdb-3-1-release.markdown | 14 …* [Materialized hash index](https://github.com/facebook/rocksdb/commit/0b3d03d026a7248e438341264b4…
|
| D | 2014-05-19-rocksdb-3-0-release.markdown | 17 …* [Ability to chose different checksum function](https://github.com/facebook/rocksdb/commit/0afc8b…
|
| D | 2015-02-27-write-batch-with-index.markdown | 18 …writes of the transaction go to the `WriteBatchWithIndex` first. When we commit the transaction, w…
|
| /rocksdb-6.9/java/samples/src/main/java/ |
| D | OptimisticTransactionSample.java | 86 txn.commit(); in readCommitted() 118 txn.commit(); in repeatableRead() 177 txn.commit(); in readCommitted_monotonicAtomicViews()
|
| D | TransactionSample.java | 87 txn.commit(); in readCommitted() 177 txn.commit(); in readCommitted_monotonicAtomicViews()
|
| /rocksdb-6.9/utilities/transactions/ |
| D | write_unprepared_transaction_test.cc | 427 for (bool commit : {false, true}) { in TEST_P() 456 if (commit) { in TEST_P() 466 for (int i = 0; i < (commit ? kNumKeys : 0); i++) { in TEST_P() 495 for (bool commit : {false, true}) { in TEST_P() 535 if (commit) { in TEST_P() 544 if (commit) { in TEST_P()
|
| D | write_prepared_transaction_test.cc | 376 void MaybeUpdateOldCommitMapTestWithNext(uint64_t prepare, uint64_t commit, in MaybeUpdateOldCommitMapTestWithNext() argument 384 bool check_next = wp_db->MaybeUpdateOldCommitMap(prepare, commit, snapshot, in MaybeUpdateOldCommitMapTestWithNext() 389 prepare, commit, snapshot, next_snapshot); in MaybeUpdateOldCommitMapTestWithNext() 395 wp_db->MaybeUpdateOldCommitMap(prepare, commit, next_snapshot, in MaybeUpdateOldCommitMapTestWithNext() 400 prepare, commit, snapshot, next_snapshot); in MaybeUpdateOldCommitMapTestWithNext()
|
| /rocksdb-6.9/db/ |
| D | write_batch.cc | 784 return save.commit(); in Put() 837 return save.commit(); in Put() 915 return save.commit(); in Delete() 937 return save.commit(); in Delete() 961 return save.commit(); in SingleDelete() 985 return save.commit(); in SingleDelete() 1010 return save.commit(); in DeleteRange() 1035 return save.commit(); in DeleteRange() 1067 return save.commit(); in Merge() 1097 return save.commit(); in Merge() [all …]
|
| D | write_batch_internal.h | 228 Status commit() { in commit() function
|
| /rocksdb-6.9/memory/ |
| D | jemalloc_nodump_allocator.cc | 73 bool* commit, unsigned arena_ind) { in Alloc() argument 77 void* result = original_alloc(extent, new_addr, size, alignment, zero, commit, in Alloc()
|
| D | jemalloc_nodump_allocator.h | 44 size_t alignment, bool* zero, bool* commit,
|
| /rocksdb-6.9/tools/advisor/test/input_files/ |
| D | LOG-1 | 18 …me 2018/05/25-14:30:27.288829) [db/memtable_list.cc:377] [default] Level-0 commit table #23 started 19 … 2018/05/25-14:30:27.289332) [db/memtable_list.cc:409] [default] Level-0 commit table #23: memtabl…
|
| D | LOG-0 | 18 …me 2018/05/25-14:30:27.288829) [db/memtable_list.cc:377] [default] Level-0 commit table #23 started 19 … 2018/05/25-14:30:27.289332) [db/memtable_list.cc:409] [default] Level-0 commit table #23: memtabl…
|
| /rocksdb-6.9/build_tools/ |
| D | format-diff.sh | 135 git commit -a --amend --reuse-message HEAD
|
| /rocksdb-6.9/java/src/main/java/org/rocksdb/ |
| D | Transaction.java | 204 public void commit() throws RocksDBException { in commit() method in Transaction 206 commit(nativeHandle_); in commit() 1891 private native void commit(final long handle) throws RocksDBException; in commit() method in Transaction
|
| /rocksdb-6.9/ |
| D | HISTORY.md | 376 …size (128 default) the rest will not be checked when evicting a commit entry from the commit cache. 385 * Application using PessimisticTransactionDB is expected to rollback/commit recovered transactions … 1151 …red pointer for statistics: [5b825d](https://github.com/facebook/rocksdb/commit/5b825d6964e26ec3b4… 1152 * Optimized locking for `Get()` -- [1fdb3f](https://github.com/facebook/rocksdb/commit/1fdb3f7dc60e… 1153 * Cache speedup - [e8d40c3](https://github.com/facebook/rocksdb/commit/e8d40c31b3cca0c3e1ae9abe9b90… 1154 …while holding a mutex. -- [c01676e4](https://github.com/facebook/rocksdb/commit/c01676e46d3be08c3c…
|
| D | COPYING | 16 Foundation's software and to any other program whose authors commit to
|