1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737
// Copyright (c) 2024-present, fjall-rs
// This source code is licensed under both the Apache 2.0 and MIT License
// (found in the LICENSE-* files in the repository)
use crate::{
batch::{item::Item, PartitionKey},
snapshot_nonce::SnapshotNonce,
Batch, HashMap, Keyspace, PersistMode, TxPartitionHandle,
};
use lsm_tree::{AbstractTree, InternalValue, KvPair, Memtable, SeqNo, UserKey, UserValue};
use std::{
ops::RangeBounds,
sync::{Arc, MutexGuard},
};
fn ignore_tombstone_value(item: InternalValue) -> Option<InternalValue> {
if item.is_tombstone() {
None
} else {
Some(item)
}
}
/// A single-writer (serialized) cross-partition transaction
///
/// Use [`WriteTransaction::commit`] to commit changes to the partition(s).
///
/// Drop the transaction to rollback changes.
pub struct WriteTransaction<'a> {
durability: Option<PersistMode>,
keyspace: Keyspace,
memtables: HashMap<PartitionKey, Arc<Memtable>>,
nonce: SnapshotNonce,
#[allow(unused)]
tx_lock: MutexGuard<'a, ()>,
}
impl<'a> WriteTransaction<'a> {
pub(crate) fn new(
keyspace: Keyspace,
tx_lock: MutexGuard<'a, ()>,
nonce: SnapshotNonce,
) -> Self {
Self {
keyspace,
memtables: HashMap::default(),
tx_lock,
nonce,
durability: None,
}
}
/// Sets the durability level.
#[must_use]
pub fn durability(mut self, mode: Option<PersistMode>) -> Self {
self.durability = mode;
self
}
/// Removes an item and returns its value if it existed.
///
/// The operation will run wrapped in a transaction.
///
/// ```
/// # use fjall::{Config, Keyspace, PartitionCreateOptions};
/// # use std::sync::Arc;
/// #
/// # let folder = tempfile::tempdir()?;
/// # let keyspace = Config::new(folder).open_transactional()?;
/// # let partition = keyspace.open_partition("default", PartitionCreateOptions::default())?;
/// partition.insert("a", "abc")?;
///
/// let mut tx = keyspace.write_tx();
///
/// let taken = tx.take(&partition, "a")?.unwrap();
/// assert_eq!(b"abc", &*taken);
/// tx.commit()?;
///
/// let item = partition.get("a")?;
/// assert!(item.is_none());
/// #
/// # Ok::<(), fjall::Error>(())
/// ```
///
/// # Errors
///
/// Will return `Err` if an IO error occurs.
pub fn take<K: AsRef<[u8]>>(
&mut self,
partition: &TxPartitionHandle,
key: K,
) -> crate::Result<Option<UserValue>> {
self.fetch_update(partition, key, |_| None)
}
/// Atomically updates an item and returns the new value.
///
/// Returning `None` removes the item if it existed before.
///
/// The operation will run wrapped in a transaction.
///
/// # Examples
///
/// ```
/// # use fjall::{Config, Keyspace, PartitionCreateOptions, Slice};
/// #
/// # let folder = tempfile::tempdir()?;
/// # let keyspace = Config::new(folder).open_transactional()?;
/// # let partition = keyspace.open_partition("default", PartitionCreateOptions::default())?;
/// partition.insert("a", "abc")?;
///
/// let mut tx = keyspace.write_tx();
///
/// let updated = tx.update_fetch(&partition, "a", |_| Some(Slice::from(*b"def")))?.unwrap();
/// assert_eq!(b"def", &*updated);
/// tx.commit()?;
///
/// let item = partition.get("a")?;
/// assert_eq!(Some("def".as_bytes().into()), item);
/// #
/// # Ok::<(), fjall::Error>(())
/// ```
///
/// ```
/// # use fjall::{Config, Keyspace, PartitionCreateOptions};
/// # use std::sync::Arc;
/// #
/// # let folder = tempfile::tempdir()?;
/// # let keyspace = Config::new(folder).open_transactional()?;
/// # let partition = keyspace.open_partition("default", PartitionCreateOptions::default())?;
/// partition.insert("a", "abc")?;
///
/// let mut tx = keyspace.write_tx();
///
/// let updated = tx.update_fetch(&partition, "a", |_| None)?;
/// assert!(updated.is_none());
/// tx.commit()?;
///
/// let item = partition.get("a")?;
/// assert!(item.is_none());
/// #
/// # Ok::<(), fjall::Error>(())
/// ```
///
/// # Errors
///
/// Will return `Err` if an IO error occurs.
pub fn update_fetch<K: AsRef<[u8]>, F: Fn(Option<&UserValue>) -> Option<UserValue>>(
&mut self,
partition: &TxPartitionHandle,
key: K,
f: F,
) -> crate::Result<Option<UserValue>> {
let prev = self.get(partition, &key)?;
let updated = f(prev.as_ref());
if let Some(value) = &updated {
self.insert(partition, &key, value);
} else if prev.is_some() {
self.remove(partition, &key);
}
Ok(updated)
}
/// Atomically updates an item and returns the previous value.
///
/// Returning `None` removes the item if it existed before.
///
/// The operation will run wrapped in a transaction.
///
/// # Examples
///
/// ```
/// # use fjall::{Config, Keyspace, PartitionCreateOptions, Slice};
/// #
/// # let folder = tempfile::tempdir()?;
/// # let keyspace = Config::new(folder).open_transactional()?;
/// # let partition = keyspace.open_partition("default", PartitionCreateOptions::default())?;
/// partition.insert("a", "abc")?;
///
/// let mut tx = keyspace.write_tx();
///
/// let prev = tx.fetch_update(&partition, "a", |_| Some(Slice::from(*b"def")))?.unwrap();
/// assert_eq!(b"abc", &*prev);
/// tx.commit()?;
///
/// let item = partition.get("a")?;
/// assert_eq!(Some("def".as_bytes().into()), item);
/// #
/// # Ok::<(), fjall::Error>(())
/// ```
///
/// ```
/// # use fjall::{Config, Keyspace, PartitionCreateOptions};
/// # use std::sync::Arc;
/// #
/// # let folder = tempfile::tempdir()?;
/// # let keyspace = Config::new(folder).open_transactional()?;
/// # let partition = keyspace.open_partition("default", PartitionCreateOptions::default())?;
/// partition.insert("a", "abc")?;
///
/// let mut tx = keyspace.write_tx();
///
/// let prev = tx.fetch_update(&partition, "a", |_| None)?.unwrap();
/// assert_eq!(b"abc", &*prev);
/// tx.commit()?;
///
/// let item = partition.get("a")?;
/// assert!(item.is_none());
/// #
/// # Ok::<(), fjall::Error>(())
/// ```
///
/// # Errors
///
/// Will return `Err` if an IO error occurs.
pub fn fetch_update<K: AsRef<[u8]>, F: Fn(Option<&UserValue>) -> Option<UserValue>>(
&mut self,
partition: &TxPartitionHandle,
key: K,
f: F,
) -> crate::Result<Option<UserValue>> {
let prev = self.get(partition, &key)?;
let updated = f(prev.as_ref());
if let Some(value) = updated {
self.insert(partition, &key, value);
} else if prev.is_some() {
self.remove(partition, &key);
}
Ok(prev)
}
/// Retrieves an item from the transaction's state.
///
/// The transaction allows reading your own writes (RYOW).
///
/// # Examples
///
/// ```
/// # use fjall::{Config, Keyspace, PartitionCreateOptions};
/// #
/// # let folder = tempfile::tempdir()?;
/// # let keyspace = Config::new(folder).open_transactional()?;
/// # let partition = keyspace.open_partition("default", PartitionCreateOptions::default())?;
/// partition.insert("a", "previous_value")?;
/// assert_eq!(b"previous_value", &*partition.get("a")?.unwrap());
///
/// let mut tx = keyspace.write_tx();
/// tx.insert(&partition, "a", "new_value");
///
/// // Read-your-own-write
/// let item = tx.get(&partition, "a")?;
/// assert_eq!(Some("new_value".as_bytes().into()), item);
///
/// drop(tx);
///
/// // Write was not committed
/// assert_eq!(b"previous_value", &*partition.get("a")?.unwrap());
/// #
/// # Ok::<(), fjall::Error>(())
/// ```
///
/// # Errors
///
/// Will return `Err` if an IO error occurs.
pub fn get<K: AsRef<[u8]>>(
&self,
partition: &TxPartitionHandle,
key: K,
) -> crate::Result<Option<UserValue>> {
if let Some(memtable) = self.memtables.get(&partition.inner.name) {
if let Some(item) = memtable.get(&key, None) {
return Ok(ignore_tombstone_value(item).map(|x| x.value));
}
}
partition
.inner
.snapshot_at(self.nonce.instant)
.get(key)
.map_err(Into::into)
}
/// Returns `true` if the transaction's state contains the specified key.
///
/// # Examples
///
/// ```
/// # use fjall::{Config, Keyspace, PartitionCreateOptions};
/// #
/// # let folder = tempfile::tempdir()?;
/// # let keyspace = Config::new(folder).open_transactional()?;
/// # let partition = keyspace.open_partition("default", PartitionCreateOptions::default())?;
/// partition.insert("a", "my_value")?;
/// assert!(keyspace.read_tx().contains_key(&partition, "a")?);
///
/// let mut tx = keyspace.write_tx();
/// assert!(tx.contains_key(&partition, "a")?);
///
/// tx.insert(&partition, "b", "my_value2");
/// assert!(tx.contains_key(&partition, "b")?);
///
/// // Transaction not committed yet
/// assert!(!keyspace.read_tx().contains_key(&partition, "b")?);
///
/// tx.commit()?;
/// assert!(keyspace.read_tx().contains_key(&partition, "b")?);
/// #
/// # Ok::<(), fjall::Error>(())
/// ```
///
/// # Errors
///
/// Will return `Err` if an IO error occurs.
pub fn contains_key<K: AsRef<[u8]>>(
&self,
partition: &TxPartitionHandle,
key: K,
) -> crate::Result<bool> {
if let Some(memtable) = self.memtables.get(&partition.inner.name) {
if let Some(item) = memtable.get(&key, None) {
return Ok(!item.key.is_tombstone());
}
}
partition
.inner
.snapshot_at(self.nonce.instant)
.contains_key(key)
.map_err(Into::into)
}
/// Returns the first key-value pair in the transaction's state.
/// The key in this pair is the minimum key in the transaction's state.
///
/// # Examples
///
/// ```
/// # use fjall::{Config, Keyspace, PartitionCreateOptions};
/// #
/// # let folder = tempfile::tempdir()?;
/// # let keyspace = Config::new(folder).open_transactional()?;
/// # let partition = keyspace.open_partition("default", PartitionCreateOptions::default())?;
/// #
/// let mut tx = keyspace.write_tx();
/// tx.insert(&partition, "1", "abc");
/// tx.insert(&partition, "3", "abc");
/// tx.insert(&partition, "5", "abc");
///
/// let (key, _) = tx.first_key_value(&partition)?.expect("item should exist");
/// assert_eq!(&*key, "1".as_bytes());
///
/// assert!(keyspace.read_tx().first_key_value(&partition)?.is_none());
/// #
/// # Ok::<(), fjall::Error>(())
/// ```
///
/// # Errors
///
/// Will return `Err` if an IO error occurs.
pub fn first_key_value(&self, partition: &TxPartitionHandle) -> crate::Result<Option<KvPair>> {
self.iter(partition).next().transpose()
}
/// Returns the last key-value pair in the transaction's state.
/// The key in this pair is the maximum key in the transaction's state.
///
/// # Examples
///
/// ```
/// # use fjall::{Config, Keyspace, PartitionCreateOptions};
/// #
/// # let folder = tempfile::tempdir()?;
/// # let keyspace = Config::new(folder).open_transactional()?;
/// # let partition = keyspace.open_partition("default", PartitionCreateOptions::default())?;
/// #
/// let mut tx = keyspace.write_tx();
/// tx.insert(&partition, "1", "abc");
/// tx.insert(&partition, "3", "abc");
/// tx.insert(&partition, "5", "abc");
///
/// let (key, _) = tx.last_key_value(&partition)?.expect("item should exist");
/// assert_eq!(&*key, "5".as_bytes());
///
/// assert!(keyspace.read_tx().last_key_value(&partition)?.is_none());
/// #
/// # Ok::<(), fjall::Error>(())
/// ```
///
/// # Errors
///
/// Will return `Err` if an IO error occurs.
pub fn last_key_value(&self, partition: &TxPartitionHandle) -> crate::Result<Option<KvPair>> {
self.iter(partition).next_back().transpose()
}
/// Scans the entire partition, returning the amount of items.
///
/// # Examples
///
/// ```
/// # use fjall::{Config, Keyspace, PartitionCreateOptions};
/// #
/// # let folder = tempfile::tempdir()?;
/// # let keyspace = Config::new(folder).open_transactional()?;
/// # let partition = keyspace.open_partition("default", PartitionCreateOptions::default())?;
/// partition.insert("a", "my_value")?;
/// partition.insert("b", "my_value2")?;
///
/// let mut tx = keyspace.write_tx();
/// assert_eq!(2, tx.len(&partition)?);
///
/// tx.insert(&partition, "c", "my_value3");
///
/// // read-your-own write
/// assert_eq!(3, tx.len(&partition)?);
///
/// // Transaction is not committed yet
/// assert_eq!(2, keyspace.read_tx().len(&partition)?);
///
/// tx.commit()?;
/// assert_eq!(3, keyspace.read_tx().len(&partition)?);
/// #
/// # Ok::<(), fjall::Error>(())
/// ```
///
/// # Errors
///
/// Will return `Err` if an IO error occurs.
pub fn len(&self, partition: &TxPartitionHandle) -> crate::Result<usize> {
let mut count = 0;
let iter = self.iter(partition);
for kv in iter {
let _ = kv?;
count += 1;
}
Ok(count)
}
/// Iterates over the transaction's state.
///
/// Avoid using this function, or limit it as otherwise it may scan a lot of items.
///
/// # Examples
///
/// ```
/// # use fjall::{Config, Keyspace, PartitionCreateOptions};
/// #
/// # let folder = tempfile::tempdir()?;
/// # let keyspace = Config::new(folder).open_transactional()?;
/// # let partition = keyspace.open_partition("default", PartitionCreateOptions::default())?;
/// #
/// let mut tx = keyspace.write_tx();
/// tx.insert(&partition, "a", "abc");
/// tx.insert(&partition, "f", "abc");
/// tx.insert(&partition, "g", "abc");
///
/// assert_eq!(3, tx.iter(&partition).count());
/// assert_eq!(0, keyspace.read_tx().iter(&partition).count());
/// #
/// # Ok::<(), fjall::Error>(())
/// ```
#[must_use]
pub fn iter<'b>(
&'b self,
partition: &'b TxPartitionHandle,
) -> impl DoubleEndedIterator<Item = crate::Result<KvPair>> + 'static {
partition
.inner
.tree
.iter_with_seqno(
self.nonce.instant,
self.memtables.get(&partition.inner.name).cloned(),
)
.map(|item| item.map_err(Into::into))
}
/// Iterates over the transaction's state, returning keys only.
///
/// Avoid using this function, or limit it as otherwise it may scan a lot of items.
#[must_use]
pub fn keys(
&'a self,
partition: &'a TxPartitionHandle,
) -> impl DoubleEndedIterator<Item = crate::Result<UserKey>> {
partition
.inner
.tree
.keys_with_seqno(self.nonce.instant, None)
.map(|item| item.map_err(Into::into))
}
/// Iterates over the transaction's state, returning values only.
///
/// Avoid using this function, or limit it as otherwise it may scan a lot of items.
#[must_use]
pub fn values(
&'a self,
partition: &'a TxPartitionHandle,
) -> impl DoubleEndedIterator<Item = crate::Result<UserValue>> {
partition
.inner
.tree
.values_with_seqno(self.nonce.instant, None)
.map(|item| item.map_err(Into::into))
}
/// Iterates over a range of the transaction's state.
///
/// Avoid using full or unbounded ranges as they may scan a lot of items (unless limited).
///
/// # Examples
///
/// ```
/// # use fjall::{Config, Keyspace, PartitionCreateOptions};
/// #
/// # let folder = tempfile::tempdir()?;
/// # let keyspace = Config::new(folder).open_transactional()?;
/// # let partition = keyspace.open_partition("default", PartitionCreateOptions::default())?;
/// #
/// let mut tx = keyspace.write_tx();
/// tx.insert(&partition, "a", "abc");
/// tx.insert(&partition, "f", "abc");
/// tx.insert(&partition, "g", "abc");
///
/// assert_eq!(2, tx.range(&partition, "a"..="f").count());
/// assert_eq!(0, keyspace.read_tx().range(&partition, "a"..="f").count());
/// #
/// # Ok::<(), fjall::Error>(())
/// ```
#[must_use]
pub fn range<'b, K: AsRef<[u8]> + 'b, R: RangeBounds<K> + 'b>(
&'b self,
partition: &'b TxPartitionHandle,
range: R,
) -> impl DoubleEndedIterator<Item = crate::Result<KvPair>> + 'static {
partition
.inner
.tree
.range_with_seqno(
range,
self.nonce.instant,
self.memtables.get(&partition.inner.name).cloned(),
)
.map(|item| item.map_err(Into::into))
}
/// Iterates over a range of the transaction's state.
///
/// Avoid using an empty prefix as it may scan a lot of items (unless limited).
///
/// # Examples
///
/// ```
/// # use fjall::{Config, Keyspace, PartitionCreateOptions};
/// #
/// # let folder = tempfile::tempdir()?;
/// # let keyspace = Config::new(folder).open_transactional()?;
/// # let partition = keyspace.open_partition("default", PartitionCreateOptions::default())?;
/// #
/// let mut tx = keyspace.write_tx();
/// tx.insert(&partition, "a", "abc");
/// tx.insert(&partition, "ab", "abc");
/// tx.insert(&partition, "abc", "abc");
///
/// assert_eq!(2, tx.prefix(&partition, "ab").count());
/// assert_eq!(0, keyspace.read_tx().prefix(&partition, "ab").count());
/// #
/// # Ok::<(), fjall::Error>(())
/// ```
#[must_use]
pub fn prefix<'b, K: AsRef<[u8]> + 'b>(
&'b self,
partition: &'b TxPartitionHandle,
prefix: K,
) -> impl DoubleEndedIterator<Item = crate::Result<KvPair>> + 'static {
partition
.inner
.tree
.prefix_with_seqno(
prefix,
self.nonce.instant,
self.memtables.get(&partition.inner.name).cloned(),
)
.map(|item| item.map_err(Into::into))
}
/// Inserts a key-value pair into the partition.
///
/// Keys may be up to 65536 bytes long, values up to 2^32 bytes.
/// Shorter keys and values result in better performance.
///
/// If the key already exists, the item will be overwritten.
///
/// # Examples
///
/// ```
/// # use fjall::{Config, Keyspace, PartitionCreateOptions};
/// #
/// # let folder = tempfile::tempdir()?;
/// # let keyspace = Config::new(folder).open_transactional()?;
/// # let partition = keyspace.open_partition("default", PartitionCreateOptions::default())?;
/// partition.insert("a", "previous_value")?;
/// assert_eq!(b"previous_value", &*partition.get("a")?.unwrap());
///
/// let mut tx = keyspace.write_tx();
/// tx.insert(&partition, "a", "new_value");
///
/// drop(tx);
///
/// // Write was not committed
/// assert_eq!(b"previous_value", &*partition.get("a")?.unwrap());
/// #
/// # Ok::<(), fjall::Error>(())
/// ```
///
/// # Errors
///
/// Will return `Err` if an IO error occurs.
pub fn insert<K: AsRef<[u8]>, V: AsRef<[u8]>>(
&mut self,
partition: &TxPartitionHandle,
key: K,
value: V,
) {
self.memtables
.entry(partition.inner.name.clone())
.or_default()
.insert(lsm_tree::InternalValue::from_components(
key.as_ref(),
value.as_ref(),
// NOTE: Just take the max seqno, which should never be reached
// that way, the write is definitely always the newest
SeqNo::MAX,
lsm_tree::ValueType::Value,
));
}
/// Removes an item from the partition.
///
/// The key may be up to 65536 bytes long.
/// Shorter keys result in better performance.
///
/// # Examples
///
/// ```
/// # use fjall::{Config, Keyspace, PartitionCreateOptions};
/// #
/// # let folder = tempfile::tempdir()?;
/// # let keyspace = Config::new(folder).open_transactional()?;
/// # let partition = keyspace.open_partition("default", PartitionCreateOptions::default())?;
/// partition.insert("a", "previous_value")?;
/// assert_eq!(b"previous_value", &*partition.get("a")?.unwrap());
///
/// let mut tx = keyspace.write_tx();
/// tx.remove(&partition, "a");
///
/// // Read-your-own-write
/// let item = tx.get(&partition, "a")?;
/// assert_eq!(None, item);
///
/// drop(tx);
///
/// // Deletion was not committed
/// assert_eq!(b"previous_value", &*partition.get("a")?.unwrap());
/// #
/// # Ok::<(), fjall::Error>(())
/// ```
///
/// # Errors
///
/// Will return `Err` if an IO error occurs.
pub fn remove<K: AsRef<[u8]>>(&mut self, partition: &TxPartitionHandle, key: K) {
self.memtables
.entry(partition.inner.name.clone())
.or_default()
.insert(lsm_tree::InternalValue::new_tombstone(
key.as_ref(),
// NOTE: Just take the max seqno, which should never be reached
// that way, the write is definitely always the newest
SeqNo::MAX,
));
}
/// Commits the transaction.
///
/// # Errors
///
/// Will return `Err` if an IO error occurs.
pub fn commit(self) -> crate::Result<()> {
let mut batch = Batch::new(self.keyspace).durability(self.durability);
/*
for (partition_key, memtable) in self.memtables {
let memtable = Arc::into_inner(memtable).expect("should be able to unwrap Arc");
for (internal_key, value) in memtable.items {
batch.data.push(Item::new(
partition_key.clone(),
internal_key.user_key,
value,
internal_key.value_type,
));
}
}
*/
for (partition_key, memtable) in self.memtables {
for item in memtable.iter() {
batch.data.push(Item::new(
partition_key.clone(),
item.key.user_key.clone(),
item.value.clone(),
item.key.value_type,
));
}
}
// TODO: instead of using batch, write batch::commit as a generic function that takes
// a impl Iterator<BatchItem>
// that way, we don't have to move the memtable(s) into the batch first to commit
batch.commit()
}
/// More explicit alternative to dropping the transaction
/// to roll it back.
pub fn rollback(self) {}
}