MySQL 8.3.0
Source Code Documentation
hash_join_iterator.h
Go to the documentation of this file.
1#ifndef SQL_ITERATORS_HASH_JOIN_ITERATOR_H_
2#define SQL_ITERATORS_HASH_JOIN_ITERATOR_H_
3
4/* Copyright (c) 2019, 2023, Oracle and/or its affiliates.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License, version 2.0,
8 as published by the Free Software Foundation.
9
10 This program is also distributed with certain software (including
11 but not limited to OpenSSL) that is licensed under separate terms,
12 as designated in a particular file or component or in included license
13 documentation. The authors of MySQL hereby grant you an additional
14 permission to link the program and your derivative works with the
15 separately licensed software that they have included with MySQL.
16
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License, version 2.0, for more details.
21
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
25
26#include <stdio.h>
27#include <cassert>
28#include <cstdint>
29#include <memory>
30#include <vector>
31
32#include "my_alloc.h"
33#include "my_base.h"
34#include "my_table_map.h"
35#include "prealloced_array.h"
37#include "sql/item_cmpfunc.h"
41#include "sql/join_type.h"
42#include "sql/mem_root_array.h"
43#include "sql/pack_rows.h"
44#include "sql_string.h"
45
46class Item;
47class JOIN;
48class THD;
49
50struct ChunkPair {
53};
54
55/// @file
56///
57/// An iterator for joining two inputs by using hashing to match rows from
58/// the inputs.
59///
60/// The iterator starts out by doing everything in-memory. If everything fits
61/// into memory, the joining algorithm for inner joins works like this:
62///
63/// 1) Designate one input as the "build" input and one input as the "probe"
64/// input. Ideally, the smallest input measured in total size (not number of
65/// rows) should be designated as the build input.
66///
67/// 2) Read all the rows from the build input into an in-memory hash table.
68/// The hash key used in the hash table is calculated from the join attributes,
69/// e.g., if we have the following query where "orders" is designated as the
70/// build input:
71///
72/// SELECT * FROM lineitem
73/// INNER JOIN orders ON orders.o_orderkey = lineitem.l_orderkey;
74///
75/// the hash value will be calculated from the values in the column
76/// orders.o_orderkey. Note that the optimizer recognizes implicit join
77/// conditions, so this also works for SQL statements like:
78///
79/// SELECT * FROM orders, lineitem
80/// WHERE orders.o_orderkey = lineitem.l_orderkey;
81///
82/// 3) Then, we read the rows from the probe input, one by one. For each row,
83/// a hash key is calculated for the other side of the join (the probe input)
84/// using the join attribute (lineitem.l_orderkey in the above example) and the
85/// same hash function as in step 2. This hash key is used to do a lookup in the
86/// hash table, and for each match, an output row is produced. Note that the row
87/// from the probe input is already located in the table record buffers, and the
88/// matching row stored in the hash table is restored back to the record buffers
89/// where it originally came from. For details around how rows are stored and
90/// restored, see comments on pack_rows::StoreFromTableBuffers.
91///
92/// The size of the in-memory hash table is controlled by the system variable
93/// join_buffer_size. If we run out of memory during step 2, we degrade into a
94/// hybrid hash join. The data already in memory is processed using regular hash
95/// join, and the remainder is processed using on-disk hash join. It works like
96/// this:
97///
98/// 1) The rest of the rows in the build input that did not fit into the hash
99/// table are partitioned out into a given amount of files, represented by
100/// HashJoinChunks. We create an equal number of chunk files for both the probe
101/// and build input. We determine which file to put a row in by calculating a
102/// hash from the join attribute like in step 2 above, but using a different
103/// hash function.
104///
105/// 2) Then, we read the rows from the probe input, one by one. We look for a
106/// match in the hash table as described above, but the row is also written out
107/// to the chunk file on disk, since it might match a row from the build input
108/// that we've written to disk.
109///
110/// 3) When the entire probe input is read, we run the "classic" hash join on
111/// each of the corresponding chunk file probe/build pairs. Since the rows are
112/// partitioned using the same hash function for probe and build inputs, we know
113/// that matching rows must be located in the same pair of chunk files.
114///
115/// The algorithm for semijoin is quite similar to inner joins:
116///
117/// 1) Designate the inner table (i.e. the IN-side of a semijoin) as the build
118/// input. As semijoins only needs the first matching row from the inner table,
119/// we do not store duplicate keys in the hash table.
120///
121/// 2) Output all rows from the probe input where there is at least one matching
122/// row in the hash table. In case we have degraded into on-disk hash join, we
123/// write the probe row out to chunk file only if we did not find a matching row
124/// in the hash table.
125///
126/// The optimizer may set up semijoins with conditions that are not pure join
127/// conditions, but that must be attached to the hash join iterator anyways.
128/// Consider the following query and (slightly modified) execution plan:
129///
130/// SELECT c FROM t WHERE 1 IN (SELECT t.c = col1 FROM t1);
131///
132/// -> Hash semijoin (no condition), extra conditions: (1 = (t.c = t1.col1))
133/// -> Table scan on t
134/// -> Hash
135/// -> Table scan on t1
136///
137/// In this query, the optimizer has set up the condition (1 = (t.c = t1.col1))
138/// as the semijoin condition. We cannot use this as a join condition, since
139/// hash join only supports equi-join conditions. However, we cannot attach this
140/// as a filter after the join, as that would cause wrong results. We attach
141/// these conditions as "extra" conditions to the hash join iterator, and causes
142/// these notable behaviors:
143///
144/// a. If we have any extra conditions, we cannot reject duplicate keys in the
145/// hash table: the first row matching the join condition could fail the
146/// extra condition(s).
147///
148/// b. We can only output rows if all extra conditions pass. If any of the extra
149/// conditions fail, we must go to the next matching row in the hash table.
150///
151/// c. In case of on-disk hash join, we must write the probe row to disk _after_
152/// we have checked that there are no rows in the hash table that match any
153/// of the extra conditions.
154///
155/// If we are able to execute the hash join in memory (classic hash join),
156/// the output will be sorted the same as the left (probe) input. If we start
157/// spilling to disk, we lose any reasonable ordering properties.
158///
159/// Note that we still might end up in a case where a single chunk file from
160/// disk won't fit into memory. This is resolved by reading as much as possible
161/// into the hash table, and then reading the entire probe chunk file for each
162/// time the hash table is reloaded. This might happen if we have a very skewed
163/// data set, for instance.
164///
165/// When we start spilling to disk, we allocate a maximum of "kMaxChunks"
166/// chunk files on disk for each of the two inputs. The reason for having an
167/// upper limit is to avoid running out of file descriptors.
168///
169/// There is also a flag we can set to avoid hash join spilling to disk
170/// regardless of the input size. If the flag is set, the join algorithm works
171/// like this:
172///
173/// 1) Read as many rows as possible from the build input into an in-memory hash
174/// table.
175/// 2) When the hash table is full (we have reached the limit set by the system
176/// variable join_buffer_size), start reading from the beginning of the probe
177/// input, probing for matches in the hash table. Output a row for each match
178/// found.
179/// 3) When the probe input is empty, see if there are any remaining rows in the
180/// build input. If so, clear the in-memory hash table and go to step 1,
181/// continuing from the build input where we stopped the last time. If not, the
182/// join is done.
183///
184/// Doing everything in memory can be beneficial in a few cases. Currently, it
185/// is used when we have a LIMIT without sorting or grouping in the query. The
186/// gain is that we start producing output rows a lot earlier than if we were to
187/// spill both inputs out to disk. It could also be beneficial if the build
188/// input _almost_ fits in memory; it would likely be better to read the probe
189/// input twice instead of writing both inputs out to disk. However, we do not
190/// currently do any such cost based optimization.
191///
192/// There is a concept called "probe row saving" in the iterator. This is a
193/// technique that is enabled in two different scenarios: when a hash join build
194/// chunk does not fit entirely in memory and when hash join is not allowed to
195/// spill to disk. Common for these two scenarios is that a probe row will be
196/// read multiple times. For certain join types (semijoin), we must take care so
197/// that the same probe row is not sent to the client multiple times. Probe row
198/// saving takes care of this by doing the following:
199///
200/// - If we realize that we are going to read the same probe row multiple times,
201/// we enable probe row saving.
202/// - When a probe row is read, we write the row out to a probe row saving write
203/// file, given that it matches certain conditions (for semijoin we only save
204/// unmatched probe rows).
205/// - After the probe input is consumed, we will swap the probe row saving
206/// _write_ file and the probe row saving _read_ file, making the write file
207/// available for writing again.
208/// - When we are to read the probe input again, we read the probe rows from the
209/// probe row saving read file. This ensures that we i.e. do not output the
210/// same probe row twice for semijoin. Note that if the rows we read from the
211/// probe row saving read file will be read again (e.g., we have a big hash
212/// join build chunk that is many times bigger than the available hash table
213/// memory, causing us to process the chunk file in chunks), we will again
214/// write the rows to a new probe row saving write file. This reading from the
215/// read file and writing to a new write file continues until we know that we
216/// are seeing the probe rows for the last time.
217///
218/// We use the same methods as on-disk hash join (HashJoinChunk) for reading and
219/// writing rows to files. Note that probe row saving is never enabled for inner
220/// joins, since we do want to output the same probe row multiple times if it
221/// matches muliple rows from the build input. There are some differences
222/// regarding when probe row saving is enabled, depending on the hash join type
223/// (see enum HashJoinType):
224///
225/// - IN_MEMORY: Probe row saving is never activated, since the probe input is
226/// read only once.
227/// - SPILL_TO_DISK: If a build chunk file does not fit in memory (may happen
228/// with skewed data set), we will have to read the corresponding probe chunk
229/// multiple times. In this case, probe row saving is enabled as soon as we
230/// see that the build chunk does not fit in memory, and remains active until
231/// the entire build chunk is consumed. After the probe chunk is read once,
232/// we swap the probe row saving write file and probe row saving read file so
233/// that probe rows will be read from the probe row saving read file. Probe
234/// row saving is deactivated once we move to the next pair of chunk files.
235/// - IN_MEMORY_WITH_HASH_TABLE_REFILL: Probe row saving is activated when we
236/// see that the build input is too large to fit in memory. Once the probe
237/// iterator has been consumed once, we swap the probe row saving write file
238/// and probe row saving read file so that probe rows will be read from the
239/// probe row saving read file. As long as the build input is not fully
240/// consumed, we write probe rows from the read file out to a new write file,
241/// swapping these files for every hash table refill. Probe row saving is
242/// never deactivated in this hash join type.
243///
244/// Note that we always write the entire row when writing to probe row saving
245/// file. It would be possible to only write the match flag, but this is tricky
246/// as long as we have the hash join type IN_MEMORY_WITH_HASH_TABLE_REFILL. If
247/// we were to write only match flags in this hash join type, we would have to
248/// read the probe iterator multiple times. But there is no guarantee that rows
249/// will come in the same order when reading an iterator multiple times (e.g.
250/// NDB does not guarantee this), so it would require us to store match flags in
251/// a lookup structure using a row ID as the key. Due to this, we will
252/// reconsider this if the hash join type IN_MEMORY_WITH_HASH_TABLE_REFILL goes
253/// away.
254
255/// The two inputs that we read from when executing a hash join.
256enum class HashJoinInput {
257 /// We build the hash table from this input.
258 kBuild,
259 /// For each row from this input, we try to find a match in the hash table.
260 kProbe
261};
262
263class HashJoinIterator final : public RowIterator {
264 public:
265 /// Construct a HashJoinIterator.
266 ///
267 /// @param thd
268 /// the thread handle
269 /// @param build_input
270 /// the iterator for the build input
271 /// @param build_input_tables
272 /// a list of all the tables in the build input. The tables are needed for
273 /// two things:
274 /// 1) Accessing the columns when creating the join key during creation of
275 /// the hash table,
276 /// 2) and accessing the column data when creating the row to be stored in
277 /// the hash table and/or the chunk file on disk.
278 /// @param estimated_build_rows
279 /// How many rows we assume there will be when reading the build input.
280 /// This is used to choose how many chunks we break it into on disk.
281 /// @param probe_input
282 /// the iterator for the probe input
283 /// @param probe_input_tables
284 /// the probe input tables. Needed for the same reasons as
285 /// build_input_tables.
286 /// @param store_rowids whether we need to make sure row ids are available
287 /// for all tables below us, after Read() has been called. used only if
288 /// we are below a weedout operation.
289 /// @param tables_to_get_rowid_for a map of which tables we need to call
290 /// position() for ourselves. tables that are in build_input_tables
291 /// but not in this map, are expected to be handled by some other iterator.
292 /// tables that are in this map but not in build_input_tables will be
293 /// ignored.
294 /// @param max_memory_available
295 /// the amount of memory available, in bytes, for this hash join iterator.
296 /// This can be user-controlled by setting the system variable
297 /// join_buffer_size.
298 /// @param join_conditions
299 /// a list of all the join conditions between the two inputs
300 /// @param allow_spill_to_disk
301 /// whether the hash join can spill to disk. This is set to false in some
302 /// cases where we have a LIMIT in the query
303 /// @param join_type
304 /// The join type.
305 /// @param extra_conditions
306 /// A list of extra conditions that the iterator will evaluate after a
307 /// lookup in the hash table is done, but before the row is returned. The
308 /// conditions are AND-ed together into a single Item.
309 /// @param first_input
310 /// The first input (build or probe) to read from. (If this is empty, we
311 /// will not have to read from the other.)
312 /// @param probe_input_batch_mode
313 /// Whether we need to enable batch mode on the probe input table.
314 /// Only make sense if it is a single table, and we are not on the
315 /// outer side of any nested loop join.
316 /// @param hash_table_generation
317 /// If this is non-nullptr, it is a counter of how many times the query
318 /// block the iterator is a part of has been asked to clear hash tables,
319 /// since outer references may have changed value. It is used to know when
320 /// we need to drop our hash table; when the value changes, we need to drop
321 /// it. If it is nullptr, we _always_ drop it on Init().
323 const Prealloced_array<TABLE *, 4> &build_input_tables,
324 double estimated_build_rows,
326 const Prealloced_array<TABLE *, 4> &probe_input_tables,
327 bool store_rowids, table_map tables_to_get_rowid_for,
328 size_t max_memory_available,
329 const std::vector<HashJoinCondition> &join_conditions,
330 bool allow_spill_to_disk, JoinType join_type,
331 const Mem_root_array<Item *> &extra_conditions,
332 HashJoinInput first_input, bool probe_input_batch_mode,
333 uint64_t *hash_table_generation);
334
335 bool Init() override;
336
337 int Read() override;
338
339 void SetNullRowFlag(bool is_null_row) override {
340 // Don't call this after Init() but before calling Read() for the first
341 // time. Init() may have loaded a row that is (partially or fully) a null
342 // row, so resetting the null row flags is incorrect.
344 m_build_input->SetNullRowFlag(is_null_row);
345 m_probe_input->SetNullRowFlag(is_null_row);
346 }
347
348 void EndPSIBatchModeIfStarted() override {
349 m_build_input->EndPSIBatchModeIfStarted();
350 m_probe_input->EndPSIBatchModeIfStarted();
351 }
352
353 void UnlockRow() override {
354 // Since both inputs may have been materialized to disk, we cannot unlock
355 // them.
356 }
357
358 int ChunkCount() { return m_chunk_files_on_disk.size(); }
359
360 private:
361 /// Read all rows from the build input and store the rows into the in-memory
362 /// hash table. If the hash table goes full, the rest of the rows are written
363 /// out to chunk files on disk. See the class comment for more details.
364 ///
365 /// @retval true in case of error
366 bool BuildHashTable();
367
368 /// Read all rows from the next chunk file into the in-memory hash table.
369 /// See the class comment for details.
370 ///
371 /// @retval true in case of error
373
374 /// Read a single row from the probe iterator input into the tables' record
375 /// buffers. If we have started spilling to disk, the row is written out to a
376 /// chunk file on disk as well.
377 ///
378 /// The end condition is that either:
379 /// a) a row is ready in the tables' record buffers, and the state will be set
380 /// to READING_FIRST_ROW_FROM_HASH_TABLE.
381 /// b) There are no more rows to process from the probe input, so the iterator
382 /// state will be LOADING_NEXT_CHUNK_PAIR.
383 ///
384 /// @retval true in case of error
386
387 /// Read a single row from the current probe chunk file into the tables'
388 /// record buffers. The end conditions are the same as for
389 /// ReadRowFromProbeIterator().
390 ///
391 /// @retval true in case of error
393
394 /// Read a single row from the probe row saving file into the tables' record
395 /// buffers.
396 ///
397 /// @retval true in case of error
399
400 // Do a lookup in the hash table for matching rows from the build input.
401 // The lookup is done by computing the join key from the probe input, and
402 // using that join key for doing a lookup in the hash table. If the join key
403 // contains one or more SQL NULLs, the row cannot match anything and will be
404 // skipped, and the iterator state will be READING_ROW_FROM_PROBE_INPUT. If
405 // not, the iterator state will be READING_FIRST_ROW_FROM_HASH_TABLE.
406 //
407 // After this function is called, ReadJoinedRow() will return false until
408 // there are no more matching rows for the computed join key.
410
411 /// Take the next matching row from the hash table, and put the row into the
412 /// build tables' record buffers. The function expects that
413 /// LookupProbeRowInHashTable() has been called up-front. The user must
414 /// call ReadJoinedRow() as long as it returns false, as there may be
415 /// multiple matching rows from the hash table. It is up to the caller to set
416 /// a new state in case of EOF.
417 ///
418 /// @retval 0 if a match was found and the row is put in the build tables'
419 /// record buffers
420 /// @retval -1 if there are no more matching rows in the hash table
421 int ReadJoinedRow();
422
423 // Have we degraded into on-disk hash join?
424 bool on_disk_hash_join() const { return !m_chunk_files_on_disk.empty(); }
425
426 /// Write the last row read from the probe input out to chunk files on disk,
427 /// if applicable.
428 ///
429 /// For inner joins, we must write all probe rows to chunk files, since we
430 /// need to match the row against rows from the build input that are written
431 /// out to chunk files. For semijoin, we can only write probe rows that do not
432 /// match any of the rows in the hash table. Writing a probe row with a
433 /// matching row in the hash table could cause the row to be returned multiple
434 /// times.
435 ///
436 /// @retval true in case of errors.
438
439 /// @retval true if the last joined row passes all of the extra conditions.
441
442 /// If true, reject duplicate keys in the hash table.
443 ///
444 /// Semijoins/antijoins are only interested in the first matching row from the
445 /// hash table, so we can avoid storing duplicate keys in order to save some
446 /// memory. However, this cannot be applied if we have any "extra" conditions:
447 /// the first matching row in the hash table may fail the extra condition(s).
448 ///
449 /// @retval true if we can reject duplicate keys in the hash table.
450 bool RejectDuplicateKeys() const {
451 return m_extra_condition == nullptr &&
453 }
454
455 /// Clear the row buffer and reset all iterators pointing to it. This may be
456 /// called multiple times to re-init the row buffer.
457 ///
458 /// @retval true in case of error. my_error has been called
459 bool InitRowBuffer();
460
461 /// Prepare to read the probe iterator from the beginning, and enable batch
462 /// mode if applicable. The iterator state will remain unchanged.
463 ///
464 /// @retval true in case of error. my_error has been called.
465 bool InitProbeIterator();
466
467 /// Mark that probe row saving is enabled, and prepare the probe row saving
468 /// file for writing.
469 /// @see m_write_to_probe_row_saving
470 ///
471 /// @retval true in case of error. my_error has been called.
473
474 /// Mark that we should read from the probe row saving file. The probe row
475 /// saving file is rewinded to the beginning.
476 /// @see m_read_from_probe_row_saving
477 ///
478 /// @retval true in case of error. my_error has been called.
480
481 /// Set the iterator state to the correct READING_ROW_FROM_PROBE_*-state.
482 /// Which state we end up in depends on which hash join type we are executing
483 /// (in-memory, on-disk or in-memory with hash table refill).
485
486 /// Read a joined row from the hash table, and see if it passes any extra
487 /// conditions. The last probe row read will also be written do disk if needed
488 /// (see WriteProbeRowToDiskIfApplicable).
489 ///
490 /// @retval -1 There are no more matching rows in the hash table.
491 /// @retval 0 A joined row is ready.
492 /// @retval 1 An error occurred.
494
495 enum class State {
496 // We are reading a row from the probe input, where the row comes from
497 // the iterator.
499 // We are reading a row from the probe input, where the row comes from a
500 // chunk file.
502 // We are reading a row from the probe input, where the row comes from a
503 // probe row saving file.
505 // The iterator is moving to the next pair of chunk files, where the chunk
506 // file from the build input will be loaded into the hash table.
508 // We are reading the first row returned from the hash table lookup that
509 // also passes extra conditions.
511 // We are reading the remaining rows returned from the hash table lookup.
513 // No more rows, both inputs are empty.
515 };
516
520
523
524 // The last row that was read from the hash table, or nullptr if none.
525 // All rows under the same key are linked together (see the documentation
526 // for LinkedImmutableString), so this allows iterating through the rows
527 // until the end.
529
530 // These structures holds the tables and columns that are needed for the hash
531 // join. Rows/columns that are not needed are filtered out in the constructor.
532 // We need to know which tables that belong to each iterator, so that we can
533 // compute the join key when needed.
537
538 // An in-memory hash table that holds rows from the build input (directly from
539 // the build input iterator, or from a chunk file). See the class comment for
540 // details on how and when this is used.
542
543 // A list of the join conditions (all of them are equi-join conditions).
545
546 // Array to hold the list of chunk files on disk in case we degrade into
547 // on-disk hash join.
549
550 // Which HashJoinChunk, if any, we are currently reading from, in both
551 // LOADING_NEXT_CHUNK_PAIR and READING_ROW_FROM_PROBE_CHUNK_FILE.
552 // It is incremented during the state LOADING_NEXT_CHUNK_PAIR.
554
555 // Which row we currently are reading from each of the hash join chunk file.
558
559 // How many rows we assume there will be when reading the build input.
560 // This is used to choose how many chunks we break it into on disk.
562
563 public:
564 // The seed that is by xxHash64 when calculating the hash from a join
565 // key. We use xxHash64 when calculating the hash that is used for
566 // determining which chunk file a row should be placed in (in case of
567 // on-disk hash join); if we used the same hash function (and seed) for
568 // both operation, we would get a really bad hash table when loading
569 // a chunk file to the hash table. The number is chosen randomly and have
570 // no special meaning.
571 static constexpr uint32_t kChunkPartitioningHashSeed{899339};
572
573 // The maximum number of HashJoinChunks that is allocated for each of the
574 // inputs in case we spill to disk. We might very well end up with an amount
575 // less than this number, but we keep an upper limit so we don't risk running
576 // out of file descriptors. We always use a power of two number of files,
577 // which allows us to do some optimizations when calculating which chunk a row
578 // should be placed in.
579 static constexpr size_t kMaxChunks = 128;
580
581 private:
582 // A buffer that is used during two phases:
583 // 1) when constructing a join key from join conditions.
584 // 2) when moving a row between tables' record buffers and the hash table.
585 //
586 // There are two functions that needs this buffer; ConstructJoinKey() and
587 // StoreFromTableBuffers(). After calling one of these functions, the user
588 // must take responsibility of the data if it is needed for a longer lifetime.
589 //
590 // If there are no BLOB/TEXT column in the join, we calculate an upper bound
591 // of the row size that is used to preallocate this buffer. In the case of
592 // BLOB/TEXT columns, we cannot calculate a reasonable upper bound, and the
593 // row size is calculated per row. The allocated memory is kept for the
594 // duration of the iterator, so that we (most likely) avoid reallocations.
596
597 /// The first input (build or probe) to read from. (If this is empty, we will
598 /// not have to read from the other.)
600
601 // Whether we should turn on batch mode for the probe input. Batch mode is
602 // enabled if the probe input consists of exactly one table, and said table
603 // can return more than one row and has no associated subquery condition.
604 // (See ShouldEnableBatchMode().)
606
607 // Whether we are allowed to spill to disk.
609
610 // Whether the build iterator has more rows. This is used to stop the hash
611 // join iterator asking for more rows when we know for sure that the entire
612 // build input is consumed. The variable is only used if m_allow_spill_to_disk
613 // is false, as we have to see if there are more rows in the build input after
614 // the probe input is consumed.
616
617 // What kind of join the iterator should execute.
619
620 // If not nullptr, an extra condition that the iterator will evaluate after a
621 // lookup in the hash table is done, but before the row is returned. This is
622 // needed in case we have a semijoin condition that is not an equi-join
623 // condition (i.e. 't1.col1 < t2.col1').
625
626 // Whether we should write rows from the probe input to the probe row saving
627 // write file. See the class comment on HashJoinIterator for details around
628 // probe row saving.
630
631 // Whether we should read rows from the probe row saving read file. See the
632 // class comment on HashJoinIterator for details around probe row saving.
634
635 // The probe row saving files where unmatched probe rows are written to and
636 // read from.
639
640 // Which row we currently are reading from in the probe row saving read file.
641 // Used to know whether we have reached the end of the file. How many files
642 // the probe row saving read file contains is contained in the HashJoinChunk
643 // (see m_probe_row_saving_read_file).
645
646 // The "type" of hash join we are executing. We currently have three different
647 // types of hash join:
648 // - In memory: We do everything in memory without any refills of the hash
649 // table. Each input is read only once, and nothing is written to disk.
650 // - Spill to disk: If the build input does not fit in memory, we write both
651 // inputs out to a set of chunk files. Both inputs are partitioned using a
652 // hash function over the join attribute, ensuring that matching rows can be
653 // found in the same set of chunk files. Each pair of chunk file is then
654 // processed as an in-memory hash join.
655 // - In memory with hash table refill: This is enabled if we are not allowed
656 // to spill to disk, and the build input does not fit in memory. We read as
657 // much as possible from the build input into the hash table. We then read
658 // the entire probe input, probing for matching rows in the hash table.
659 // When the probe input returns EOF, the hash table is refilled with the
660 // rows that did not fit the first time. The entire probe input is read
661 // again, and this is repeated until the entire build input is consumed.
662 enum class HashJoinType {
663 IN_MEMORY,
666 };
668
669 // The match flag for the last probe row read from chunk file.
670 //
671 // This is needed if a outer join spills to disk; a probe row can match a row
672 // from the build input we haven't seen yet (it's been written out to disk
673 // because the hash table was full). So when reading a probe row from a chunk
674 // file, this variable holds the match flag. This flag must be a class member,
675 // since one probe row may match multiple rows from the hash table; the
676 // execution will go out of HashJoinIterator::Read() between each matching
677 // row, causing any local match flag to lose the match flag info from the last
678 // probe row read.
680
681 /// If true, a row was already read from the probe input, in order to check if
682 /// that input was empty. If so, we should process that row before reading
683 /// another.
684 bool m_probe_row_read{false};
685
686 /// Helper function for Init(). Read the first row from m_probe_input.
687 /// @returns 'true' if there was an error.
688 bool ReadFirstProbeRow();
689
690 /// Helper function for Init(). Build the hash table and check for empty query
691 /// results (empty build input or non-empty build input in case of degenerate
692 /// antijoin.)
693 /// @returns 'true' in case of error.
694 bool InitHashTable();
695};
696
697#endif // SQL_ITERATORS_HASH_JOIN_ITERATOR_H_
Definition: hash_join_chunk.h:66
Definition: hash_join_iterator.h:263
HashJoinInput m_first_input
The first input (build or probe) to read from.
Definition: hash_join_iterator.h:599
bool BuildHashTable()
Read all rows from the build input and store the rows into the in-memory hash table.
Definition: hash_join_iterator.cc:483
void EndPSIBatchModeIfStarted() override
Ends performance schema batch mode, if started.
Definition: hash_join_iterator.h:348
const unique_ptr_destroy_only< RowIterator > m_build_input
Definition: hash_join_iterator.h:521
bool ReadRowFromProbeRowSavingFile()
Read a single row from the probe row saving file into the tables' record buffers.
Definition: hash_join_iterator.cc:857
bool JoinedRowPassesExtraConditions() const
Definition: hash_join_iterator.cc:1007
int ReadNextJoinedRowFromHashTable()
Read a joined row from the hash table, and see if it passes any extra conditions.
Definition: hash_join_iterator.cc:1015
State
Definition: hash_join_iterator.h:495
HashJoinIterator(THD *thd, unique_ptr_destroy_only< RowIterator > build_input, const Prealloced_array< TABLE *, 4 > &build_input_tables, double estimated_build_rows, unique_ptr_destroy_only< RowIterator > probe_input, const Prealloced_array< TABLE *, 4 > &probe_input_tables, bool store_rowids, table_map tables_to_get_rowid_for, size_t max_memory_available, const std::vector< HashJoinCondition > &join_conditions, bool allow_spill_to_disk, JoinType join_type, const Mem_root_array< Item * > &extra_conditions, HashJoinInput first_input, bool probe_input_batch_mode, uint64_t *hash_table_generation)
Construct a HashJoinIterator.
Definition: hash_join_iterator.cc:61
void UnlockRow() override
Definition: hash_join_iterator.h:353
bool ReadFirstProbeRow()
Helper function for Init().
Definition: hash_join_iterator.cc:156
bool m_probe_row_read
If true, a row was already read from the probe input, in order to check if that input was empty.
Definition: hash_join_iterator.h:684
Prealloced_array< HashJoinCondition, 4 > m_join_conditions
Definition: hash_join_iterator.h:544
bool m_build_iterator_has_more_rows
Definition: hash_join_iterator.h:615
HashJoinChunk m_probe_row_saving_write_file
Definition: hash_join_iterator.h:637
bool WriteProbeRowToDiskIfApplicable()
Write the last row read from the probe input out to chunk files on disk, if applicable.
Definition: hash_join_iterator.cc:970
Mem_root_array< ChunkPair > m_chunk_files_on_disk
Definition: hash_join_iterator.h:548
pack_rows::TableCollection m_probe_input_tables
Definition: hash_join_iterator.h:534
bool InitRowBuffer()
Clear the row buffer and reset all iterators pointing to it.
Definition: hash_join_iterator.cc:119
int Read() override
Read a single row.
Definition: hash_join_iterator.cc:1117
String m_temporary_row_and_join_key_buffer
Definition: hash_join_iterator.h:595
bool InitHashTable()
Helper function for Init().
Definition: hash_join_iterator.cc:183
void SetNullRowFlag(bool is_null_row) override
Mark the current row buffer as containing a NULL row or not, so that if you read from it and the flag...
Definition: hash_join_iterator.h:339
State m_state
Definition: hash_join_iterator.h:517
void LookupProbeRowInHashTable()
Definition: hash_join_iterator.cc:912
LinkedImmutableString m_current_row
Definition: hash_join_iterator.h:528
static constexpr size_t kMaxChunks
Definition: hash_join_iterator.h:579
int ReadJoinedRow()
Take the next matching row from the hash table, and put the row into the build tables' record buffers...
Definition: hash_join_iterator.cc:957
bool m_read_from_probe_row_saving
Definition: hash_join_iterator.h:633
uint64_t m_last_hash_table_generation
Definition: hash_join_iterator.h:519
ha_rows m_build_chunk_current_row
Definition: hash_join_iterator.h:556
HashJoinType
Definition: hash_join_iterator.h:662
bool ReadNextHashJoinChunk()
Read all rows from the next chunk file into the in-memory hash table.
Definition: hash_join_iterator.cc:633
bool m_probe_input_batch_mode
Definition: hash_join_iterator.h:605
HashJoinType m_hash_join_type
Definition: hash_join_iterator.h:667
static constexpr uint32_t kChunkPartitioningHashSeed
Definition: hash_join_iterator.h:571
bool RejectDuplicateKeys() const
If true, reject duplicate keys in the hash table.
Definition: hash_join_iterator.h:450
bool ReadRowFromProbeChunkFile()
Read a single row from the current probe chunk file into the tables' record buffers.
Definition: hash_join_iterator.cc:814
bool m_probe_row_match_flag
Definition: hash_join_iterator.h:679
pack_rows::TableCollection m_build_input_tables
Definition: hash_join_iterator.h:535
const unique_ptr_destroy_only< RowIterator > m_probe_input
Definition: hash_join_iterator.h:522
int ChunkCount()
Definition: hash_join_iterator.h:358
ha_rows m_probe_chunk_current_row
Definition: hash_join_iterator.h:557
HashJoinChunk m_probe_row_saving_read_file
Definition: hash_join_iterator.h:638
uint64_t * m_hash_table_generation
Definition: hash_join_iterator.h:518
ha_rows m_probe_row_saving_read_file_current_row
Definition: hash_join_iterator.h:644
const double m_estimated_build_rows
Definition: hash_join_iterator.h:561
int m_current_chunk
Definition: hash_join_iterator.h:553
bool Init() override
Initialize or reinitialize the iterator.
Definition: hash_join_iterator.cc:212
const JoinType m_join_type
Definition: hash_join_iterator.h:618
bool m_allow_spill_to_disk
Definition: hash_join_iterator.h:608
bool on_disk_hash_join() const
Definition: hash_join_iterator.h:424
bool InitProbeIterator()
Prepare to read the probe iterator from the beginning, and enable batch mode if applicable.
Definition: hash_join_iterator.cc:143
const table_map m_tables_to_get_rowid_for
Definition: hash_join_iterator.h:536
void SetReadingProbeRowState()
Set the iterator state to the correct READING_ROW_FROM_PROBE_*-state.
Definition: hash_join_iterator.cc:1186
Item * m_extra_condition
Definition: hash_join_iterator.h:624
hash_join_buffer::HashJoinRowBuffer m_row_buffer
Definition: hash_join_iterator.h:541
bool InitWritingToProbeRowSavingFile()
Mark that probe row saving is enabled, and prepare the probe row saving file for writing.
Definition: hash_join_iterator.cc:1173
bool InitReadingFromProbeRowSavingFile()
Mark that we should read from the probe row saving file.
Definition: hash_join_iterator.cc:1179
bool m_write_to_probe_row_saving
Definition: hash_join_iterator.h:629
bool ReadRowFromProbeIterator()
Read a single row from the probe iterator input into the tables' record buffers.
Definition: hash_join_iterator.cc:736
Base class that is used to represent any kind of expression in a relational query.
Definition: item.h:933
Definition: sql_optimizer.h:132
LinkedImmutableString is designed for storing rows (values) in hash join.
Definition: immutable_string.h:172
A typesafe replacement for DYNAMIC_ARRAY.
Definition: mem_root_array.h:425
A typesafe replacement for DYNAMIC_ARRAY.
Definition: prealloced_array.h:70
A context for reading through a single table using a chosen access method: index read,...
Definition: row_iterator.h:81
THD * thd() const
Definition: row_iterator.h:227
Using this class is fraught with peril, and you need to be very careful when doing so.
Definition: sql_string.h:166
For each client connection we create a separate thread with THD serving as a thread/connection descri...
Definition: sql_lexer_thd.h:35
Definition: hash_join_buffer.h:156
A structure that contains a list of input tables for a hash join operation, BKA join operation or a s...
Definition: pack_rows.h:92
This file contains the HashJoinRowBuffer class and related functions/classes.
HashJoinInput
The two inputs that we read from when executing a hash join.
Definition: hash_join_iterator.h:256
@ kProbe
For each row from this input, we try to find a match in the hash table.
@ kBuild
We build the hash table from this input.
ImmutableString defines a storage format for strings that is designed to be as compact as possible,...
JoinType
Definition: join_type.h:27
@ ANTI
Left antijoin, i.e.
@ SEMI
Left semijoin, i.e.
This file follows Google coding style, except for the name MEM_ROOT (which is kept for historical rea...
std::unique_ptr< T, Destroy_only< T > > unique_ptr_destroy_only
std::unique_ptr, but only destroying.
Definition: my_alloc.h:476
This file includes constants used by all storage engines.
my_off_t ha_rows
Definition: my_base.h:1140
uint64_t table_map
Definition: my_table_map.h:29
Generic routines for packing rows (possibly from multiple tables at the same time) into strings,...
join_type
Definition: sql_opt_exec_shared.h:185
Our own string classes, used pervasively throughout the executor.
Definition: hash_join_iterator.h:50
HashJoinChunk probe_chunk
Definition: hash_join_iterator.h:51
HashJoinChunk build_chunk
Definition: hash_join_iterator.h:52