MCPcopy Create free account
hub / github.com/bytedance/terarkdb / getUpdatesSince

Method getUpdatesSince

java/src/main/java/org/rocksdb/RocksDB.java:2777–2781  ·  view source on GitHub ↗

Returns an iterator that is positioned at a write-batch containing seq_number. If the sequence number is non existent, it returns an iterator at the first available seq_no after the requested seq_no. Must set WAL_ttl_seconds or WAL_size_limit_MB to large values to use this api, else the W

(final long sequenceNumber)

Source from the content-addressed store, hash-verified

2775 * from native-side.
2776 */
2777 public TransactionLogIterator getUpdatesSince(final long sequenceNumber)
2778 throws RocksDBException {
2779 return new TransactionLogIterator(
2780 getUpdatesSince(nativeHandle_, sequenceNumber));
2781 }
2782
2783 public void setOptions(final ColumnFamilyHandle columnFamilyHandle,
2784 final MutableColumnFamilyOptions mutableColumnFamilyOptions)

Calls

no outgoing calls