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
|
#ifndef INCLUDES_TARANTOOL_BOX_VY_RUN_H
#define INCLUDES_TARANTOOL_BOX_VY_RUN_H
/*
* 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 <stdint.h>
#include <stdbool.h>
#include "fiber_cond.h"
#include "iterator_type.h"
#include "vy_entry.h"
#include "vy_stmt_stream.h"
#include "vy_read_view.h"
#include "vy_stat.h"
#include "index_def.h"
#include "xlog.h"
#include "small/mempool.h"
#if defined(__cplusplus)
extern "C" {
#endif /* defined(__cplusplus) */
struct vy_history;
struct vy_run_reader;
/** Part of vinyl environment for run read/write */
struct vy_run_env {
/** Write rate limit, in bytes per second. */
uint64_t snap_io_rate_limit;
/** Mempool for struct vy_page_read_task */
struct mempool read_task_pool;
/** Key for thread-local ZSTD context */
pthread_key_t zdctx_key;
/** Pool of threads used for reading run files. */
struct vy_run_reader *reader_pool;
/** Number of threads in the reader pool. */
int reader_pool_size;
/**
* Index of the reader thread in the pool to be used for
* processing the next read request.
*/
int next_reader;
};
/**
* Run metadata. Is a written to a file as a single chunk.
*/
struct vy_run_info {
/** Min key in the run. */
char *min_key;
/** Max key in the run. */
char *max_key;
/** Min LSN over all statements in the run. */
int64_t min_lsn;
/** Max LSN over all statements in the run. */
int64_t max_lsn;
/** Number of pages in the run. */
uint32_t page_count;
/** Bloom filter of all tuples in run */
struct tuple_bloom *bloom;
/** Statement statistics. */
struct vy_stmt_stat stmt_stat;
};
/**
* Run page metadata. Is a written to a file as a single chunk.
*/
struct vy_page_info {
/** Offset of page data in the run file. */
uint64_t offset;
/** Size of page data in the run file. */
uint32_t size;
/** Size of page data in memory, i.e. unpacked. */
uint32_t unpacked_size;
/** Number of statements in the page. */
uint32_t row_count;
/** Minimal key stored in the page. */
char *min_key;
/** Comparison hint of the min key. */
hint_t min_key_hint;
/** Offset of the row index in the page. */
uint32_t row_index_offset;
};
/**
* Logical unit of vinyl index - a sorted file with data.
*/
struct vy_run {
/** Vinyl run environment. */
struct vy_run_env *env;
/** Info about the run stored in the index file. */
struct vy_run_info info;
/** Info about the run pages stored in the index file. */
struct vy_page_info *page_info;
/** Run data file. */
int fd;
/** Unique ID of this run. */
int64_t id;
/** Number of statements in this run. */
struct vy_disk_stmt_counter count;
/** Size of memory used for storing page index. */
size_t page_index_size;
/** Max LSN stored on disk. */
int64_t dump_lsn;
/**
* Number of dumps it took to create this run.
*
* If the run was produced by a memory dump, it is 1.
* If the run was produced by a minor compaction, it
* is is the sum of dump counts of compacted runs.
* If the run was produced by a major compaction, it
* is is the sum of dump counts of compacted runs
* minus the dump count of the last (greatest) run.
*
* This way, by looking at the last level run in an LSM
* tree, we can tell how many dumps it took to compact
* it last time.
*/
uint32_t dump_count;
/**
* Run reference counter, the run is deleted once it hits 0.
* A new run is created with the reference counter set to 1.
* A run is referenced by each slice created for it and each
* pending read or write task.
*/
int refs;
/** Number of slices created for this run. */
int slice_count;
/**
* Counter used on completion of a compaction task to check if
* all slices of the run have been compacted and so the run is
* not used any more and should be deleted.
*/
int compacted_slice_count;
/**
* Link in the list of runs that became unused
* after compaction.
*/
struct rlist in_unused;
/** Link in vy_lsm::runs list. */
struct rlist in_lsm;
};
/**
* Slice of a run, used to organize runs in ranges.
*/
struct vy_slice {
/** Unique ID of this slice. */
int64_t id;
/** Run this slice is for (increments vy_run::refs). */
struct vy_run *run;
/**
* Slice begin and end (increments tuple::refs).
* If @begin is NULL, the slice starts from the beginning
* of the run. If @end is NULL, the slice ends at the end
* of the run.
*/
struct vy_entry begin;
struct vy_entry end;
/**
* Random seed used for compaction randomization.
* Lays in range [0, RAND_MAX].
*/
int seed;
/**
* Number of async users of this slice. Slice must not
* be removed until it hits 0. Used by the iterator to
* prevent use-after-free after waiting for IO.
* See also vy_run_wait_pinned().
*/
int pin_count;
/**
* Condition variable signaled by vy_slice_unpin()
* if pin_count reaches 0.
*/
struct fiber_cond pin_cond;
union {
/** Link in range->slices list. */
struct rlist in_range;
/** Link in vy_join_ctx->slices list. */
struct rlist in_join;
};
/**
* Indexes of the first and the last page in the run
* that belong to this slice.
*/
uint32_t first_page_no;
uint32_t last_page_no;
/** An estimate of the number of statements in this slice. */
struct vy_disk_stmt_counter count;
};
/** Position of a particular stmt in vy_run. */
struct vy_run_iterator_pos {
uint32_t page_no;
uint32_t pos_in_page;
};
/**
* Return statements from vy_run based on initial search key,
* iteration order and view lsn.
*
* All statements with lsn > vlsn are skipped.
* The API allows to traverse over resulting statements within two
* dimensions - key and lsn. next_key() switches to the youngest
* statement of the next key, according to the iteration order,
* and next_lsn() switches to an older statement for the same
* key.
*/
struct vy_run_iterator {
/** Usage statistics */
struct vy_run_iterator_stat *stat;
/* Members needed for memory allocation and disk access */
/** Key definition used for comparing statements on disk. */
struct key_def *cmp_def;
/** Key definition provided by the user. */
struct key_def *key_def;
/**
* Format ot allocate REPLACE and DELETE tuples read from
* pages.
*/
struct tuple_format *format;
/** The run slice to iterate. */
struct vy_slice *slice;
/* Search options */
/**
* Iterator type, that specifies direction, start position and stop
* criteria if the key is not specified, GT and EQ are changed to
* GE, LT to LE for beauty.
*/
enum iterator_type iterator_type;
/** Key to search. */
struct vy_entry key;
/* LSN visibility, iterator shows values with lsn <= vlsn */
const struct vy_read_view **read_view;
/* State of the iterator */
/** Position of the current record */
struct vy_run_iterator_pos curr_pos;
/** Statement at curr_pos. */
struct vy_entry curr;
/**
* Last two pages read by the iterator. We keep two pages
* rather than just one, because we often probe a page for
* a better match. Keeping the previous page makes sure we
* won't throw out the current page if probing fails to
* find a better match.
*/
struct vy_page *curr_page;
struct vy_page *prev_page;
/** Is false until first .._get or .._next_.. method is called */
bool search_started;
};
/**
* Vinyl page stored in memory.
*/
struct vy_page {
/** Page position in the run file. */
uint32_t page_no;
/** Size of page data in memory, i.e. unpacked. */
uint32_t unpacked_size;
/** Number of statements in the page. */
uint32_t row_count;
/** Array of row offsets. */
uint32_t *row_index;
/** Pointer to the page data. */
char *data;
};
/**
* Initialize vinyl run environment
*
* @param read_threads - max number of background threads to
* use for disk reads; note background threads are not used
* until vy_run_env_enable_coio() is called.
*/
void
vy_run_env_create(struct vy_run_env *env, int read_threads);
/**
* Destroy vinyl run environment
*/
void
vy_run_env_destroy(struct vy_run_env *env);
/**
* Enable coio reads for a vinyl run environment.
*
* This function starts background reader threads and makes
* the run iterator hand disk reads over to them rather
* than read run files directly blocking the current fiber.
*
* The number of background reader threads is configured when
* the environment is created, see vy_run_env_create().
*
* Subsequent calls to this function will silently return.
*/
void
vy_run_env_enable_coio(struct vy_run_env *env);
/**
* Return the size of a run bloom filter.
*/
size_t
vy_run_bloom_size(struct vy_run *run);
static inline struct vy_page_info *
vy_run_page_info(struct vy_run *run, uint32_t pos)
{
assert(pos < run->info.page_count);
return &run->page_info[pos];
}
static inline bool
vy_run_is_empty(struct vy_run *run)
{
return run->info.page_count == 0;
}
struct vy_run *
vy_run_new(struct vy_run_env *env, int64_t id);
void
vy_run_delete(struct vy_run *run);
static inline void
vy_run_ref(struct vy_run *run)
{
assert(run->refs > 0);
run->refs++;
}
static inline void
vy_run_unref(struct vy_run *run)
{
assert(run->refs > 0);
if (--run->refs == 0)
vy_run_delete(run);
}
/**
* Load run from disk
* @param run - run to laod
* @param dir - path to the vinyl directory
* @param space_id - space id
* @param iid - index id
* @param cmp_def - definition of keys stored in the run
* @return - 0 on sucess, -1 on fail
*/
int
vy_run_recover(struct vy_run *run, const char *dir,
uint32_t space_id, uint32_t iid, struct key_def *cmp_def);
/**
* Rebuild run index
* @param run - run to rebuild index for
* @param dir - path to the vinyl directory
* @param space_id - space id
* @param iid - index id
* @param cmp_def - key definition with primary key parts
* @param key_def - user defined key definition
* @param format - format for allocating tuples read from disk
* @param opts - index options
* @return - 0 on sucess, -1 on fail
*/
int
vy_run_rebuild_index(struct vy_run *run, const char *dir,
uint32_t space_id, uint32_t iid,
struct key_def *cmp_def, struct key_def *key_def,
struct tuple_format *format,
const struct index_opts *opts);
enum vy_file_type {
VY_FILE_INDEX,
VY_FILE_INDEX_INPROGRESS,
VY_FILE_RUN,
VY_FILE_RUN_INPROGRESS,
vy_file_MAX,
};
extern const char *vy_file_suffix[];
static inline int
vy_lsm_snprint_path(char *buf, int size, const char *dir,
uint32_t space_id, uint32_t iid)
{
return snprintf(buf, size, "%s/%u/%u",
dir, (unsigned)space_id, (unsigned)iid);
}
static inline int
vy_run_snprint_filename(char *buf, int size, int64_t run_id,
enum vy_file_type type)
{
return snprintf(buf, size, "%020lld.%s",
(long long)run_id, vy_file_suffix[type]);
}
static inline int
vy_run_snprint_path(char *buf, int size, const char *dir,
uint32_t space_id, uint32_t iid,
int64_t run_id, enum vy_file_type type)
{
int total = 0;
SNPRINT(total, vy_lsm_snprint_path, buf, size,
dir, (unsigned)space_id, (unsigned)iid);
SNPRINT(total, snprintf, buf, size, "/");
SNPRINT(total, vy_run_snprint_filename, buf, size, run_id, type);
return total;
}
/**
* Remove all files (data, index) corresponding to a run
* with the given id. Return 0 on success, -1 if unlink()
* failed.
*/
int
vy_run_remove_files(const char *dir, uint32_t space_id,
uint32_t iid, int64_t run_id);
/**
* Allocate a new run slice.
* This function increments @run->refs.
*/
struct vy_slice *
vy_slice_new(int64_t id, struct vy_run *run, struct vy_entry begin,
struct vy_entry end, struct key_def *cmp_def);
/**
* Free a run slice.
* This function decrements @run->refs and
* deletes the run if the counter hits 0.
*/
void
vy_slice_delete(struct vy_slice *slice);
/**
* Pin a run slice.
* A pinned slice can't be deleted until it's unpinned.
*/
static inline void
vy_slice_pin(struct vy_slice *slice)
{
slice->pin_count++;
}
/*
* Unpin a run slice.
* This function reverts the effect of vy_slice_pin().
*/
static inline void
vy_slice_unpin(struct vy_slice *slice)
{
assert(slice->pin_count > 0);
if (--slice->pin_count == 0)
fiber_cond_broadcast(&slice->pin_cond);
}
/**
* Wait until a run slice is unpinned.
*/
static inline void
vy_slice_wait_pinned(struct vy_slice *slice)
{
while (slice->pin_count > 0)
fiber_cond_wait(&slice->pin_cond);
}
/**
* Cut a sub-slice of @slice starting at @begin and ending at @end.
* Return 0 on success, -1 on OOM.
*
* The new slice is returned in @result. If @slice does not intersect
* with [@begin, @end), @result is set to NULL.
*/
int
vy_slice_cut(struct vy_slice *slice, int64_t id, struct vy_entry begin,
struct vy_entry end, struct key_def *cmp_def,
struct vy_slice **result);
/**
* Open an iterator over on-disk run.
*
* Note, it is the caller's responsibility to make sure the slice
* is not compacted while the iterator is reading it.
*/
void
vy_run_iterator_open(struct vy_run_iterator *itr,
struct vy_run_iterator_stat *stat,
struct vy_slice *slice, enum iterator_type iterator_type,
struct vy_entry key, const struct vy_read_view **rv,
struct key_def *cmp_def, struct key_def *key_def,
struct tuple_format *format);
/**
* Advance a run iterator to the next key.
* The key history is returned in @history (empty if EOF).
* Returns 0 on success, -1 on memory allocation or IO error.
*/
NODISCARD int
vy_run_iterator_next(struct vy_run_iterator *itr,
struct vy_history *history);
/**
* Advance a run iterator to the key following @last.
* The key history is returned in @history (empty if EOF).
* Returns 0 on success, -1 on memory allocation or IO error.
*/
NODISCARD int
vy_run_iterator_skip(struct vy_run_iterator *itr, struct vy_entry last,
struct vy_history *history);
/**
* Close a run iterator.
*/
void
vy_run_iterator_close(struct vy_run_iterator *itr);
/**
* Simple stream over a slice. @see vy_stmt_stream.
*/
struct vy_slice_stream {
/** Parent class, must be the first member */
struct vy_stmt_stream base;
/** Current position */
uint32_t page_no;
uint32_t pos_in_page;
/** Last page read */
struct vy_page *page;
/** The last tuple returned to user */
struct vy_entry entry;
/** Members needed for memory allocation and disk access */
/** Slice to stream */
struct vy_slice *slice;
/**
* Key def for comparing with slice boundaries,
* includes secondary key parts.
*/
struct key_def *cmp_def;
/** Format for allocating REPLACE and DELETE tuples read from pages. */
struct tuple_format *format;
};
/**
* Open a run stream. Use vy_stmt_stream api for further work.
*/
void
vy_slice_stream_open(struct vy_slice_stream *stream, struct vy_slice *slice,
struct key_def *cmp_def, struct tuple_format *format);
/**
* Run_writer fills a created run with statements one by one,
* splitting them into pages.
*/
struct vy_run_writer {
/** Run to fill. */
struct vy_run *run;
/** Path to directory with run files. */
const char *dirpath;
/** Identifier of a space owning the run. */
uint32_t space_id;
/** Identifier of an index owning the run. */
uint32_t iid;
/**
* Key definition to extract from tuple and store as page
* min key, run min/max keys, and secondary index
* statements.
*/
struct key_def *cmp_def;
/** Key definition to calculate bloom. */
struct key_def *key_def;
/**
* Minimal page size. When a page becames bigger, it is
* dumped.
*/
uint64_t page_size;
/**
* Current page info capacity. Can grow with page number.
*/
uint32_t page_info_capacity;
/** Don't use compression while writing xlog files. */
bool no_compression;
/** Xlog to write data. */
struct xlog data_xlog;
/** Bloom filter false positive rate. */
double bloom_fpr;
/** Bloom filter. */
struct tuple_bloom_builder *bloom;
/** Buffer of a current page row offsets. */
struct ibuf row_index_buf;
/**
* Remember a last written statement to use it as a source
* of max key of a finished run.
*/
struct vy_entry last;
};
/** Create a run writer to fill a run with statements. */
int
vy_run_writer_create(struct vy_run_writer *writer, struct vy_run *run,
const char *dirpath, uint32_t space_id, uint32_t iid,
struct key_def *cmp_def, struct key_def *key_def,
uint64_t page_size, double bloom_fpr, bool no_compression);
/**
* Write a specified statement into a run.
* @param writer Writer to write a statement.
* @param entry Statement to write.
*
* @retval -1 Memory error.
* @retval 0 Success.
*/
int
vy_run_writer_append_stmt(struct vy_run_writer *writer, struct vy_entry entry);
/**
* Finalize run writing by writing run index into file. The writer
* is deleted after call.
* @param writer Run writer.
* @retval -1 Memory or IO error.
* @retval 0 Success.
*/
int
vy_run_writer_commit(struct vy_run_writer *writer);
/**
* Abort run writing. Can not delete a run and run's file here,
* becase it must be done from tx thread. The writer is deleted
* after call.
* @param Run writer.
*/
void
vy_run_writer_abort(struct vy_run_writer *writer);
#if defined(__cplusplus)
} /* extern "C" */
#endif /* defined(__cplusplus) */
#endif /* INCLUDES_TARANTOOL_BOX_VY_RUN_H */
|