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 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351
|
/*
* Copyright 2010-2017, Tarantool AUTHORS, please see AUTHORS file.
*
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
*
* 1. Redistributions of source code must retain the above
* copyright notice, this list of conditions and the
* following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY AUTHORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
* AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include "vy_tx.h"
#include <assert.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>
#include <small/mempool.h>
#include <small/rlist.h>
#include "diag.h"
#include "errcode.h"
#include "fiber.h"
#include "iproto_constants.h"
#include "iterator_type.h"
#include "salad/stailq.h"
#include "schema.h" /* space_cache_version */
#include "session.h"
#include "space.h"
#include "trigger.h"
#include "trivia/util.h"
#include "tuple.h"
#include "vy_cache.h"
#include "vy_lsm.h"
#include "vy_mem.h"
#include "vy_stat.h"
#include "vy_stmt.h"
#include "vy_upsert.h"
#include "vy_history.h"
#include "vy_read_set.h"
#include "vy_read_view.h"
#include "vy_point_lookup.h"
int
write_set_cmp(struct txv *a, struct txv *b)
{
int rc = a->lsm < b->lsm ? -1 : a->lsm > b->lsm;
if (rc == 0)
return vy_entry_compare(a->entry, b->entry, a->lsm->cmp_def);
return rc;
}
int
write_set_key_cmp(struct write_set_key *a, struct txv *b)
{
int rc = a->lsm < b->lsm ? -1 : a->lsm > b->lsm;
if (rc == 0)
return vy_entry_compare(a->entry, b->entry, a->lsm->cmp_def);
return rc;
}
/**
* Initialize an instance of a global read view.
* To be used exclusively by the transaction manager.
*/
static void
vy_global_read_view_create(struct vy_read_view *rv, int64_t lsn)
{
rlist_create(&rv->in_read_views);
/*
* By default, the transaction is assumed to be
* read-write, and it reads the latest changes of all
* prepared transactions. This makes it possible to
* use the tuple cache in it.
*/
rv->vlsn = lsn;
rv->refs = 0;
}
struct tx_manager *
tx_manager_new(void)
{
struct tx_manager *xm = calloc(1, sizeof(*xm));
if (xm == NULL) {
diag_set(OutOfMemory, sizeof(*xm),
"malloc", "struct tx_manager");
return NULL;
}
rlist_create(&xm->writers);
rlist_create(&xm->read_views);
vy_global_read_view_create((struct vy_read_view *)&xm->global_read_view,
INT64_MAX);
xm->p_global_read_view = &xm->global_read_view;
vy_global_read_view_create((struct vy_read_view *)&xm->committed_read_view,
MAX_LSN - 1);
xm->p_committed_read_view = &xm->committed_read_view;
struct slab_cache *slab_cache = cord_slab_cache();
mempool_create(&xm->tx_mempool, slab_cache, sizeof(struct vy_tx));
mempool_create(&xm->txv_mempool, slab_cache, sizeof(struct txv));
mempool_create(&xm->read_interval_mempool, slab_cache,
sizeof(struct vy_read_interval));
mempool_create(&xm->read_view_mempool, slab_cache,
sizeof(struct vy_read_view));
return xm;
}
void
tx_manager_delete(struct tx_manager *xm)
{
mempool_destroy(&xm->read_view_mempool);
mempool_destroy(&xm->read_interval_mempool);
mempool_destroy(&xm->txv_mempool);
mempool_destroy(&xm->tx_mempool);
free(xm);
}
size_t
tx_manager_mem_used(struct tx_manager *xm)
{
struct mempool_stats mstats;
size_t ret = 0;
ret += xm->write_set_size + xm->read_set_size;
mempool_stats(&xm->tx_mempool, &mstats);
ret += mstats.totals.used;
mempool_stats(&xm->txv_mempool, &mstats);
ret += mstats.totals.used;
mempool_stats(&xm->read_interval_mempool, &mstats);
ret += mstats.totals.used;
mempool_stats(&xm->read_view_mempool, &mstats);
ret += mstats.totals.used;
return ret;
}
struct vy_read_view *
tx_manager_read_view(struct tx_manager *xm)
{
struct vy_read_view *rv;
/*
* Check if the last read view can be reused. Reference
* and return it if it's the case.
*/
if (!rlist_empty(&xm->read_views)) {
rv = rlist_last_entry(&xm->read_views, struct vy_read_view,
in_read_views);
/** Reuse an existing read view */
if ((xm->last_prepared_tx == NULL && rv->vlsn == xm->lsn) ||
(xm->last_prepared_tx != NULL &&
rv->vlsn == MAX_LSN + xm->last_prepared_tx->psn)) {
rv->refs++;
return rv;
}
}
rv = mempool_alloc(&xm->read_view_mempool);
if (rv == NULL) {
diag_set(OutOfMemory, sizeof(*rv),
"mempool", "read view");
return NULL;
}
if (xm->last_prepared_tx != NULL) {
rv->vlsn = MAX_LSN + xm->last_prepared_tx->psn;
xm->last_prepared_tx->read_view = rv;
rv->refs = 2;
} else {
rv->vlsn = xm->lsn;
rv->refs = 1;
}
rlist_add_tail_entry(&xm->read_views, rv, in_read_views);
return rv;
}
void
tx_manager_destroy_read_view(struct tx_manager *xm, struct vy_read_view *rv)
{
if (rv == xm->p_global_read_view)
return;
assert(rv->refs);
if (--rv->refs == 0) {
rlist_del_entry(rv, in_read_views);
mempool_free(&xm->read_view_mempool, rv);
}
}
static struct txv *
txv_new(struct vy_tx *tx, struct vy_lsm *lsm, struct vy_entry entry)
{
struct tx_manager *xm = tx->xm;
struct txv *v = mempool_alloc(&xm->txv_mempool);
if (v == NULL) {
diag_set(OutOfMemory, sizeof(*v), "mempool", "struct txv");
return NULL;
}
v->lsm = lsm;
vy_lsm_ref(v->lsm);
v->mem = NULL;
v->entry = entry;
tuple_ref(entry.stmt);
v->region_stmt = NULL;
v->tx = tx;
v->is_first_insert = false;
v->is_nop = false;
v->is_overwritten = false;
v->overwritten = NULL;
xm->write_set_size += tuple_size(entry.stmt);
vy_stmt_counter_acct_tuple(&lsm->stat.txw.count, entry.stmt);
return v;
}
static void
txv_delete(struct txv *v)
{
struct tx_manager *xm = v->tx->xm;
xm->write_set_size -= tuple_size(v->entry.stmt);
vy_stmt_counter_unacct_tuple(&v->lsm->stat.txw.count, v->entry.stmt);
tuple_unref(v->entry.stmt);
vy_lsm_unref(v->lsm);
mempool_free(&xm->txv_mempool, v);
}
/**
* Account a read interval in transaction manager stats.
*/
static void
vy_read_interval_acct(struct vy_read_interval *interval)
{
struct tx_manager *xm = interval->tx->xm;
xm->read_set_size += tuple_size(interval->left.stmt);
if (interval->left.stmt != interval->right.stmt)
xm->read_set_size += tuple_size(interval->right.stmt);
}
/**
* Unaccount a read interval in transaction manager stats.
*/
static void
vy_read_interval_unacct(struct vy_read_interval *interval)
{
struct tx_manager *xm = interval->tx->xm;
xm->read_set_size -= tuple_size(interval->left.stmt);
if (interval->left.stmt != interval->right.stmt)
xm->read_set_size -= tuple_size(interval->right.stmt);
}
static struct vy_read_interval *
vy_read_interval_new(struct vy_tx *tx, struct vy_lsm *lsm,
struct vy_entry left, bool left_belongs,
struct vy_entry right, bool right_belongs)
{
struct tx_manager *xm = tx->xm;
struct vy_read_interval *interval;
interval = mempool_alloc(&xm->read_interval_mempool);
if (interval == NULL) {
diag_set(OutOfMemory, sizeof(*interval),
"mempool", "struct vy_read_interval");
return NULL;
}
interval->tx = tx;
vy_lsm_ref(lsm);
interval->lsm = lsm;
tuple_ref(left.stmt);
interval->left = left;
interval->left_belongs = left_belongs;
tuple_ref(right.stmt);
interval->right = right;
interval->right_belongs = right_belongs;
interval->subtree_last = NULL;
vy_read_interval_acct(interval);
return interval;
}
static void
vy_read_interval_delete(struct vy_read_interval *interval)
{
struct tx_manager *xm = interval->tx->xm;
vy_read_interval_unacct(interval);
vy_lsm_unref(interval->lsm);
tuple_unref(interval->left.stmt);
tuple_unref(interval->right.stmt);
mempool_free(&xm->read_interval_mempool, interval);
}
static struct vy_read_interval *
vy_tx_read_set_free_cb(vy_tx_read_set_t *read_set,
struct vy_read_interval *interval, void *arg)
{
(void)arg;
(void)read_set;
vy_lsm_read_set_remove(&interval->lsm->read_set, interval);
vy_read_interval_delete(interval);
return NULL;
}
void
vy_tx_create(struct tx_manager *xm, struct vy_tx *tx)
{
tx->last_stmt_space = NULL;
stailq_create(&tx->log);
write_set_new(&tx->write_set);
tx->write_set_version = 0;
tx->write_size = 0;
tx->xm = xm;
tx->state = VINYL_TX_READY;
tx->is_applier_session = false;
tx->read_view = (struct vy_read_view *)xm->p_global_read_view;
vy_tx_read_set_new(&tx->read_set);
tx->psn = 0;
rlist_create(&tx->on_destroy);
rlist_create(&tx->in_writers);
}
void
vy_tx_destroy(struct vy_tx *tx)
{
trigger_run(&tx->on_destroy, NULL);
trigger_destroy(&tx->on_destroy);
tx_manager_destroy_read_view(tx->xm, tx->read_view);
struct txv *v, *tmp;
stailq_foreach_entry_safe(v, tmp, &tx->log, next_in_log)
txv_delete(v);
vy_tx_read_set_iter(&tx->read_set, NULL, vy_tx_read_set_free_cb, NULL);
rlist_del_entry(tx, in_writers);
}
/** Mark a transaction as aborted and account it in stats. */
static void
vy_tx_abort(struct vy_tx *tx)
{
assert(tx->state == VINYL_TX_READY);
tx->state = VINYL_TX_ABORT;
tx->xm->stat.conflict++;
}
/** Return true if the transaction is read-only. */
static bool
vy_tx_is_ro(struct vy_tx *tx)
{
return write_set_empty(&tx->write_set);
}
/** Return true if the transaction is in read view. */
static bool
vy_tx_is_in_read_view(struct vy_tx *tx)
{
return tx->read_view->vlsn != INT64_MAX;
}
/**
* Send to read view all transactions that are reading key @v
* modified by transaction @tx.
*/
static int
vy_tx_send_to_read_view(struct vy_tx *tx, struct txv *v)
{
struct vy_tx_conflict_iterator it;
vy_tx_conflict_iterator_init(&it, &v->lsm->read_set, v->entry);
struct vy_tx *abort;
while ((abort = vy_tx_conflict_iterator_next(&it)) != NULL) {
/* Don't abort self. */
if (abort == tx)
continue;
/* Abort only active TXs */
if (abort->state != VINYL_TX_READY)
continue;
/* already in (earlier) read view */
if (vy_tx_is_in_read_view(abort))
continue;
struct vy_read_view *rv = tx_manager_read_view(tx->xm);
if (rv == NULL)
return -1;
abort->read_view = rv;
}
return 0;
}
/**
* Abort all transaction that are reading key @v modified
* by transaction @tx.
*/
static void
vy_tx_abort_readers(struct vy_tx *tx, struct txv *v)
{
struct vy_tx_conflict_iterator it;
vy_tx_conflict_iterator_init(&it, &v->lsm->read_set, v->entry);
struct vy_tx *abort;
while ((abort = vy_tx_conflict_iterator_next(&it)) != NULL) {
/* Don't abort self. */
if (abort == tx)
continue;
/* Abort only active TXs */
if (abort->state != VINYL_TX_READY)
continue;
vy_tx_abort(abort);
}
}
struct vy_tx *
vy_tx_begin(struct tx_manager *xm)
{
struct vy_tx *tx = mempool_alloc(&xm->tx_mempool);
if (unlikely(tx == NULL)) {
diag_set(OutOfMemory, sizeof(*tx), "mempool", "struct vy_tx");
return NULL;
}
vy_tx_create(xm, tx);
struct session *session = fiber_get_session(fiber());
if (session != NULL && session->type == SESSION_TYPE_APPLIER)
tx->is_applier_session = true;
return tx;
}
/**
* Rotate the active in-memory tree if necessary and pin it to make
* sure it is not dumped until the transaction is complete.
*/
static int
vy_tx_write_prepare(struct txv *v)
{
struct vy_lsm *lsm = v->lsm;
/*
* Allocate a new in-memory tree if either of the following
* conditions is true:
*
* - Generation has increased after the tree was created.
* In this case we need to dump the tree as is in order to
* guarantee dump consistency.
*
* - Schema state has increased after the tree was created.
* We have to seal the tree, because we don't support mixing
* statements of different formats in the same tree.
*/
if (unlikely(lsm->mem->space_cache_version != space_cache_version ||
lsm->mem->generation != *lsm->env->p_generation)) {
if (vy_lsm_rotate_mem(lsm) != 0)
return -1;
}
vy_mem_pin(lsm->mem);
v->mem = lsm->mem;
return 0;
}
/**
* Write a single statement into an LSM tree. If the statement has
* an lsregion copy then use it, else create it.
*
* @param lsm LSM tree to write to.
* @param mem In-memory tree to write to.
* @param entry Statement allocated with malloc().
* @param region_stmt NULL or the same statement as stmt,
* but allocated on lsregion.
*
* @retval 0 Success.
* @retval -1 Memory error.
*/
static int
vy_tx_write(struct vy_lsm *lsm, struct vy_mem *mem,
struct vy_entry entry, struct tuple **region_stmt)
{
assert(vy_stmt_is_refable(entry.stmt));
assert(*region_stmt == NULL || !vy_stmt_is_refable(*region_stmt));
/*
* The UPSERT statement can be applied to the cached
* statement, because the cache always contains only
* newest REPLACE statements. In such a case the UPSERT,
* applied to the cached statement, can be inserted
* instead of the original UPSERT.
*/
if (vy_stmt_type(entry.stmt) == IPROTO_UPSERT) {
struct vy_entry deleted = vy_entry_none();
/* Invalidate cache element. */
vy_cache_on_write(&lsm->cache, entry, &deleted);
if (deleted.stmt != NULL) {
struct vy_entry applied;
applied = vy_entry_apply_upsert(entry, deleted,
mem->cmp_def, false);
tuple_unref(deleted.stmt);
if (applied.stmt != NULL) {
enum iproto_type applied_type =
vy_stmt_type(applied.stmt);
assert(applied_type == IPROTO_REPLACE ||
applied_type == IPROTO_INSERT);
(void) applied_type;
int rc = vy_lsm_set(lsm, mem, applied,
region_stmt);
tuple_unref(applied.stmt);
return rc;
}
/*
* Ignore a memory error, because it is
* not critical to apply the optimization.
*/
}
} else {
/* Invalidate cache element. */
vy_cache_on_write(&lsm->cache, entry, NULL);
}
return vy_lsm_set(lsm, mem, entry, region_stmt);
}
/**
* Try to generate a deferred DELETE statement on tx commit.
*
* This function is supposed to be called for a primary index
* statement which was executed without deletion of the overwritten
* tuple from secondary indexes. It looks up the overwritten tuple
* in memory and, if found, produces the deferred DELETEs and
* inserts them into the transaction log.
*
* Generating DELETEs before committing a transaction rather than
* postponing it to dump isn't just an optimization. The point is
* that we can't generate deferred DELETEs during dump, because
* if we run out of memory, we won't be able to schedule another
* dump to free some.
*
* Affects @tx->log, @v->entry.
*
* Returns 0 on success, -1 on memory allocation error.
*/
static int
vy_tx_handle_deferred_delete(struct vy_tx *tx, struct txv *v)
{
struct vy_lsm *pk = v->lsm;
struct tuple *stmt = v->entry.stmt;
uint8_t flags = vy_stmt_flags(stmt);
assert(pk->index_id == 0);
assert(flags & VY_STMT_DEFERRED_DELETE);
struct space *space = space_cache_find(pk->space_id);
if (space == NULL) {
/*
* Space was dropped while transaction was
* in progress. Nothing to do.
*/
return 0;
}
/* Look up the tuple overwritten by this statement. */
struct vy_entry overwritten;
if (vy_point_lookup_mem(pk, &tx->xm->p_global_read_view,
v->entry, &overwritten) != 0)
return -1;
if (overwritten.stmt == NULL) {
/*
* Nothing's found, but there still may be
* matching statements stored on disk so we
* have to defer generation of DELETE until
* compaction.
*/
return 0;
}
/*
* If a terminal statement is found, we can produce
* DELETE right away so clear the flag now.
*/
vy_stmt_set_flags(stmt, flags & ~VY_STMT_DEFERRED_DELETE);
if (vy_stmt_type(overwritten.stmt) == IPROTO_DELETE) {
/* The tuple's already deleted, nothing to do. */
tuple_unref(overwritten.stmt);
return 0;
}
struct tuple *delete_stmt;
delete_stmt = vy_stmt_new_surrogate_delete(pk->mem_format,
overwritten.stmt);
tuple_unref(overwritten.stmt);
if (delete_stmt == NULL)
return -1;
if (vy_stmt_type(stmt) == IPROTO_DELETE) {
/*
* Since primary and secondary indexes of the
* same space share in-memory statements, we
* need to use the new DELETE in the primary
* index, because the original DELETE doesn't
* contain secondary key parts.
*/
tx->xm->write_set_size -= tuple_size(stmt);
tx->xm->write_set_size += tuple_size(delete_stmt);
vy_stmt_counter_acct_tuple(&pk->stat.txw.count, delete_stmt);
vy_stmt_counter_unacct_tuple(&pk->stat.txw.count, stmt);
v->entry.stmt = delete_stmt;
tuple_ref(delete_stmt);
tuple_unref(stmt);
}
/*
* Make DELETE statements for secondary indexes and
* insert them into the transaction log.
*/
int rc = 0;
for (uint32_t i = 1; i < space->index_count; i++) {
struct vy_lsm *lsm = vy_lsm(space->index[i]);
struct vy_entry entry;
vy_stmt_foreach_entry(entry, delete_stmt, lsm->cmp_def) {
struct txv *other = write_set_search_key(&tx->write_set,
lsm, entry);
if (other != NULL && !other->is_overwritten) {
/*
* The write set contains a statement
* for the key to be deleted. This can
* only occur if it's a REPLACE that
* happens not to update the secondary
* index key parts. It's safe to skip it,
* see vy_tx_set_entry().
*/
assert(vy_stmt_type(stmt) == IPROTO_REPLACE);
assert(vy_stmt_type(other->entry.stmt) ==
IPROTO_REPLACE);
other->is_nop = true;
continue;
}
struct txv *delete_txv = txv_new(tx, lsm, entry);
if (delete_txv == NULL) {
rc = -1;
break;
}
stailq_insert_entry(&tx->log, delete_txv, v,
next_in_log);
}
if (rc != 0)
break;
}
tuple_unref(delete_stmt);
return rc;
}
int
vy_tx_prepare(struct vy_tx *tx)
{
struct tx_manager *xm = tx->xm;
if (tx->state == VINYL_TX_ABORT) {
/* Conflict is already accounted - see vy_tx_abort(). */
diag_set(ClientError, ER_TRANSACTION_CONFLICT);
return -1;
}
assert(tx->state == VINYL_TX_READY);
if (vy_tx_is_ro(tx)) {
tx->state = VINYL_TX_COMMIT;
return 0;
}
if (vy_tx_is_in_read_view(tx)) {
xm->stat.conflict++;
diag_set(ClientError, ER_TRANSACTION_CONFLICT);
return -1;
}
assert(tx->state == VINYL_TX_READY);
tx->state = VINYL_TX_COMMIT;
assert(tx->read_view == &xm->global_read_view);
tx->psn = ++xm->psn;
/** Send to read view read/write intersection. */
struct txv *v;
struct write_set_iterator it;
write_set_ifirst(&tx->write_set, &it);
while ((v = write_set_inext(&it)) != NULL) {
if (vy_tx_send_to_read_view(tx, v))
return -1;
}
/*
* Flush transactional changes to the LSM tree.
* Sic: the loop below must not yield after recovery.
*/
/* repsert - REPLACE/UPSERT */
struct tuple *delete = NULL, *repsert = NULL;
MAYBE_UNUSED uint32_t current_space_id = 0;
stailq_foreach_entry(v, &tx->log, next_in_log) {
struct vy_lsm *lsm = v->lsm;
if (lsm->index_id == 0) {
/* The beginning of the new txn_stmt is met. */
current_space_id = lsm->space_id;
repsert = NULL;
delete = NULL;
}
assert(lsm->space_id == current_space_id);
if (lsm->index_id > 0 && repsert == NULL && delete == NULL) {
/*
* This statement is for a secondary index,
* and the statement corresponding to it in
* the primary index was overwritten. This
* can only happen if insertion of DELETE
* into secondary indexes was postponed until
* primary index compaction. In this case
* the DELETE will not be generated, because
* the corresponding statement never made it
* to the primary index LSM tree. So we must
* skip it for secondary indexes as well.
*/
v->is_overwritten = true;
}
/* Do not save statements that was overwritten by the same tx */
if (v->is_overwritten || v->is_nop)
continue;
enum iproto_type type = vy_stmt_type(v->entry.stmt);
/* Optimize out INSERT + DELETE for the same key. */
if (v->is_first_insert && type == IPROTO_DELETE)
continue;
if (v->is_first_insert && type == IPROTO_REPLACE) {
/*
* There is no committed statement for the
* given key or the last statement is DELETE
* so we can turn REPLACE into INSERT.
*/
type = IPROTO_INSERT;
vy_stmt_set_type(v->entry.stmt, type);
/*
* In case of INSERT, no statement was actually
* overwritten so no need to generate a deferred
* DELETE for secondary indexes.
*/
uint8_t flags = vy_stmt_flags(v->entry.stmt);
if (flags & VY_STMT_DEFERRED_DELETE) {
vy_stmt_set_flags(v->entry.stmt, flags &
~VY_STMT_DEFERRED_DELETE);
}
}
if (!v->is_first_insert && type == IPROTO_INSERT) {
/*
* INSERT following REPLACE means nothing,
* turn it into REPLACE.
*/
type = IPROTO_REPLACE;
vy_stmt_set_type(v->entry.stmt, type);
}
if (vy_tx_write_prepare(v) != 0)
return -1;
assert(v->mem != NULL);
if (lsm->index_id == 0 &&
vy_stmt_flags(v->entry.stmt) & VY_STMT_DEFERRED_DELETE &&
vy_tx_handle_deferred_delete(tx, v) != 0)
return -1;
/* In secondary indexes only REPLACE/DELETE can be written. */
vy_stmt_set_lsn(v->entry.stmt, MAX_LSN + tx->psn);
struct tuple **region_stmt =
(type == IPROTO_DELETE) ? &delete : &repsert;
if (vy_tx_write(lsm, v->mem, v->entry, region_stmt) != 0)
return -1;
v->region_stmt = *region_stmt;
}
xm->last_prepared_tx = tx;
return 0;
}
void
vy_tx_commit(struct vy_tx *tx, int64_t lsn)
{
assert(tx->state == VINYL_TX_COMMIT);
struct tx_manager *xm = tx->xm;
xm->stat.commit++;
if (xm->last_prepared_tx == tx)
xm->last_prepared_tx = NULL;
if (vy_tx_is_ro(tx))
goto out;
assert(xm->lsn <= lsn);
xm->lsn = lsn;
/* Fix LSNs of the records and commit changes. */
struct txv *v;
stailq_foreach_entry(v, &tx->log, next_in_log) {
if (v->region_stmt != NULL) {
struct vy_entry entry;
entry.stmt = v->region_stmt;
entry.hint = v->entry.hint;
vy_stmt_set_lsn(v->region_stmt, lsn);
vy_lsm_commit_stmt(v->lsm, v->mem, entry);
}
if (v->mem != NULL)
vy_mem_unpin(v->mem);
}
/* Update read views of dependant transactions. */
if (tx->read_view != &xm->global_read_view)
tx->read_view->vlsn = lsn;
out:
vy_tx_destroy(tx);
mempool_free(&xm->tx_mempool, tx);
}
static void
vy_tx_rollback_after_prepare(struct vy_tx *tx)
{
assert(tx->state == VINYL_TX_COMMIT);
struct tx_manager *xm = tx->xm;
/*
* There are two reasons of rollback_after_prepare:
* 1) Fail in the middle of vy_tx_prepare call.
* 2) Cascading rollback after WAL fail.
*
* If a TX is the latest prepared TX and the it is rollbacked,
* it's certainly the case (2) and we should set xm->last_prepared_tx
* to the previous prepared TX, if any.
* But doesn't know the previous TX.
* On the other hand we may expect that cascading rollback will
* concern all the prepared TXs, all of them will be rollbacked
* and xm->last_prepared_tx must be set to NULL in the end.
* Thus we can set xm->last_prepared_tx to NULL now and it will be
* correct in the end of the cascading rollback.
*
* We must not change xm->last_prepared_tx in all other cases,
* it will be changed by the corresponding TX.
*/
if (xm->last_prepared_tx == tx)
xm->last_prepared_tx = NULL;
struct txv *v;
stailq_foreach_entry(v, &tx->log, next_in_log) {
if (v->region_stmt != NULL) {
struct vy_entry entry;
entry.stmt = v->region_stmt;
entry.hint = v->entry.hint;
vy_lsm_rollback_stmt(v->lsm, v->mem, entry);
}
if (v->mem != NULL)
vy_mem_unpin(v->mem);
}
struct write_set_iterator it;
write_set_ifirst(&tx->write_set, &it);
while ((v = write_set_inext(&it)) != NULL) {
vy_tx_abort_readers(tx, v);
}
}
void
vy_tx_rollback(struct vy_tx *tx)
{
struct tx_manager *xm = tx->xm;
xm->stat.rollback++;
if (tx->state == VINYL_TX_COMMIT)
vy_tx_rollback_after_prepare(tx);
vy_tx_destroy(tx);
mempool_free(&xm->tx_mempool, tx);
}
int
vy_tx_begin_statement(struct vy_tx *tx, struct space *space, void **savepoint)
{
if (tx->state == VINYL_TX_ABORT) {
diag_set(ClientError, ER_TRANSACTION_CONFLICT);
return -1;
}
assert(tx->state == VINYL_TX_READY);
tx->last_stmt_space = space;
if (stailq_empty(&tx->log))
rlist_add_entry(&tx->xm->writers, tx, in_writers);
*savepoint = stailq_last(&tx->log);
return 0;
}
void
vy_tx_rollback_statement(struct vy_tx *tx, void *svp)
{
if (tx->state == VINYL_TX_ABORT ||
tx->state == VINYL_TX_COMMIT)
return;
assert(tx->state == VINYL_TX_READY);
struct stailq_entry *last = svp;
struct stailq tail;
stailq_cut_tail(&tx->log, last, &tail);
/* Rollback statements in LIFO order. */
stailq_reverse(&tail);
struct txv *v, *tmp;
stailq_foreach_entry_safe(v, tmp, &tail, next_in_log) {
write_set_remove(&tx->write_set, v);
if (v->overwritten != NULL) {
/* Restore overwritten statement. */
write_set_insert(&tx->write_set, v->overwritten);
v->overwritten->is_overwritten = false;
}
tx->write_set_version++;
txv_delete(v);
}
if (stailq_empty(&tx->log))
rlist_del_entry(tx, in_writers);
tx->last_stmt_space = NULL;
}
int
vy_tx_track(struct vy_tx *tx, struct vy_lsm *lsm,
struct vy_entry left, bool left_belongs,
struct vy_entry right, bool right_belongs)
{
if (vy_tx_is_in_read_view(tx)) {
/* No point in tracking reads. */
return 0;
}
struct vy_read_interval *new_interval;
new_interval = vy_read_interval_new(tx, lsm, left, left_belongs,
right, right_belongs);
if (new_interval == NULL)
return -1;
/*
* Search for intersections in the transaction read set.
*/
struct stailq merge;
stailq_create(&merge);
struct vy_tx_read_set_iterator it;
vy_tx_read_set_isearch_le(&tx->read_set, new_interval, &it);
struct vy_read_interval *interval;
interval = vy_tx_read_set_inext(&it);
if (interval != NULL && interval->lsm == lsm) {
if (vy_read_interval_cmpr(interval, new_interval) >= 0) {
/*
* There is an interval in the tree spanning
* the new interval. Nothing to do.
*/
vy_read_interval_delete(new_interval);
return 0;
}
if (vy_read_interval_should_merge(interval, new_interval))
stailq_add_tail_entry(&merge, interval, in_merge);
}
if (interval == NULL)
vy_tx_read_set_isearch_gt(&tx->read_set, new_interval, &it);
while ((interval = vy_tx_read_set_inext(&it)) != NULL &&
interval->lsm == lsm &&
vy_read_interval_should_merge(new_interval, interval))
stailq_add_tail_entry(&merge, interval, in_merge);
/*
* Merge intersecting intervals with the new interval and
* remove them from the transaction and LSM tree read sets.
*/
if (!stailq_empty(&merge)) {
vy_read_interval_unacct(new_interval);
interval = stailq_first_entry(&merge, struct vy_read_interval,
in_merge);
if (vy_read_interval_cmpl(new_interval, interval) > 0) {
tuple_ref(interval->left.stmt);
tuple_unref(new_interval->left.stmt);
new_interval->left = interval->left;
new_interval->left_belongs = interval->left_belongs;
}
interval = stailq_last_entry(&merge, struct vy_read_interval,
in_merge);
if (vy_read_interval_cmpr(new_interval, interval) < 0) {
tuple_ref(interval->right.stmt);
tuple_unref(new_interval->right.stmt);
new_interval->right = interval->right;
new_interval->right_belongs = interval->right_belongs;
}
struct vy_read_interval *next_interval;
stailq_foreach_entry_safe(interval, next_interval, &merge,
in_merge) {
vy_tx_read_set_remove(&tx->read_set, interval);
vy_lsm_read_set_remove(&lsm->read_set, interval);
vy_read_interval_delete(interval);
}
vy_read_interval_acct(new_interval);
}
vy_tx_read_set_insert(&tx->read_set, new_interval);
vy_lsm_read_set_insert(&lsm->read_set, new_interval);
return 0;
}
int
vy_tx_track_point(struct vy_tx *tx, struct vy_lsm *lsm, struct vy_entry entry)
{
assert(vy_stmt_is_full_key(entry.stmt, lsm->cmp_def));
if (vy_tx_is_in_read_view(tx)) {
/* No point in tracking reads. */
return 0;
}
struct txv *v = write_set_search_key(&tx->write_set, lsm, entry);
if (v != NULL && vy_stmt_type(v->entry.stmt) != IPROTO_UPSERT) {
/* Reading from own write set is serializable. */
return 0;
}
return vy_tx_track(tx, lsm, entry, true, entry, true);
}
/**
* Add one statement entry to a transaction. We add one entry
* for each index, and with multikey indexes it is possible there
* are multiple entries of a single statement in a single index.
*/
static int
vy_tx_set_entry(struct vy_tx *tx, struct vy_lsm *lsm, struct vy_entry entry)
{
assert(vy_stmt_type(entry.stmt) != 0);
/**
* A statement in write set must have and unique lsn
* in order to differ it from cachable statements in mem and run.
*/
vy_stmt_set_lsn(entry.stmt, INT64_MAX);
struct vy_entry applied = vy_entry_none();
struct txv *old = write_set_search_key(&tx->write_set, lsm, entry);
/* Found a match of the previous action of this transaction */
if (old != NULL && vy_stmt_type(entry.stmt) == IPROTO_UPSERT) {
assert(lsm->index_id == 0);
uint8_t old_type = vy_stmt_type(old->entry.stmt);
assert(old_type == IPROTO_UPSERT ||
old_type == IPROTO_INSERT ||
old_type == IPROTO_REPLACE ||
old_type == IPROTO_DELETE);
(void) old_type;
applied = vy_entry_apply_upsert(entry, old->entry,
lsm->cmp_def, true);
lsm->stat.upsert.applied++;
if (applied.stmt == NULL)
return -1;
entry = applied;
assert(vy_stmt_type(entry.stmt) != 0);
lsm->stat.upsert.squashed++;
}
/* Allocate a MVCC container. */
struct txv *v = txv_new(tx, lsm, entry);
if (applied.stmt != NULL)
tuple_unref(applied.stmt);
if (v == NULL)
return -1;
if (old != NULL) {
/* Leave the old txv in TX log but remove it from write set */
assert(tx->write_size >= tuple_size(old->entry.stmt));
tx->write_size -= tuple_size(old->entry.stmt);
write_set_remove(&tx->write_set, old);
old->is_overwritten = true;
v->is_first_insert = old->is_first_insert;
/*
* Inherit VY_STMT_DEFERRED_DELETE flag from the older
* statement so as to generate a DELETE for the tuple
* overwritten by this transaction.
*/
if (vy_stmt_flags(old->entry.stmt) & VY_STMT_DEFERRED_DELETE) {
uint8_t flags = vy_stmt_flags(entry.stmt);
vy_stmt_set_flags(entry.stmt, flags |
VY_STMT_DEFERRED_DELETE);
}
}
if (old == NULL && vy_stmt_type(entry.stmt) == IPROTO_INSERT)
v->is_first_insert = true;
if (lsm->index_id > 0 && old != NULL && !old->is_nop) {
/*
* In a secondary index write set, DELETE statement purges
* exactly one older statement so REPLACE + DELETE is no-op.
* Moreover, DELETE + REPLACE can be treated as no-op, too,
* because secondary indexes don't store full tuples hence
* all REPLACE statements for the same key are equivalent.
* Therefore we can zap DELETE + REPLACE as there must be
* an older REPLACE for the same key stored somewhere in the
* index data.
*/
enum iproto_type type = vy_stmt_type(entry.stmt);
enum iproto_type old_type = vy_stmt_type(old->entry.stmt);
if ((type == IPROTO_DELETE) != (old_type == IPROTO_DELETE))
v->is_nop = true;
}
v->overwritten = old;
write_set_insert(&tx->write_set, v);
tx->write_set_version++;
tx->write_size += tuple_size(entry.stmt);
stailq_add_tail_entry(&tx->log, v, next_in_log);
return 0;
}
int
vy_tx_set(struct vy_tx *tx, struct vy_lsm *lsm, struct tuple *stmt)
{
struct vy_entry entry;
vy_stmt_foreach_entry(entry, stmt, lsm->cmp_def) {
if (vy_tx_set_entry(tx, lsm, entry) != 0)
return -1;
}
return 0;
}
void
tx_manager_abort_writers_for_ddl(struct tx_manager *xm, struct space *space,
bool *need_wal_sync)
{
*need_wal_sync = false;
if (space->index_count == 0)
return; /* no indexes, no conflicts */
struct vy_lsm *lsm = vy_lsm(space->index[0]);
struct vy_tx *tx;
rlist_foreach_entry(tx, &xm->writers, in_writers) {
/*
* We can't abort prepared transactions as they have
* already reached WAL. The caller needs to sync WAL
* to make sure they are gone.
*/
if (tx->state == VINYL_TX_COMMIT)
*need_wal_sync = true;
if (tx->state != VINYL_TX_READY)
continue;
if (tx->last_stmt_space == space ||
write_set_search_key(&tx->write_set, lsm,
lsm->env->empty_key) != NULL)
vy_tx_abort(tx);
}
}
void
tx_manager_abort_writers_for_ro(struct tx_manager *xm)
{
struct vy_tx *tx;
rlist_foreach_entry(tx, &xm->writers, in_writers) {
/* Applier ignores ro flag. */
if (tx->state == VINYL_TX_READY && !tx->is_applier_session)
vy_tx_abort(tx);
}
}
void
vy_txw_iterator_open(struct vy_txw_iterator *itr,
struct vy_txw_iterator_stat *stat,
struct vy_tx *tx, struct vy_lsm *lsm,
enum iterator_type iterator_type, struct vy_entry key)
{
itr->stat = stat;
itr->tx = tx;
itr->lsm = lsm;
itr->iterator_type = iterator_type;
itr->key = key;
itr->version = UINT32_MAX;
itr->curr_txv = NULL;
itr->search_started = false;
}
/**
* Position the iterator to the first entry in the transaction
* write set satisfying the search criteria and following the
* given key (pass NULL to start iteration).
*/
static void
vy_txw_iterator_seek(struct vy_txw_iterator *itr, struct vy_entry last)
{
itr->stat->lookup++;
itr->version = itr->tx->write_set_version;
itr->curr_txv = NULL;
struct vy_entry key = itr->key;
enum iterator_type iterator_type = itr->iterator_type;
if (last.stmt != NULL) {
key = last;
iterator_type = iterator_direction(iterator_type) > 0 ?
ITER_GT : ITER_LT;
}
struct vy_lsm *lsm = itr->lsm;
struct write_set_key k = { lsm, key };
struct txv *txv;
if (!vy_stmt_is_empty_key(key.stmt)) {
if (iterator_type == ITER_EQ)
txv = write_set_search(&itr->tx->write_set, &k);
else if (iterator_type == ITER_GE || iterator_type == ITER_GT)
txv = write_set_nsearch(&itr->tx->write_set, &k);
else
txv = write_set_psearch(&itr->tx->write_set, &k);
if (txv == NULL || txv->lsm != lsm)
return;
if (vy_entry_compare(key, txv->entry, lsm->cmp_def) == 0) {
while (true) {
struct txv *next;
if (iterator_type == ITER_LE ||
iterator_type == ITER_GT)
next = write_set_next(&itr->tx->write_set, txv);
else
next = write_set_prev(&itr->tx->write_set, txv);
if (next == NULL || next->lsm != lsm)
break;
if (vy_entry_compare(key, next->entry,
lsm->cmp_def) != 0)
break;
txv = next;
}
if (iterator_type == ITER_GT)
txv = write_set_next(&itr->tx->write_set, txv);
else if (iterator_type == ITER_LT)
txv = write_set_prev(&itr->tx->write_set, txv);
}
} else if (iterator_type == ITER_LE) {
txv = write_set_nsearch(&itr->tx->write_set, &k);
} else {
assert(iterator_type == ITER_GE);
txv = write_set_psearch(&itr->tx->write_set, &k);
}
if (txv == NULL || txv->lsm != lsm)
return;
if (itr->iterator_type == ITER_EQ && last.stmt != NULL &&
vy_entry_compare(itr->key, txv->entry, lsm->cmp_def) != 0)
return;
itr->curr_txv = txv;
}
NODISCARD int
vy_txw_iterator_next(struct vy_txw_iterator *itr,
struct vy_history *history)
{
vy_history_cleanup(history);
if (!itr->search_started) {
itr->search_started = true;
vy_txw_iterator_seek(itr, vy_entry_none());
goto out;
}
assert(itr->version == itr->tx->write_set_version);
if (itr->curr_txv == NULL)
return 0;
if (itr->iterator_type == ITER_LE || itr->iterator_type == ITER_LT)
itr->curr_txv = write_set_prev(&itr->tx->write_set, itr->curr_txv);
else
itr->curr_txv = write_set_next(&itr->tx->write_set, itr->curr_txv);
if (itr->curr_txv != NULL && itr->curr_txv->lsm != itr->lsm)
itr->curr_txv = NULL;
if (itr->curr_txv != NULL && itr->iterator_type == ITER_EQ &&
vy_entry_compare(itr->key, itr->curr_txv->entry,
itr->lsm->cmp_def) != 0)
itr->curr_txv = NULL;
out:
if (itr->curr_txv != NULL) {
vy_stmt_counter_acct_tuple(&itr->stat->get,
itr->curr_txv->entry.stmt);
return vy_history_append_stmt(history, itr->curr_txv->entry);
}
return 0;
}
NODISCARD int
vy_txw_iterator_skip(struct vy_txw_iterator *itr, struct vy_entry last,
struct vy_history *history)
{
assert(!itr->search_started ||
itr->version == itr->tx->write_set_version);
/*
* Check if the iterator is already positioned
* at the statement following last.
*/
if (itr->search_started &&
(itr->curr_txv == NULL || last.stmt == NULL ||
iterator_direction(itr->iterator_type) *
vy_entry_compare(itr->curr_txv->entry, last,
itr->lsm->cmp_def) > 0))
return 0;
vy_history_cleanup(history);
itr->search_started = true;
vy_txw_iterator_seek(itr, last);
if (itr->curr_txv != NULL) {
vy_stmt_counter_acct_tuple(&itr->stat->get,
itr->curr_txv->entry.stmt);
return vy_history_append_stmt(history, itr->curr_txv->entry);
}
return 0;
}
NODISCARD int
vy_txw_iterator_restore(struct vy_txw_iterator *itr, struct vy_entry last,
struct vy_history *history)
{
if (!itr->search_started || itr->version == itr->tx->write_set_version)
return 0;
vy_txw_iterator_seek(itr, last);
vy_history_cleanup(history);
if (itr->curr_txv != NULL) {
vy_stmt_counter_acct_tuple(&itr->stat->get,
itr->curr_txv->entry.stmt);
if (vy_history_append_stmt(history, itr->curr_txv->entry) != 0)
return -1;
}
return 1;
}
/**
* Close a txw iterator.
*/
void
vy_txw_iterator_close(struct vy_txw_iterator *itr)
{
(void)itr; /* suppress warn if NDEBUG */
TRASH(itr);
}
|