/root/doris/be/src/olap/iterators.h
| Line | Count | Source | 
| 1 |  | // Licensed to the Apache Software Foundation (ASF) under one | 
| 2 |  | // or more contributor license agreements.  See the NOTICE file | 
| 3 |  | // distributed with this work for additional information | 
| 4 |  | // regarding copyright ownership.  The ASF licenses this file | 
| 5 |  | // to you under the Apache License, Version 2.0 (the | 
| 6 |  | // "License"); you may not use this file except in compliance | 
| 7 |  | // with the License.  You may obtain a copy of the License at | 
| 8 |  | // | 
| 9 |  | //   http://www.apache.org/licenses/LICENSE-2.0 | 
| 10 |  | // | 
| 11 |  | // Unless required by applicable law or agreed to in writing, | 
| 12 |  | // software distributed under the License is distributed on an | 
| 13 |  | // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | 
| 14 |  | // KIND, either express or implied.  See the License for the | 
| 15 |  | // specific language governing permissions and limitations | 
| 16 |  | // under the License. | 
| 17 |  |  | 
| 18 |  | #pragma once | 
| 19 |  |  | 
| 20 |  | #include <cstddef> | 
| 21 |  | #include <memory> | 
| 22 |  |  | 
| 23 |  | #include "common/status.h" | 
| 24 |  | #include "io/io_common.h" | 
| 25 |  | #include "olap/block_column_predicate.h" | 
| 26 |  | #include "olap/column_predicate.h" | 
| 27 |  | #include "olap/olap_common.h" | 
| 28 |  | #include "olap/row_cursor.h" | 
| 29 |  | #include "olap/rowset/segment_v2/ann_index/ann_topn_runtime.h" | 
| 30 |  | #include "olap/rowset/segment_v2/row_ranges.h" | 
| 31 |  | #include "olap/tablet_schema.h" | 
| 32 |  | #include "runtime/runtime_state.h" | 
| 33 |  | #include "vec/core/block.h" | 
| 34 |  | #include "vec/exprs/score_runtime.h" | 
| 35 |  | #include "vec/exprs/vexpr.h" | 
| 36 |  |  | 
| 37 |  | namespace doris { | 
| 38 |  |  | 
| 39 |  | class Schema; | 
| 40 |  | class ColumnPredicate; | 
| 41 |  |  | 
| 42 |  | namespace vectorized { | 
| 43 |  | struct IteratorRowRef; | 
| 44 |  | }; | 
| 45 |  |  | 
| 46 |  | namespace segment_v2 { | 
| 47 |  | struct SubstreamIterator; | 
| 48 |  | } | 
| 49 |  |  | 
| 50 |  | class StorageReadOptions { | 
| 51 |  | public: | 
| 52 |  |     struct KeyRange { | 
| 53 |  |         KeyRange() | 
| 54 |  |                 : lower_key(nullptr), | 
| 55 |  |                   include_lower(false), | 
| 56 |  |                   upper_key(nullptr), | 
| 57 | 0 |                   include_upper(false) {} | 
| 58 |  |  | 
| 59 |  |         KeyRange(const RowCursor* lower_key_, bool include_lower_, const RowCursor* upper_key_, | 
| 60 |  |                  bool include_upper_) | 
| 61 | 0 |                 : lower_key(lower_key_), | 
| 62 | 0 |                   include_lower(include_lower_), | 
| 63 | 0 |                   upper_key(upper_key_), | 
| 64 | 0 |                   include_upper(include_upper_) {} | 
| 65 |  |  | 
| 66 |  |         // the lower bound of the range, nullptr if not existed | 
| 67 |  |         const RowCursor* lower_key = nullptr; | 
| 68 |  |         // whether `lower_key` is included in the range | 
| 69 |  |         bool include_lower; | 
| 70 |  |         // the upper bound of the range, nullptr if not existed | 
| 71 |  |         const RowCursor* upper_key = nullptr; | 
| 72 |  |         // whether `upper_key` is included in the range | 
| 73 |  |         bool include_upper; | 
| 74 |  |  | 
| 75 | 0 |         uint64_t get_digest(uint64_t seed) const { | 
| 76 | 0 |             if (lower_key != nullptr) { | 
| 77 | 0 |                 auto key_str = lower_key->to_string(); | 
| 78 | 0 |                 seed = HashUtil::hash64(key_str.c_str(), key_str.size(), seed); | 
| 79 | 0 |                 seed = HashUtil::hash64(&include_lower, sizeof(include_lower), seed); | 
| 80 | 0 |             } | 
| 81 |  | 
 | 
| 82 | 0 |             if (upper_key != nullptr) { | 
| 83 | 0 |                 auto key_str = upper_key->to_string(); | 
| 84 | 0 |                 seed = HashUtil::hash64(key_str.c_str(), key_str.size(), seed); | 
| 85 | 0 |                 seed = HashUtil::hash64(&include_upper, sizeof(include_upper), seed); | 
| 86 | 0 |             } | 
| 87 |  | 
 | 
| 88 | 0 |             return seed; | 
| 89 | 0 |         } | 
| 90 |  |     }; | 
| 91 |  |  | 
| 92 |  |     // reader's key ranges, empty if not existed. | 
| 93 |  |     // used by short key index to filter row blocks | 
| 94 |  |     std::vector<KeyRange> key_ranges; | 
| 95 |  |  | 
| 96 |  |     // For unique-key merge-on-write, the effect is similar to delete_conditions | 
| 97 |  |     // that filters out rows that are deleted in realtime. | 
| 98 |  |     // For a particular row, if delete_bitmap.contains(rowid) means that row is | 
| 99 |  |     // marked deleted and invisible to user anymore. | 
| 100 |  |     // segment_id -> roaring::Roaring* | 
| 101 |  |     std::unordered_map<uint32_t, std::shared_ptr<roaring::Roaring>> delete_bitmap; | 
| 102 |  |  | 
| 103 |  |     std::shared_ptr<AndBlockColumnPredicate> delete_condition_predicates = | 
| 104 |  |             AndBlockColumnPredicate::create_shared(); | 
| 105 |  |     // reader's column predicate, nullptr if not existed | 
| 106 |  |     // used to fiter rows in row block | 
| 107 |  |     std::vector<ColumnPredicate*> column_predicates; | 
| 108 |  |     std::unordered_map<int32_t, std::shared_ptr<AndBlockColumnPredicate>> col_id_to_predicates; | 
| 109 |  |     std::unordered_map<int32_t, std::vector<const ColumnPredicate*>> del_predicates_for_zone_map; | 
| 110 |  |     TPushAggOp::type push_down_agg_type_opt = TPushAggOp::NONE; | 
| 111 |  |  | 
| 112 |  |     // REQUIRED (null is not allowed) | 
| 113 |  |     OlapReaderStatistics* stats = nullptr; | 
| 114 |  |     bool use_page_cache = false; | 
| 115 |  |     uint32_t block_row_max = 4096 - 32; // see https://github.com/apache/doris/pull/11816 | 
| 116 |  |  | 
| 117 |  |     TabletSchemaSPtr tablet_schema = nullptr; | 
| 118 |  |     bool enable_unique_key_merge_on_write = false; | 
| 119 |  |     bool record_rowids = false; | 
| 120 |  |     std::vector<int> topn_filter_source_node_ids; | 
| 121 |  |     int topn_filter_target_node_id = -1; | 
| 122 |  |     // used for special optimization for query : ORDER BY key DESC LIMIT n | 
| 123 |  |     bool read_orderby_key_reverse = false; | 
| 124 |  |     // columns for orderby keys | 
| 125 |  |     std::vector<uint32_t>* read_orderby_key_columns = nullptr; | 
| 126 |  |     io::IOContext io_ctx; | 
| 127 |  |     vectorized::VExpr* remaining_vconjunct_root = nullptr; | 
| 128 |  |     std::vector<vectorized::VExprSPtr> remaining_conjunct_roots; | 
| 129 |  |     vectorized::VExprContextSPtrs common_expr_ctxs_push_down; | 
| 130 |  |     const std::set<int32_t>* output_columns = nullptr; | 
| 131 |  |     // runtime state | 
| 132 |  |     RuntimeState* runtime_state = nullptr; | 
| 133 |  |     RowsetId rowset_id; | 
| 134 |  |     Version version; | 
| 135 |  |     int64_t tablet_id = 0; | 
| 136 |  |     // slots that cast may be eliminated in storage layer | 
| 137 |  |     std::map<std::string, vectorized::DataTypePtr> target_cast_type_for_variants; | 
| 138 |  |     RowRanges row_ranges; | 
| 139 |  |     size_t topn_limit = 0; | 
| 140 |  |  | 
| 141 |  |     std::map<ColumnId, vectorized::VExprContextSPtr> virtual_column_exprs; | 
| 142 |  |     std::shared_ptr<segment_v2::AnnTopNRuntime> ann_topn_runtime; | 
| 143 |  |     std::map<ColumnId, size_t> vir_cid_to_idx_in_block; | 
| 144 |  |     std::map<size_t, vectorized::DataTypePtr> vir_col_idx_to_type; | 
| 145 |  |  | 
| 146 |  |     std::shared_ptr<vectorized::ScoreRuntime> score_runtime; | 
| 147 |  |     CollectionStatisticsPtr collection_statistics; | 
| 148 |  |  | 
| 149 |  |     // Cache for sparse column data to avoid redundant reads | 
| 150 |  |     // col_unique_id -> cached column_ptr | 
| 151 |  |     std::unordered_map<int32_t, vectorized::ColumnPtr> sparse_column_cache; | 
| 152 |  |  | 
| 153 |  |     uint64_t condition_cache_digest = 0; | 
| 154 |  | }; | 
| 155 |  |  | 
| 156 |  | struct CompactionSampleInfo { | 
| 157 |  |     int64_t bytes = 0; | 
| 158 |  |     int64_t rows = 0; | 
| 159 |  |     int64_t group_data_size; | 
| 160 |  | }; | 
| 161 |  |  | 
| 162 |  | class RowwiseIterator; | 
| 163 |  | using RowwiseIteratorUPtr = std::unique_ptr<RowwiseIterator>; | 
| 164 |  | class RowwiseIterator { | 
| 165 |  | public: | 
| 166 | 11.7k |     RowwiseIterator() = default; | 
| 167 | 11.7k |     virtual ~RowwiseIterator() = default; | 
| 168 |  |  | 
| 169 |  |     // Initialize this iterator and make it ready to read with | 
| 170 |  |     // input options. | 
| 171 |  |     // Input options may contain scan range in which this scan. | 
| 172 |  |     // Return Status::OK() if init successfully, | 
| 173 |  |     // Return other error otherwise | 
| 174 | 0 |     virtual Status init(const StorageReadOptions& opts) { | 
| 175 | 0 |         return Status::NotSupported("to be implemented"); | 
| 176 | 0 |     } | 
| 177 |  |  | 
| 178 | 0 |     virtual Status init(const StorageReadOptions& opts, CompactionSampleInfo* sample_info) { | 
| 179 | 0 |         return Status::NotSupported("to be implemented"); | 
| 180 | 0 |     } | 
| 181 |  |  | 
| 182 |  |     // If there is any valid data, this function will load data | 
| 183 |  |     // into input batch with Status::OK() returned | 
| 184 |  |     // If there is no data to read, will return Status::EndOfFile. | 
| 185 |  |     // If other error happens, other error code will be returned. | 
| 186 | 0 |     virtual Status next_batch(vectorized::Block* block) { | 
| 187 | 0 |         return Status::NotSupported("to be implemented"); | 
| 188 | 0 |     } | 
| 189 |  |  | 
| 190 | 0 |     virtual Status next_block_view(vectorized::BlockView* block_view) { | 
| 191 | 0 |         return Status::NotSupported("to be implemented"); | 
| 192 | 0 |     } | 
| 193 |  |  | 
| 194 | 0 |     virtual Status next_row(vectorized::IteratorRowRef* ref) { | 
| 195 | 0 |         return Status::NotSupported("to be implemented"); | 
| 196 | 0 |     } | 
| 197 | 0 |     virtual Status unique_key_next_row(vectorized::IteratorRowRef* ref) { | 
| 198 | 0 |         return Status::NotSupported("to be implemented"); | 
| 199 | 0 |     } | 
| 200 |  |  | 
| 201 | 0 |     virtual bool support_return_data_by_ref() { return false; } | 
| 202 |  |  | 
| 203 | 0 |     virtual Status current_block_row_locations(std::vector<RowLocation>* block_row_locations) { | 
| 204 | 0 |         return Status::NotSupported("to be implemented"); | 
| 205 | 0 |     } | 
| 206 |  |  | 
| 207 |  |     // return schema for this Iterator | 
| 208 |  |     virtual const Schema& schema() const = 0; | 
| 209 |  |  | 
| 210 |  |     // Return the data id such as segment id, used for keep the insert order when do | 
| 211 |  |     // merge sort in priority queue | 
| 212 | 26.2k |     virtual uint64_t data_id() const { return 0; } | 
| 213 |  |  | 
| 214 | 0 |     virtual void update_profile(RuntimeProfile* profile) {} | 
| 215 |  |     // return rows merged count by iterator | 
| 216 | 0 |     virtual uint64_t merged_rows() const { return 0; } | 
| 217 |  |  | 
| 218 |  |     // return if it's an empty iterator | 
| 219 | 5.58k |     virtual bool empty() const { return false; } | 
| 220 |  | }; | 
| 221 |  |  | 
| 222 |  | } // namespace doris |