Coverage Report

Created: 2025-05-22 14:14

/root/doris/be/src/olap/schema_change.cpp
Line
Count
Source (jump to first uncovered line)
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
#include "olap/schema_change.h"
19
20
#include <gen_cpp/olap_file.pb.h>
21
#include <glog/logging.h>
22
#include <thrift/protocol/TDebugProtocol.h>
23
24
#include <algorithm>
25
#include <exception>
26
#include <map>
27
#include <memory>
28
#include <mutex>
29
#include <roaring/roaring.hh>
30
#include <tuple>
31
#include <utility>
32
33
#include "agent/be_exec_version_manager.h"
34
#include "cloud/cloud_schema_change_job.h"
35
#include "cloud/config.h"
36
#include "common/consts.h"
37
#include "common/logging.h"
38
#include "common/signal_handler.h"
39
#include "common/status.h"
40
#include "exec/schema_scanner/schema_metadata_name_ids_scanner.h"
41
#include "gutil/integral_types.h"
42
#include "gutil/strings/numbers.h"
43
#include "io/fs/file_system.h"
44
#include "io/io_common.h"
45
#include "olap/base_tablet.h"
46
#include "olap/data_dir.h"
47
#include "olap/delete_handler.h"
48
#include "olap/field.h"
49
#include "olap/iterators.h"
50
#include "olap/merger.h"
51
#include "olap/olap_common.h"
52
#include "olap/olap_define.h"
53
#include "olap/rowset/beta_rowset.h"
54
#include "olap/rowset/pending_rowset_helper.h"
55
#include "olap/rowset/rowset_meta.h"
56
#include "olap/rowset/rowset_reader_context.h"
57
#include "olap/rowset/rowset_writer_context.h"
58
#include "olap/rowset/segment_v2/column_reader.h"
59
#include "olap/rowset/segment_v2/inverted_index_desc.h"
60
#include "olap/rowset/segment_v2/inverted_index_writer.h"
61
#include "olap/rowset/segment_v2/segment.h"
62
#include "olap/schema.h"
63
#include "olap/segment_loader.h"
64
#include "olap/storage_engine.h"
65
#include "olap/tablet.h"
66
#include "olap/tablet_fwd.h"
67
#include "olap/tablet_manager.h"
68
#include "olap/tablet_meta.h"
69
#include "olap/tablet_schema.h"
70
#include "olap/types.h"
71
#include "olap/utils.h"
72
#include "olap/wrapper_field.h"
73
#include "runtime/exec_env.h"
74
#include "runtime/memory/mem_tracker.h"
75
#include "runtime/runtime_state.h"
76
#include "util/debug_points.h"
77
#include "util/defer_op.h"
78
#include "util/trace.h"
79
#include "vec/aggregate_functions/aggregate_function.h"
80
#include "vec/aggregate_functions/aggregate_function_reader.h"
81
#include "vec/columns/column.h"
82
#include "vec/columns/column_nullable.h"
83
#include "vec/common/assert_cast.h"
84
#include "vec/common/schema_util.h"
85
#include "vec/core/block.h"
86
#include "vec/core/column_with_type_and_name.h"
87
#include "vec/exprs/vexpr.h"
88
#include "vec/exprs/vexpr_context.h"
89
#include "vec/olap/olap_data_convertor.h"
90
91
namespace doris {
92
class CollectionValue;
93
94
using namespace ErrorCode;
95
96
constexpr int ALTER_TABLE_BATCH_SIZE = 4064;
97
98
class MultiBlockMerger {
99
public:
100
0
    MultiBlockMerger(BaseTabletSPtr tablet) : _tablet(tablet), _cmp(*tablet) {}
101
102
    Status merge(const std::vector<std::unique_ptr<vectorized::Block>>& blocks,
103
0
                 RowsetWriter* rowset_writer, uint64_t* merged_rows) {
104
0
        int rows = 0;
105
0
        for (const auto& block : blocks) {
106
0
            rows += block->rows();
107
0
        }
108
0
        if (!rows) {
109
0
            return Status::OK();
110
0
        }
111
112
0
        std::vector<RowRef> row_refs;
113
0
        row_refs.reserve(rows);
114
0
        for (const auto& block : blocks) {
115
0
            for (uint16_t i = 0; i < block->rows(); i++) {
116
0
                row_refs.emplace_back(block.get(), i);
117
0
            }
118
0
        }
119
        // TODO: try to use pdqsort to replace std::sort
120
        // The block version is incremental.
121
0
        std::stable_sort(row_refs.begin(), row_refs.end(), _cmp);
122
123
0
        auto finalized_block = _tablet->tablet_schema()->create_block();
124
0
        int columns = finalized_block.columns();
125
0
        *merged_rows += rows;
126
127
0
        if (_tablet->keys_type() == KeysType::AGG_KEYS) {
128
0
            auto tablet_schema = _tablet->tablet_schema();
129
0
            int key_number = _tablet->num_key_columns();
130
131
0
            std::vector<vectorized::AggregateFunctionPtr> agg_functions;
132
0
            std::vector<vectorized::AggregateDataPtr> agg_places;
133
134
0
            for (int i = key_number; i < columns; i++) {
135
0
                try {
136
0
                    vectorized::AggregateFunctionPtr function =
137
0
                            tablet_schema->column(i).get_aggregate_function(
138
0
                                    vectorized::AGG_LOAD_SUFFIX,
139
0
                                    tablet_schema->column(i).get_be_exec_version());
140
0
                    if (!function) {
141
0
                        return Status::InternalError(
142
0
                                "could not find aggregate function on column {}, aggregation={}",
143
0
                                tablet_schema->column(i).name(),
144
0
                                tablet_schema->column(i).aggregation());
145
0
                    }
146
0
                    agg_functions.push_back(function);
147
                    // create aggregate data
148
0
                    auto* place = new char[function->size_of_data()];
149
0
                    function->create(place);
150
0
                    agg_places.push_back(place);
151
0
                } catch (...) {
152
0
                    for (int j = 0; j < i - key_number; ++j) {
153
0
                        agg_functions[j]->destroy(agg_places[j]);
154
0
                        delete[] agg_places[j];
155
0
                    }
156
0
                    throw;
157
0
                }
158
0
            }
159
160
0
            DEFER({
161
0
                for (int i = 0; i < columns - key_number; i++) {
162
0
                    agg_functions[i]->destroy(agg_places[i]);
163
0
                    delete[] agg_places[i];
164
0
                }
165
0
            });
166
167
0
            for (int i = 0; i < rows; i++) {
168
0
                auto row_ref = row_refs[i];
169
0
                for (int j = key_number; j < columns; j++) {
170
0
                    const auto* column_ptr = row_ref.get_column(j).get();
171
0
                    agg_functions[j - key_number]->add(
172
0
                            agg_places[j - key_number],
173
0
                            const_cast<const vectorized::IColumn**>(&column_ptr), row_ref.position,
174
0
                            &_arena);
175
0
                }
176
177
0
                if (i == rows - 1 || _cmp.compare(row_refs[i], row_refs[i + 1])) {
178
0
                    for (int j = 0; j < key_number; j++) {
179
0
                        finalized_block.get_by_position(j).column->assume_mutable()->insert_from(
180
0
                                *row_ref.get_column(j), row_ref.position);
181
0
                    }
182
183
0
                    for (int j = key_number; j < columns; j++) {
184
0
                        agg_functions[j - key_number]->insert_result_into(
185
0
                                agg_places[j - key_number],
186
0
                                finalized_block.get_by_position(j).column->assume_mutable_ref());
187
0
                        agg_functions[j - key_number]->reset(agg_places[j - key_number]);
188
0
                    }
189
190
0
                    if (i == rows - 1 || finalized_block.rows() == ALTER_TABLE_BATCH_SIZE) {
191
0
                        *merged_rows -= finalized_block.rows();
192
0
                        RETURN_IF_ERROR(rowset_writer->add_block(&finalized_block));
193
0
                        finalized_block.clear_column_data();
194
0
                    }
195
0
                }
196
0
            }
197
0
        } else {
198
0
            std::vector<RowRef> pushed_row_refs;
199
0
            if (_tablet->keys_type() == KeysType::DUP_KEYS) {
200
0
                std::swap(pushed_row_refs, row_refs);
201
0
            } else if (_tablet->keys_type() == KeysType::UNIQUE_KEYS) {
202
0
                for (int i = 0; i < rows; i++) {
203
0
                    if (i == rows - 1 || _cmp.compare(row_refs[i], row_refs[i + 1])) {
204
0
                        pushed_row_refs.push_back(row_refs[i]);
205
0
                    }
206
0
                }
207
0
            }
208
209
            // update real inserted row number
210
0
            rows = pushed_row_refs.size();
211
0
            *merged_rows -= rows;
212
213
0
            for (int i = 0; i < rows; i += ALTER_TABLE_BATCH_SIZE) {
214
0
                int limit = std::min(ALTER_TABLE_BATCH_SIZE, rows - i);
215
216
0
                for (int idx = 0; idx < columns; idx++) {
217
0
                    auto column = finalized_block.get_by_position(idx).column->assume_mutable();
218
219
0
                    for (int j = 0; j < limit; j++) {
220
0
                        auto row_ref = pushed_row_refs[i + j];
221
0
                        column->insert_from(*row_ref.get_column(idx), row_ref.position);
222
0
                    }
223
0
                }
224
0
                RETURN_IF_ERROR(rowset_writer->add_block(&finalized_block));
225
0
                finalized_block.clear_column_data();
226
0
            }
227
0
        }
228
229
0
        RETURN_IF_ERROR(rowset_writer->flush());
230
0
        return Status::OK();
231
0
    }
232
233
private:
234
    struct RowRef {
235
        RowRef(vectorized::Block* block_, uint16_t position_)
236
0
                : block(block_), position(position_) {}
237
0
        vectorized::ColumnPtr get_column(int index) const {
238
0
            return block->get_by_position(index).column;
239
0
        }
240
        const vectorized::Block* block;
241
        uint16_t position;
242
    };
243
244
    struct RowRefComparator {
245
0
        RowRefComparator(const BaseTablet& tablet) : _num_columns(tablet.num_key_columns()) {}
246
247
0
        int compare(const RowRef& lhs, const RowRef& rhs) const {
248
0
            return lhs.block->compare_at(lhs.position, rhs.position, _num_columns, *rhs.block, -1);
249
0
        }
250
251
0
        bool operator()(const RowRef& lhs, const RowRef& rhs) const {
252
0
            return compare(lhs, rhs) < 0;
253
0
        }
254
255
        const size_t _num_columns;
256
    };
257
258
    BaseTabletSPtr _tablet;
259
    RowRefComparator _cmp;
260
    vectorized::Arena _arena;
261
};
262
263
BlockChanger::BlockChanger(TabletSchemaSPtr tablet_schema, DescriptorTbl desc_tbl)
264
0
        : _desc_tbl(std::move(desc_tbl)) {
265
0
    _schema_mapping.resize(tablet_schema->num_columns());
266
0
}
267
268
0
BlockChanger::~BlockChanger() {
269
0
    for (auto it = _schema_mapping.begin(); it != _schema_mapping.end(); ++it) {
270
0
        SAFE_DELETE(it->default_value);
271
0
    }
272
0
    _schema_mapping.clear();
273
0
}
274
275
0
ColumnMapping* BlockChanger::get_mutable_column_mapping(size_t column_index) {
276
0
    if (column_index >= _schema_mapping.size()) {
277
0
        return nullptr;
278
0
    }
279
280
0
    return &(_schema_mapping[column_index]);
281
0
}
282
283
Status BlockChanger::change_block(vectorized::Block* ref_block,
284
0
                                  vectorized::Block* new_block) const {
285
0
    std::unique_ptr<RuntimeState> state = RuntimeState::create_unique();
286
0
    state->set_desc_tbl(&_desc_tbl);
287
0
    state->set_be_exec_version(_fe_compatible_version);
288
0
    RowDescriptor row_desc =
289
0
            RowDescriptor(_desc_tbl.get_tuple_descriptor(_desc_tbl.get_row_tuples()[0]), false);
290
291
0
    if (_where_expr != nullptr) {
292
0
        vectorized::VExprContextSPtr ctx = nullptr;
293
0
        RETURN_IF_ERROR(vectorized::VExpr::create_expr_tree(*_where_expr, ctx));
294
0
        RETURN_IF_ERROR(ctx->prepare(state.get(), row_desc));
295
0
        RETURN_IF_ERROR(ctx->open(state.get()));
296
297
0
        RETURN_IF_ERROR(
298
0
                vectorized::VExprContext::filter_block(ctx.get(), ref_block, ref_block->columns()));
299
0
    }
300
301
0
    const int row_num = ref_block->rows();
302
0
    const int new_schema_cols_num = new_block->columns();
303
304
    // will be used for swaping ref_block[entry.first] and new_block[entry.second]
305
0
    std::list<std::pair<int, int>> swap_idx_list;
306
0
    for (int idx = 0; idx < new_schema_cols_num; idx++) {
307
0
        auto expr = _schema_mapping[idx].expr;
308
0
        if (expr != nullptr) {
309
0
            vectorized::VExprContextSPtr ctx;
310
0
            RETURN_IF_ERROR(vectorized::VExpr::create_expr_tree(*expr, ctx));
311
0
            RETURN_IF_ERROR(ctx->prepare(state.get(), row_desc));
312
0
            RETURN_IF_ERROR(ctx->open(state.get()));
313
314
0
            int result_tmp_column_idx = -1;
315
0
            RETURN_IF_ERROR(ctx->execute(ref_block, &result_tmp_column_idx));
316
0
            auto& result_tmp_column_def = ref_block->get_by_position(result_tmp_column_idx);
317
0
            if (result_tmp_column_def.column == nullptr) {
318
0
                return Status::Error<ErrorCode::INTERNAL_ERROR>(
319
0
                        "result column={} is nullptr, input expr={}", result_tmp_column_def.name,
320
0
                        apache::thrift::ThriftDebugString(*expr));
321
0
            }
322
0
            ref_block->replace_by_position_if_const(result_tmp_column_idx);
323
324
0
            if (result_tmp_column_def.column->size() != row_num) {
325
0
                return Status::Error<ErrorCode::INTERNAL_ERROR>(
326
0
                        "result size invalid, expect={}, real={}; input expr={}", row_num,
327
0
                        result_tmp_column_def.column->size(),
328
0
                        apache::thrift::ThriftDebugString(*expr));
329
0
            }
330
331
0
            if (_type == SCHEMA_CHANGE) {
332
                // danger casts (expected to be rejected by upstream caller) may cause data to be null and result in data loss in schema change
333
                // for rollup, this check is unecessary, and ref columns are not set in this case, it works on exprs
334
335
                // column_idx in base schema
336
0
                int32_t ref_column_idx = _schema_mapping[idx].ref_column_idx;
337
0
                DCHECK_GE(ref_column_idx, 0);
338
0
                auto& ref_column_def = ref_block->get_by_position(ref_column_idx);
339
0
                RETURN_IF_ERROR(
340
0
                        _check_cast_valid(ref_column_def.column, result_tmp_column_def.column));
341
0
            }
342
0
            swap_idx_list.emplace_back(result_tmp_column_idx, idx);
343
0
        } else if (_schema_mapping[idx].ref_column_idx < 0) {
344
            // new column, write default value
345
0
            auto* value = _schema_mapping[idx].default_value;
346
0
            auto column = new_block->get_by_position(idx).column->assume_mutable();
347
0
            if (value->is_null()) {
348
0
                DCHECK(column->is_nullable());
349
0
                column->insert_many_defaults(row_num);
350
0
            } else {
351
0
                auto type_info = get_type_info(_schema_mapping[idx].new_column);
352
0
                DefaultValueColumnIterator::insert_default_data(type_info.get(), value->size(),
353
0
                                                                value->ptr(), column, row_num);
354
0
            }
355
0
        } else {
356
            // same type, just swap column
357
0
            swap_idx_list.emplace_back(_schema_mapping[idx].ref_column_idx, idx);
358
0
        }
359
0
    }
360
361
0
    for (auto it : swap_idx_list) {
362
0
        auto& ref_col = ref_block->get_by_position(it.first).column;
363
0
        auto& new_col = new_block->get_by_position(it.second).column;
364
365
0
        bool ref_col_nullable = ref_col->is_nullable();
366
0
        bool new_col_nullable = new_col->is_nullable();
367
368
0
        if (ref_col_nullable != new_col_nullable) {
369
            // not nullable to nullable
370
0
            if (new_col_nullable) {
371
0
                auto* new_nullable_col =
372
0
                        assert_cast<vectorized::ColumnNullable*>(new_col->assume_mutable().get());
373
374
0
                new_nullable_col->change_nested_column(ref_col);
375
0
                new_nullable_col->get_null_map_data().resize_fill(ref_col->size());
376
0
            } else {
377
                // nullable to not nullable:
378
                // suppose column `c_phone` is originally varchar(16) NOT NULL,
379
                // then do schema change `alter table test modify column c_phone int not null`,
380
                // the cast expr of schema change is `CastExpr(CAST String to Nullable(Int32))`,
381
                // so need to handle nullable to not nullable here
382
0
                auto* ref_nullable_col =
383
0
                        assert_cast<vectorized::ColumnNullable*>(ref_col->assume_mutable().get());
384
385
0
                new_col = ref_nullable_col->get_nested_column_ptr();
386
0
            }
387
0
        } else {
388
0
            new_block->get_by_position(it.second).column =
389
0
                    ref_block->get_by_position(it.first).column;
390
0
        }
391
0
    }
392
0
    return Status::OK();
393
0
}
394
395
// This check can prevent schema-change from causing data loss after type cast
396
Status BlockChanger::_check_cast_valid(vectorized::ColumnPtr input_column,
397
0
                                       vectorized::ColumnPtr output_column) {
398
0
    if (input_column->size() != output_column->size()) {
399
0
        return Status::InternalError(
400
0
                "column size is changed, input_column_size={}, output_column_size={}; "
401
0
                "input_column={}",
402
0
                input_column->size(), output_column->size(), input_column->get_name());
403
0
    }
404
0
    DCHECK_EQ(input_column->size(), output_column->size())
405
0
            << "length check should have done before calling this function!";
406
407
0
    if (input_column->is_nullable() != output_column->is_nullable()) {
408
0
        if (input_column->is_nullable()) {
409
0
            const auto* ref_null_map =
410
0
                    vectorized::check_and_get_column<vectorized::ColumnNullable>(input_column)
411
0
                            ->get_null_map_column()
412
0
                            .get_data()
413
0
                            .data();
414
415
0
            bool is_changed = false;
416
0
            for (size_t i = 0; i < input_column->size(); i++) {
417
0
                is_changed |= ref_null_map[i];
418
0
            }
419
0
            if (is_changed) {
420
0
                return Status::DataQualityError(
421
0
                        "some null data is changed to not null, intput_column={}",
422
0
                        input_column->get_name());
423
0
            }
424
0
        } else {
425
0
            const auto& null_map_column =
426
0
                    vectorized::check_and_get_column<vectorized::ColumnNullable>(output_column)
427
0
                            ->get_null_map_column();
428
0
            const auto& nested_column =
429
0
                    vectorized::check_and_get_column<vectorized::ColumnNullable>(output_column)
430
0
                            ->get_nested_column();
431
0
            const auto* new_null_map = null_map_column.get_data().data();
432
433
0
            if (null_map_column.size() != output_column->size()) {
434
0
                return Status::InternalError(
435
0
                        "null_map_column size mismatch output_column_size, "
436
0
                        "null_map_column_size={}, output_column_size={}; input_column={}",
437
0
                        null_map_column.size(), output_column->size(), input_column->get_name());
438
0
            }
439
440
0
            if (nested_column.size() != output_column->size()) {
441
0
                return Status::InternalError(
442
0
                        "nested_column size is changed, nested_column_size={}, "
443
0
                        "ouput_column_size={}; input_column={}",
444
0
                        nested_column.size(), output_column->size(), input_column->get_name());
445
0
            }
446
447
0
            bool is_changed = false;
448
0
            for (size_t i = 0; i < input_column->size(); i++) {
449
0
                is_changed |= new_null_map[i];
450
0
            }
451
0
            if (is_changed) {
452
0
                return Status::DataQualityError(
453
0
                        "some not null data is changed to null, intput_column={}",
454
0
                        input_column->get_name());
455
0
            }
456
0
        }
457
0
    }
458
459
0
    if (input_column->is_nullable() && output_column->is_nullable()) {
460
0
        const auto* ref_null_map =
461
0
                vectorized::check_and_get_column<vectorized::ColumnNullable>(input_column)
462
0
                        ->get_null_map_column()
463
0
                        .get_data()
464
0
                        .data();
465
0
        const auto* new_null_map =
466
0
                vectorized::check_and_get_column<vectorized::ColumnNullable>(output_column)
467
0
                        ->get_null_map_column()
468
0
                        .get_data()
469
0
                        .data();
470
471
0
        bool is_changed = false;
472
0
        for (size_t i = 0; i < input_column->size(); i++) {
473
0
            is_changed |= (ref_null_map[i] != new_null_map[i]);
474
0
        }
475
0
        if (is_changed) {
476
0
            return Status::DataQualityError(
477
0
                    "null map is changed after calculation, input_column={}",
478
0
                    input_column->get_name());
479
0
        }
480
0
    }
481
0
    return Status::OK();
482
0
}
483
484
Status LinkedSchemaChange::process(RowsetReaderSharedPtr rowset_reader, RowsetWriter* rowset_writer,
485
                                   BaseTabletSPtr new_tablet, BaseTabletSPtr base_tablet,
486
                                   TabletSchemaSPtr base_tablet_schema,
487
0
                                   TabletSchemaSPtr new_tablet_schema) {
488
0
    Status status = rowset_writer->add_rowset_for_linked_schema_change(rowset_reader->rowset());
489
0
    if (!status) {
490
0
        LOG(WARNING) << "fail to convert rowset."
491
0
                     << ", new_tablet=" << new_tablet->tablet_id()
492
0
                     << ", version=" << rowset_writer->version().first << "-"
493
0
                     << rowset_writer->version().second << ", error status " << status;
494
0
        return status;
495
0
    }
496
    // copy delete bitmap to new tablet.
497
0
    if (new_tablet->keys_type() == UNIQUE_KEYS && new_tablet->enable_unique_key_merge_on_write()) {
498
0
        DeleteBitmap origin_delete_bitmap(base_tablet->tablet_id());
499
0
        base_tablet->tablet_meta()->delete_bitmap().subset(
500
0
                {rowset_reader->rowset()->rowset_id(), 0, 0},
501
0
                {rowset_reader->rowset()->rowset_id(), UINT32_MAX, INT64_MAX},
502
0
                &origin_delete_bitmap);
503
0
        for (auto& iter : origin_delete_bitmap.delete_bitmap) {
504
0
            int ret = new_tablet->tablet_meta()->delete_bitmap().set(
505
0
                    {rowset_writer->rowset_id(), std::get<1>(iter.first), std::get<2>(iter.first)},
506
0
                    iter.second);
507
0
            DCHECK(ret == 1);
508
0
        }
509
0
    }
510
0
    return Status::OK();
511
0
}
512
513
Status VSchemaChangeDirectly::_inner_process(RowsetReaderSharedPtr rowset_reader,
514
                                             RowsetWriter* rowset_writer, BaseTabletSPtr new_tablet,
515
                                             TabletSchemaSPtr base_tablet_schema,
516
0
                                             TabletSchemaSPtr new_tablet_schema) {
517
0
    bool eof = false;
518
0
    do {
519
0
        auto new_block = vectorized::Block::create_unique(new_tablet_schema->create_block());
520
0
        auto ref_block = vectorized::Block::create_unique(base_tablet_schema->create_block());
521
522
0
        auto st = rowset_reader->next_block(ref_block.get());
523
0
        if (!st) {
524
0
            if (st.is<ErrorCode::END_OF_FILE>()) {
525
0
                if (ref_block->rows() == 0) {
526
0
                    break;
527
0
                } else {
528
0
                    eof = true;
529
0
                }
530
0
            } else {
531
0
                return st;
532
0
            }
533
0
        }
534
535
0
        RETURN_IF_ERROR(_changer.change_block(ref_block.get(), new_block.get()));
536
0
        RETURN_IF_ERROR(rowset_writer->add_block(new_block.get()));
537
0
    } while (!eof);
538
539
0
    RETURN_IF_ERROR(rowset_writer->flush());
540
0
    return Status::OK();
541
0
}
542
543
VBaseSchemaChangeWithSorting::VBaseSchemaChangeWithSorting(const BlockChanger& changer,
544
                                                           size_t memory_limitation)
545
        : _changer(changer),
546
          _memory_limitation(memory_limitation),
547
0
          _temp_delta_versions(Version::mock()) {
548
0
    _mem_tracker = std::make_unique<MemTracker>(
549
0
            fmt::format("VSchemaChangeWithSorting:changer={}", std::to_string(int64(&changer))));
550
0
}
551
552
Status VBaseSchemaChangeWithSorting::_inner_process(RowsetReaderSharedPtr rowset_reader,
553
                                                    RowsetWriter* rowset_writer,
554
                                                    BaseTabletSPtr new_tablet,
555
                                                    TabletSchemaSPtr base_tablet_schema,
556
0
                                                    TabletSchemaSPtr new_tablet_schema) {
557
    // for internal sorting
558
0
    std::vector<std::unique_ptr<vectorized::Block>> blocks;
559
560
0
    RowsetSharedPtr rowset = rowset_reader->rowset();
561
0
    SegmentsOverlapPB segments_overlap = rowset->rowset_meta()->segments_overlap();
562
0
    int64_t newest_write_timestamp = rowset->newest_write_timestamp();
563
0
    _temp_delta_versions.first = _temp_delta_versions.second;
564
0
    _src_rowsets.clear(); // init _src_rowsets
565
0
    auto create_rowset = [&]() -> Status {
566
0
        if (blocks.empty()) {
567
0
            return Status::OK();
568
0
        }
569
570
0
        auto rowset = DORIS_TRY(_internal_sorting(
571
0
                blocks, Version(_temp_delta_versions.second, _temp_delta_versions.second + 1),
572
0
                newest_write_timestamp, new_tablet, BETA_ROWSET, segments_overlap,
573
0
                new_tablet_schema));
574
0
        _src_rowsets.push_back(std::move(rowset));
575
0
        for (auto& block : blocks) {
576
0
            _mem_tracker->release(block->allocated_bytes());
577
0
        }
578
0
        blocks.clear();
579
580
        // increase temp version
581
0
        _temp_delta_versions.second += 2;
582
0
        return Status::OK();
583
0
    };
584
585
0
    auto new_block = vectorized::Block::create_unique(new_tablet_schema->create_block());
586
587
0
    bool eof = false;
588
0
    do {
589
0
        auto ref_block = vectorized::Block::create_unique(base_tablet_schema->create_block());
590
0
        auto st = rowset_reader->next_block(ref_block.get());
591
0
        if (!st) {
592
0
            if (st.is<ErrorCode::END_OF_FILE>()) {
593
0
                if (ref_block->rows() == 0) {
594
0
                    break;
595
0
                } else {
596
0
                    eof = true;
597
0
                }
598
0
            } else {
599
0
                return st;
600
0
            }
601
0
        }
602
603
0
        RETURN_IF_ERROR(_changer.change_block(ref_block.get(), new_block.get()));
604
605
0
        constexpr double HOLD_BLOCK_MEMORY_RATE =
606
0
                0.66; // Reserve some memory for use by other parts of this job
607
0
        if (_mem_tracker->consumption() + new_block->allocated_bytes() > _memory_limitation ||
608
0
            _mem_tracker->consumption() > _memory_limitation * HOLD_BLOCK_MEMORY_RATE) {
609
0
            RETURN_IF_ERROR(create_rowset());
610
611
0
            if (_mem_tracker->consumption() + new_block->allocated_bytes() > _memory_limitation) {
612
0
                return Status::Error<INVALID_ARGUMENT>(
613
0
                        "Memory limitation is too small for Schema Change. _memory_limitation={}, "
614
0
                        "new_block->allocated_bytes()={}, consumption={}",
615
0
                        _memory_limitation, new_block->allocated_bytes(),
616
0
                        _mem_tracker->consumption());
617
0
            }
618
0
        }
619
0
        _mem_tracker->consume(new_block->allocated_bytes());
620
621
        // move unique ptr
622
0
        blocks.push_back(vectorized::Block::create_unique(new_tablet_schema->create_block()));
623
0
        swap(blocks.back(), new_block);
624
0
    } while (!eof);
625
626
0
    RETURN_IF_ERROR(create_rowset());
627
628
0
    if (_src_rowsets.empty()) {
629
0
        RETURN_IF_ERROR(rowset_writer->flush());
630
0
    } else {
631
0
        RETURN_IF_ERROR(
632
0
                _external_sorting(_src_rowsets, rowset_writer, new_tablet, new_tablet_schema));
633
0
    }
634
635
0
    return Status::OK();
636
0
}
637
638
Result<RowsetSharedPtr> VBaseSchemaChangeWithSorting::_internal_sorting(
639
        const std::vector<std::unique_ptr<vectorized::Block>>& blocks, const Version& version,
640
        int64_t newest_write_timestamp, BaseTabletSPtr new_tablet, RowsetTypePB new_rowset_type,
641
0
        SegmentsOverlapPB segments_overlap, TabletSchemaSPtr new_tablet_schema) {
642
0
    uint64_t merged_rows = 0;
643
0
    MultiBlockMerger merger(new_tablet);
644
0
    RowsetWriterContext context;
645
0
    context.version = version;
646
0
    context.rowset_state = VISIBLE;
647
0
    context.segments_overlap = segments_overlap;
648
0
    context.tablet_schema = new_tablet_schema;
649
0
    context.newest_write_timestamp = newest_write_timestamp;
650
0
    context.write_type = DataWriteType::TYPE_SCHEMA_CHANGE;
651
0
    std::unique_ptr<RowsetWriter> rowset_writer;
652
    // TODO(plat1ko): Use monad op
653
0
    if (auto result = new_tablet->create_rowset_writer(context, false); !result.has_value())
654
0
            [[unlikely]] {
655
0
        return unexpected(std::move(result).error());
656
0
    } else {
657
0
        rowset_writer = std::move(result).value();
658
0
    }
659
0
    RETURN_IF_ERROR_RESULT(merger.merge(blocks, rowset_writer.get(), &merged_rows));
660
0
    _add_merged_rows(merged_rows);
661
0
    RowsetSharedPtr rowset;
662
0
    RETURN_IF_ERROR_RESULT(rowset_writer->build(rowset));
663
0
    return rowset;
664
0
}
665
666
Result<RowsetSharedPtr> VLocalSchemaChangeWithSorting::_internal_sorting(
667
        const std::vector<std::unique_ptr<vectorized::Block>>& blocks, const Version& version,
668
        int64_t newest_write_timestamp, BaseTabletSPtr new_tablet, RowsetTypePB new_rowset_type,
669
0
        SegmentsOverlapPB segments_overlap, TabletSchemaSPtr new_tablet_schema) {
670
0
    uint64_t merged_rows = 0;
671
0
    MultiBlockMerger merger(new_tablet);
672
0
    RowsetWriterContext context;
673
0
    context.version = version;
674
0
    context.rowset_state = VISIBLE;
675
0
    context.segments_overlap = segments_overlap;
676
0
    context.tablet_schema = new_tablet_schema;
677
0
    context.newest_write_timestamp = newest_write_timestamp;
678
0
    context.write_type = DataWriteType::TYPE_SCHEMA_CHANGE;
679
0
    std::unique_ptr<RowsetWriter> rowset_writer;
680
    // TODO(plat1ko): Use monad op
681
0
    if (auto result = new_tablet->create_rowset_writer(context, false); !result.has_value())
682
0
            [[unlikely]] {
683
0
        return unexpected(std::move(result).error());
684
0
    } else {
685
0
        rowset_writer = std::move(result).value();
686
0
    }
687
0
    auto guard = _local_storage_engine.pending_local_rowsets().add(context.rowset_id);
688
0
    _pending_rs_guards.push_back(std::move(guard));
689
0
    RETURN_IF_ERROR_RESULT(merger.merge(blocks, rowset_writer.get(), &merged_rows));
690
0
    _add_merged_rows(merged_rows);
691
0
    RowsetSharedPtr rowset;
692
0
    RETURN_IF_ERROR_RESULT(rowset_writer->build(rowset));
693
0
    return rowset;
694
0
}
695
696
Status VBaseSchemaChangeWithSorting::_external_sorting(vector<RowsetSharedPtr>& src_rowsets,
697
                                                       RowsetWriter* rowset_writer,
698
                                                       BaseTabletSPtr new_tablet,
699
0
                                                       TabletSchemaSPtr new_tablet_schema) {
700
0
    std::vector<RowsetReaderSharedPtr> rs_readers;
701
0
    for (auto& rowset : src_rowsets) {
702
0
        RowsetReaderSharedPtr rs_reader;
703
0
        RETURN_IF_ERROR(rowset->create_reader(&rs_reader));
704
0
        rs_readers.push_back(rs_reader);
705
0
    }
706
707
0
    Merger::Statistics stats;
708
0
    RETURN_IF_ERROR(Merger::vmerge_rowsets(new_tablet, ReaderType::READER_ALTER_TABLE,
709
0
                                           *new_tablet_schema, rs_readers, rowset_writer, &stats));
710
0
    _add_merged_rows(stats.merged_rows);
711
0
    _add_filtered_rows(stats.filtered_rows);
712
0
    return Status::OK();
713
0
}
714
715
Status VLocalSchemaChangeWithSorting::_inner_process(RowsetReaderSharedPtr rowset_reader,
716
                                                     RowsetWriter* rowset_writer,
717
                                                     BaseTabletSPtr new_tablet,
718
                                                     TabletSchemaSPtr base_tablet_schema,
719
0
                                                     TabletSchemaSPtr new_tablet_schema) {
720
0
    Defer defer {[&]() {
721
        // remove the intermediate rowsets generated by internal sorting
722
0
        for (auto& row_set : _src_rowsets) {
723
0
            _local_storage_engine.add_unused_rowset(row_set);
724
0
        }
725
0
    }};
726
0
    _pending_rs_guards.clear();
727
0
    return VBaseSchemaChangeWithSorting::_inner_process(rowset_reader, rowset_writer, new_tablet,
728
0
                                                        base_tablet_schema, new_tablet_schema);
729
0
}
730
731
0
Status SchemaChangeJob::process_alter_tablet(const TAlterTabletReqV2& request) {
732
0
    if (!request.__isset.desc_tbl) {
733
0
        return Status::Error<INVALID_ARGUMENT>(
734
0
                "desc_tbl is not set. Maybe the FE version is not equal to the BE "
735
0
                "version.");
736
0
    }
737
0
    if (_base_tablet == nullptr) {
738
0
        return Status::Error<TABLE_NOT_FOUND>("fail to find base tablet. base_tablet={}",
739
0
                                              request.base_tablet_id);
740
0
    }
741
0
    if (_new_tablet == nullptr) {
742
0
        return Status::Error<TABLE_NOT_FOUND>("fail to find new tablet. new_tablet={}",
743
0
                                              request.new_tablet_id);
744
0
    }
745
746
0
    LOG(INFO) << "begin to do request alter tablet: base_tablet_id=" << request.base_tablet_id
747
0
              << ", new_tablet_id=" << request.new_tablet_id
748
0
              << ", alter_version=" << request.alter_version;
749
750
    // Lock schema_change_lock util schema change info is stored in tablet header
751
0
    std::unique_lock<std::mutex> schema_change_lock(_base_tablet->get_schema_change_lock(),
752
0
                                                    std::try_to_lock);
753
0
    if (!schema_change_lock.owns_lock()) {
754
0
        return Status::Error<TRY_LOCK_FAILED>("failed to obtain schema change lock. base_tablet={}",
755
0
                                              request.base_tablet_id);
756
0
    }
757
758
0
    Status res = _do_process_alter_tablet(request);
759
0
    LOG(INFO) << "finished alter tablet process, res=" << res;
760
0
    DBUG_EXECUTE_IF("SchemaChangeJob::process_alter_tablet.leave.sleep", { sleep(5); });
761
0
    return res;
762
0
}
763
764
SchemaChangeJob::SchemaChangeJob(StorageEngine& local_storage_engine,
765
                                 const TAlterTabletReqV2& request, const std::string& job_id)
766
0
        : _local_storage_engine(local_storage_engine) {
767
0
    _base_tablet = _local_storage_engine.tablet_manager()->get_tablet(request.base_tablet_id);
768
0
    _new_tablet = _local_storage_engine.tablet_manager()->get_tablet(request.new_tablet_id);
769
0
    if (_base_tablet && _new_tablet) {
770
0
        _base_tablet_schema = std::make_shared<TabletSchema>();
771
0
        _base_tablet_schema->update_tablet_columns(*_base_tablet->tablet_schema(), request.columns);
772
        // The request only include column info, do not include bitmap or bloomfilter index info,
773
        // So we also need to copy index info from the real base tablet
774
0
        _base_tablet_schema->update_index_info_from(*_base_tablet->tablet_schema());
775
        // During a schema change, the extracted columns of a variant should not be included in the tablet schema.
776
        // This is because the schema change for a variant needs to ignore the extracted columns.
777
        // Otherwise, the schema types in different rowsets might be inconsistent. When performing a schema change,
778
        // the complete variant is constructed by reading all the sub-columns of the variant.
779
0
        _new_tablet_schema = _new_tablet->tablet_schema()->copy_without_variant_extracted_columns();
780
0
    }
781
0
    _job_id = job_id;
782
0
}
783
784
// In the past schema change and rollup will create new tablet  and will wait for txns starting before the task to finished
785
// It will cost a lot of time to wait and the task is very difficult to understand.
786
// In alter task v2, FE will call BE to create tablet and send an alter task to BE to convert historical data.
787
// The admin should upgrade all BE and then upgrade FE.
788
// Should delete the old code after upgrade finished.
789
0
Status SchemaChangeJob::_do_process_alter_tablet(const TAlterTabletReqV2& request) {
790
0
    DBUG_EXECUTE_IF("SchemaChangeJob._do_process_alter_tablet.sleep", { sleep(10); })
791
0
    Status res;
792
0
    signal::tablet_id = _base_tablet->get_table_id();
793
794
    // check if tablet's state is not_ready, if it is ready, it means the tablet already finished
795
    // check whether the tablet's max continuous version == request.version
796
0
    if (_new_tablet->tablet_state() != TABLET_NOTREADY) {
797
0
        res = _validate_alter_result(request);
798
0
        LOG(INFO) << "tablet's state=" << _new_tablet->tablet_state()
799
0
                  << " the convert job already finished, check its version"
800
0
                  << " res=" << res;
801
0
        return res;
802
0
    }
803
0
    _new_tablet->set_alter_failed(false);
804
0
    Defer defer([this] {
805
        // if tablet state is not TABLET_RUNNING when return, indicates that alter has failed.
806
0
        if (_new_tablet->tablet_state() != TABLET_RUNNING) {
807
0
            _new_tablet->set_alter_failed(true);
808
0
        }
809
0
    });
810
811
0
    LOG(INFO) << "finish to validate alter tablet request. begin to convert data from base tablet "
812
0
                 "to new tablet"
813
0
              << " base_tablet=" << _base_tablet->tablet_id()
814
0
              << " new_tablet=" << _new_tablet->tablet_id();
815
816
0
    std::shared_lock base_migration_rlock(_base_tablet->get_migration_lock(), std::try_to_lock);
817
0
    if (!base_migration_rlock.owns_lock()) {
818
0
        return Status::Error<TRY_LOCK_FAILED>(
819
0
                "SchemaChangeJob::_do_process_alter_tablet get lock failed");
820
0
    }
821
0
    std::shared_lock new_migration_rlock(_new_tablet->get_migration_lock(), std::try_to_lock);
822
0
    if (!new_migration_rlock.owns_lock()) {
823
0
        return Status::Error<TRY_LOCK_FAILED>(
824
0
                "SchemaChangeJob::_do_process_alter_tablet get lock failed");
825
0
    }
826
827
0
    std::vector<Version> versions_to_be_changed;
828
0
    int64_t end_version = -1;
829
    // reader_context is stack variables, it's lifetime should keep the same
830
    // with rs_readers
831
0
    RowsetReaderContext reader_context;
832
0
    std::vector<RowSetSplits> rs_splits;
833
    // delete handlers for new tablet
834
0
    DeleteHandler delete_handler;
835
0
    std::vector<ColumnId> return_columns;
836
837
    // Use tablet schema directly from base tablet, they are the newest schema, not contain
838
    // dropped column during light weight schema change.
839
    // But the tablet schema in base tablet maybe not the latest from FE, so that if fe pass through
840
    // a tablet schema, then use request schema.
841
0
    size_t num_cols =
842
0
            request.columns.empty() ? _base_tablet_schema->num_columns() : request.columns.size();
843
0
    return_columns.resize(num_cols);
844
0
    for (int i = 0; i < num_cols; ++i) {
845
0
        return_columns[i] = i;
846
0
    }
847
848
0
    DBUG_EXECUTE_IF("SchemaChangeJob::_do_process_alter_tablet.block", DBUG_BLOCK);
849
850
    // begin to find deltas to convert from base tablet to new tablet so that
851
    // obtain base tablet and new tablet's push lock and header write lock to prevent loading data
852
0
    {
853
0
        std::lock_guard base_tablet_lock(_base_tablet->get_push_lock());
854
0
        std::lock_guard new_tablet_lock(_new_tablet->get_push_lock());
855
0
        std::lock_guard base_tablet_wlock(_base_tablet->get_header_lock());
856
0
        SCOPED_SIMPLE_TRACE_IF_TIMEOUT(TRACE_TABLET_LOCK_THRESHOLD);
857
0
        std::lock_guard<std::shared_mutex> new_tablet_wlock(_new_tablet->get_header_lock());
858
859
0
        do {
860
0
            RowsetSharedPtr max_rowset;
861
            // get history data to be converted and it will check if there is hold in base tablet
862
0
            res = _get_versions_to_be_changed(&versions_to_be_changed, &max_rowset);
863
0
            if (!res) {
864
0
                LOG(WARNING) << "fail to get version to be changed. res=" << res;
865
0
                break;
866
0
            }
867
868
0
            DBUG_EXECUTE_IF("SchemaChangeJob.process_alter_tablet.alter_fail", {
869
0
                res = Status::InternalError(
870
0
                        "inject alter tablet failed. base_tablet={}, new_tablet={}",
871
0
                        request.base_tablet_id, request.new_tablet_id);
872
0
                LOG(WARNING) << "inject error. res=" << res;
873
0
                break;
874
0
            });
875
876
            // should check the max_version >= request.alter_version, if not the convert is useless
877
0
            if (max_rowset == nullptr || max_rowset->end_version() < request.alter_version) {
878
0
                res = Status::InternalError(
879
0
                        "base tablet's max version={} is less than request version={}",
880
0
                        (max_rowset == nullptr ? 0 : max_rowset->end_version()),
881
0
                        request.alter_version);
882
0
                break;
883
0
            }
884
            // before calculating version_to_be_changed,
885
            // remove all data from new tablet, prevent to rewrite data(those double pushed when wait)
886
0
            LOG(INFO) << "begin to remove all data before end version from new tablet to prevent "
887
0
                         "rewrite."
888
0
                      << " new_tablet=" << _new_tablet->tablet_id()
889
0
                      << ", end_version=" << max_rowset->end_version();
890
0
            std::vector<RowsetSharedPtr> rowsets_to_delete;
891
0
            std::vector<std::pair<Version, RowsetSharedPtr>> version_rowsets;
892
0
            _new_tablet->acquire_version_and_rowsets(&version_rowsets);
893
0
            std::sort(version_rowsets.begin(), version_rowsets.end(),
894
0
                      [](const std::pair<Version, RowsetSharedPtr>& l,
895
0
                         const std::pair<Version, RowsetSharedPtr>& r) {
896
0
                          return l.first.first < r.first.first;
897
0
                      });
898
0
            for (auto& pair : version_rowsets) {
899
0
                if (pair.first.second <= max_rowset->end_version()) {
900
0
                    rowsets_to_delete.push_back(pair.second);
901
0
                } else if (pair.first.first <= max_rowset->end_version()) {
902
                    // If max version is [X-10] and new tablet has version [7-9][10-12],
903
                    // we only can remove [7-9] from new tablet. If we add [X-10] to new tablet, it will has version
904
                    // cross: [X-10] [10-12].
905
                    // So, we should return OLAP_ERR_VERSION_ALREADY_MERGED for fast fail.
906
0
                    return Status::Error<VERSION_ALREADY_MERGED>(
907
0
                            "New tablet has a version {} crossing base tablet's max_version={}",
908
0
                            pair.first.to_string(), max_rowset->end_version());
909
0
                }
910
0
            }
911
0
            std::vector<RowsetSharedPtr> empty_vec;
912
0
            RETURN_IF_ERROR(_new_tablet->delete_rowsets(rowsets_to_delete, false));
913
            // inherit cumulative_layer_point from base_tablet
914
            // check if new_tablet.ce_point > base_tablet.ce_point?
915
0
            _new_tablet->set_cumulative_layer_point(-1);
916
            // save tablet meta
917
0
            _new_tablet->save_meta();
918
0
            for (auto& rowset : rowsets_to_delete) {
919
                // do not call rowset.remove directly, using gc thread to delete it
920
0
                _local_storage_engine.add_unused_rowset(rowset);
921
0
            }
922
923
            // init one delete handler
924
0
            for (auto& version : versions_to_be_changed) {
925
0
                end_version = std::max(end_version, version.second);
926
0
            }
927
928
            // acquire data sources correspond to history versions
929
0
            RETURN_IF_ERROR(
930
0
                    _base_tablet->capture_rs_readers_unlocked(versions_to_be_changed, &rs_splits));
931
0
            if (rs_splits.empty()) {
932
0
                res = Status::Error<ALTER_DELTA_DOES_NOT_EXISTS>(
933
0
                        "fail to acquire all data sources. version_num={}, data_source_num={}",
934
0
                        versions_to_be_changed.size(), rs_splits.size());
935
0
                break;
936
0
            }
937
0
            std::vector<RowsetMetaSharedPtr> del_preds;
938
0
            for (auto&& split : rs_splits) {
939
0
                const auto& rs_meta = split.rs_reader->rowset()->rowset_meta();
940
0
                if (!rs_meta->has_delete_predicate() || rs_meta->start_version() > end_version) {
941
0
                    continue;
942
0
                }
943
0
                _base_tablet_schema->merge_dropped_columns(*rs_meta->tablet_schema());
944
0
                del_preds.push_back(rs_meta);
945
0
            }
946
0
            res = delete_handler.init(_base_tablet_schema, del_preds, end_version);
947
0
            if (!res) {
948
0
                LOG(WARNING) << "init delete handler failed. base_tablet="
949
0
                             << _base_tablet->tablet_id() << ", end_version=" << end_version;
950
0
                break;
951
0
            }
952
953
0
            reader_context.reader_type = ReaderType::READER_ALTER_TABLE;
954
0
            reader_context.tablet_schema = _base_tablet_schema;
955
0
            reader_context.need_ordered_result = true;
956
0
            reader_context.delete_handler = &delete_handler;
957
0
            reader_context.return_columns = &return_columns;
958
0
            reader_context.sequence_id_idx = reader_context.tablet_schema->sequence_col_idx();
959
0
            reader_context.is_unique = _base_tablet->keys_type() == UNIQUE_KEYS;
960
0
            reader_context.batch_size = ALTER_TABLE_BATCH_SIZE;
961
0
            reader_context.delete_bitmap = &_base_tablet->tablet_meta()->delete_bitmap();
962
0
            reader_context.version = Version(0, end_version);
963
0
            for (auto& rs_split : rs_splits) {
964
0
                res = rs_split.rs_reader->init(&reader_context);
965
0
                if (!res) {
966
0
                    LOG(WARNING) << "failed to init rowset reader: " << _base_tablet->tablet_id();
967
0
                    break;
968
0
                }
969
0
            }
970
0
        } while (false);
971
0
    }
972
973
0
    do {
974
0
        if (!res) {
975
0
            break;
976
0
        }
977
0
        SchemaChangeParams sc_params;
978
979
0
        RETURN_IF_ERROR(
980
0
                DescriptorTbl::create(&sc_params.pool, request.desc_tbl, &sc_params.desc_tbl));
981
0
        sc_params.ref_rowset_readers.reserve(rs_splits.size());
982
0
        for (RowSetSplits& split : rs_splits) {
983
0
            sc_params.ref_rowset_readers.emplace_back(split.rs_reader);
984
0
        }
985
0
        sc_params.delete_handler = &delete_handler;
986
0
        sc_params.be_exec_version = request.be_exec_version;
987
0
        DCHECK(request.__isset.alter_tablet_type);
988
0
        switch (request.alter_tablet_type) {
989
0
        case TAlterTabletType::SCHEMA_CHANGE:
990
0
            sc_params.alter_tablet_type = AlterTabletType::SCHEMA_CHANGE;
991
0
            break;
992
0
        case TAlterTabletType::ROLLUP:
993
0
            sc_params.alter_tablet_type = AlterTabletType::ROLLUP;
994
0
            break;
995
0
        case TAlterTabletType::MIGRATION:
996
0
            sc_params.alter_tablet_type = AlterTabletType::MIGRATION;
997
0
            break;
998
0
        }
999
0
        if (request.__isset.materialized_view_params) {
1000
0
            for (auto item : request.materialized_view_params) {
1001
0
                AlterMaterializedViewParam mv_param;
1002
0
                mv_param.column_name = item.column_name;
1003
1004
0
                if (item.__isset.mv_expr) {
1005
0
                    mv_param.expr = std::make_shared<TExpr>(item.mv_expr);
1006
0
                }
1007
0
                sc_params.materialized_params_map.insert(
1008
0
                        std::make_pair(to_lower(item.column_name), mv_param));
1009
0
            }
1010
0
        }
1011
0
        {
1012
0
            std::lock_guard<std::shared_mutex> wrlock(_mutex);
1013
0
            _tablet_ids_in_converting.insert(_new_tablet->tablet_id());
1014
0
        }
1015
0
        int64_t real_alter_version = 0;
1016
0
        sc_params.enable_unique_key_merge_on_write =
1017
0
                _new_tablet->enable_unique_key_merge_on_write();
1018
0
        res = _convert_historical_rowsets(sc_params, &real_alter_version);
1019
0
        {
1020
0
            std::lock_guard<std::shared_mutex> wrlock(_mutex);
1021
0
            _tablet_ids_in_converting.erase(_new_tablet->tablet_id());
1022
0
        }
1023
0
        if (!res) {
1024
0
            break;
1025
0
        }
1026
1027
0
        DCHECK_GE(real_alter_version, request.alter_version);
1028
1029
0
        if (_new_tablet->keys_type() == UNIQUE_KEYS &&
1030
0
            _new_tablet->enable_unique_key_merge_on_write()) {
1031
0
            res = _calc_delete_bitmap_for_mow_table(real_alter_version);
1032
0
            if (!res) {
1033
0
                break;
1034
0
            }
1035
0
        } else {
1036
            // set state to ready
1037
0
            std::lock_guard<std::shared_mutex> new_wlock(_new_tablet->get_header_lock());
1038
0
            SCOPED_SIMPLE_TRACE_IF_TIMEOUT(TRACE_TABLET_LOCK_THRESHOLD);
1039
0
            res = _new_tablet->set_tablet_state(TabletState::TABLET_RUNNING);
1040
0
            if (!res) {
1041
0
                break;
1042
0
            }
1043
0
            _new_tablet->save_meta();
1044
0
        }
1045
0
    } while (false);
1046
1047
0
    if (res) {
1048
        // _validate_alter_result should be outside the above while loop.
1049
        // to avoid requiring the header lock twice.
1050
0
        res = _validate_alter_result(request);
1051
0
    }
1052
1053
    // if failed convert history data, then just remove the new tablet
1054
0
    if (!res) {
1055
0
        LOG(WARNING) << "failed to alter tablet. base_tablet=" << _base_tablet->tablet_id()
1056
0
                     << ", drop new_tablet=" << _new_tablet->tablet_id();
1057
        // do not drop the new tablet and its data. GC thread will
1058
0
    }
1059
1060
0
    return res;
1061
0
}
1062
1063
0
bool SchemaChangeJob::tablet_in_converting(int64_t tablet_id) {
1064
0
    std::shared_lock rdlock(_mutex);
1065
0
    return _tablet_ids_in_converting.find(tablet_id) != _tablet_ids_in_converting.end();
1066
0
}
1067
1068
Status SchemaChangeJob::_get_versions_to_be_changed(std::vector<Version>* versions_to_be_changed,
1069
0
                                                    RowsetSharedPtr* max_rowset) {
1070
0
    RowsetSharedPtr rowset = _base_tablet->get_rowset_with_max_version();
1071
0
    if (rowset == nullptr) {
1072
0
        return Status::Error<ALTER_DELTA_DOES_NOT_EXISTS>("Tablet has no version. base_tablet={}",
1073
0
                                                          _base_tablet->tablet_id());
1074
0
    }
1075
0
    *max_rowset = rowset;
1076
1077
0
    RETURN_IF_ERROR(_base_tablet->capture_consistent_versions_unlocked(
1078
0
            Version(0, rowset->version().second), versions_to_be_changed, false, false));
1079
1080
0
    return Status::OK();
1081
0
}
1082
1083
// The `real_alter_version` parameter indicates that the version of [0-real_alter_version] is
1084
// converted from a base tablet, only used for the mow table now.
1085
Status SchemaChangeJob::_convert_historical_rowsets(const SchemaChangeParams& sc_params,
1086
0
                                                    int64_t* real_alter_version) {
1087
0
    LOG(INFO) << "begin to convert historical rowsets for new_tablet from base_tablet."
1088
0
              << " base_tablet=" << _base_tablet->tablet_id()
1089
0
              << ", new_tablet=" << _new_tablet->tablet_id() << ", job_id=" << _job_id;
1090
1091
    // find end version
1092
0
    int32_t end_version = -1;
1093
0
    for (const auto& ref_rowset_reader : sc_params.ref_rowset_readers) {
1094
0
        if (ref_rowset_reader->version().second > end_version) {
1095
0
            end_version = ref_rowset_reader->version().second;
1096
0
        }
1097
0
    }
1098
1099
    // Add filter information in change, and filter column information will be set in parse_request
1100
    // And filter some data every time the row block changes
1101
0
    BlockChanger changer(_new_tablet_schema, *sc_params.desc_tbl);
1102
1103
0
    bool sc_sorting = false;
1104
0
    bool sc_directly = false;
1105
1106
    // a.Parse the Alter request and convert it into an internal representation
1107
0
    Status res = parse_request(sc_params, _base_tablet_schema.get(), _new_tablet_schema.get(),
1108
0
                               &changer, &sc_sorting, &sc_directly);
1109
0
    LOG(INFO) << "schema change type, sc_sorting: " << sc_sorting
1110
0
              << ", sc_directly: " << sc_directly << ", base_tablet=" << _base_tablet->tablet_id()
1111
0
              << ", new_tablet=" << _new_tablet->tablet_id();
1112
1113
0
    auto process_alter_exit = [&]() -> Status {
1114
0
        {
1115
            // save tablet meta here because rowset meta is not saved during add rowset
1116
0
            std::lock_guard new_wlock(_new_tablet->get_header_lock());
1117
0
            SCOPED_SIMPLE_TRACE_IF_TIMEOUT(TRACE_TABLET_LOCK_THRESHOLD);
1118
0
            _new_tablet->save_meta();
1119
0
        }
1120
0
        if (res) {
1121
0
            Version test_version(0, end_version);
1122
0
            res = _new_tablet->check_version_integrity(test_version);
1123
0
        }
1124
1125
0
        LOG(INFO) << "finish converting rowsets for new_tablet from base_tablet. "
1126
0
                  << "base_tablet=" << _base_tablet->tablet_id()
1127
0
                  << ", new_tablet=" << _new_tablet->tablet_id();
1128
0
        return res;
1129
0
    };
1130
1131
0
    if (!res) {
1132
0
        LOG(WARNING) << "failed to parse the request. res=" << res;
1133
0
        return process_alter_exit();
1134
0
    }
1135
1136
0
    if (!sc_sorting && !sc_directly && sc_params.alter_tablet_type == AlterTabletType::ROLLUP) {
1137
0
        res = Status::Error<SCHEMA_SCHEMA_INVALID>(
1138
0
                "Don't support to add materialized view by linked schema change");
1139
0
        return process_alter_exit();
1140
0
    }
1141
1142
    // b. Generate historical data converter
1143
0
    auto sc_procedure = _get_sc_procedure(
1144
0
            changer, sc_sorting, sc_directly,
1145
0
            _local_storage_engine.memory_limitation_bytes_per_thread_for_schema_change());
1146
1147
0
    DBUG_EXECUTE_IF("SchemaChangeJob::_convert_historical_rowsets.block", DBUG_BLOCK);
1148
1149
    // c.Convert historical data
1150
0
    bool have_failure_rowset = false;
1151
0
    for (const auto& rs_reader : sc_params.ref_rowset_readers) {
1152
        // set status for monitor
1153
        // As long as there is a new_table as running, ref table is set as running
1154
        // NOTE If the first sub_table fails first, it will continue to go as normal here
1155
        // When tablet create new rowset writer, it may change rowset type, in this case
1156
        // linked schema change will not be used.
1157
0
        RowsetWriterContext context;
1158
0
        context.version = rs_reader->version();
1159
0
        context.rowset_state = VISIBLE;
1160
0
        context.segments_overlap = rs_reader->rowset()->rowset_meta()->segments_overlap();
1161
0
        context.tablet_schema = _new_tablet_schema;
1162
0
        context.newest_write_timestamp = rs_reader->newest_write_timestamp();
1163
1164
0
        if (!rs_reader->rowset()->is_local()) {
1165
0
            context.storage_resource =
1166
0
                    *DORIS_TRY(rs_reader->rowset()->rowset_meta()->remote_storage_resource());
1167
0
        }
1168
1169
0
        context.write_type = DataWriteType::TYPE_SCHEMA_CHANGE;
1170
0
        auto result = _new_tablet->create_rowset_writer(context, false);
1171
0
        if (!result.has_value()) {
1172
0
            res = Status::Error<ROWSET_BUILDER_INIT>("create_rowset_writer failed, reason={}",
1173
0
                                                     result.error().to_string());
1174
0
            return process_alter_exit();
1175
0
        }
1176
0
        auto rowset_writer = std::move(result).value();
1177
0
        auto pending_rs_guard = _local_storage_engine.add_pending_rowset(context);
1178
1179
0
        if (res = sc_procedure->process(rs_reader, rowset_writer.get(), _new_tablet, _base_tablet,
1180
0
                                        _base_tablet_schema, _new_tablet_schema);
1181
0
            !res) {
1182
0
            LOG(WARNING) << "failed to process the version."
1183
0
                         << " version=" << rs_reader->version().first << "-"
1184
0
                         << rs_reader->version().second << ", " << res.to_string();
1185
0
            return process_alter_exit();
1186
0
        }
1187
        // Add the new version of the data to the header
1188
        // In order to prevent the occurrence of deadlock, we must first lock the old table, and then lock the new table
1189
0
        std::lock_guard lock(_new_tablet->get_push_lock());
1190
0
        RowsetSharedPtr new_rowset;
1191
0
        if (!(res = rowset_writer->build(new_rowset)).ok()) {
1192
0
            LOG(WARNING) << "failed to build rowset, exit alter process";
1193
0
            return process_alter_exit();
1194
0
        }
1195
0
        res = _new_tablet->add_rowset(new_rowset);
1196
0
        if (res.is<PUSH_VERSION_ALREADY_EXIST>()) {
1197
0
            LOG(WARNING) << "version already exist, version revert occurred. "
1198
0
                         << "tablet=" << _new_tablet->tablet_id() << ", version='"
1199
0
                         << rs_reader->version().first << "-" << rs_reader->version().second;
1200
0
            _local_storage_engine.add_unused_rowset(new_rowset);
1201
0
            have_failure_rowset = true;
1202
0
            res = Status::OK();
1203
0
        } else if (!res) {
1204
0
            LOG(WARNING) << "failed to register new version. "
1205
0
                         << " tablet=" << _new_tablet->tablet_id()
1206
0
                         << ", version=" << rs_reader->version().first << "-"
1207
0
                         << rs_reader->version().second;
1208
0
            _local_storage_engine.add_unused_rowset(new_rowset);
1209
0
            return process_alter_exit();
1210
0
        } else {
1211
0
            VLOG_NOTICE << "register new version. tablet=" << _new_tablet->tablet_id()
1212
0
                        << ", version=" << rs_reader->version().first << "-"
1213
0
                        << rs_reader->version().second;
1214
0
        }
1215
0
        if (!have_failure_rowset) {
1216
0
            *real_alter_version = rs_reader->version().second;
1217
0
        }
1218
1219
0
        VLOG_TRACE << "succeed to convert a history version."
1220
0
                   << " version=" << rs_reader->version().first << "-"
1221
0
                   << rs_reader->version().second;
1222
0
    }
1223
1224
    // XXX:The SchemaChange state should not be canceled at this time, because the new Delta has to be converted to the old and new Schema version
1225
0
    return process_alter_exit();
1226
0
}
1227
1228
static const std::string WHERE_SIGN_LOWER = to_lower("__DORIS_WHERE_SIGN__");
1229
1230
// @static
1231
// Analyze the mapping of the column and the mapping of the filter key
1232
Status SchemaChangeJob::parse_request(const SchemaChangeParams& sc_params,
1233
                                      TabletSchema* base_tablet_schema,
1234
                                      TabletSchema* new_tablet_schema, BlockChanger* changer,
1235
0
                                      bool* sc_sorting, bool* sc_directly) {
1236
0
    changer->set_type(sc_params.alter_tablet_type);
1237
0
    changer->set_compatible_version(sc_params.be_exec_version);
1238
1239
0
    const std::unordered_map<std::string, AlterMaterializedViewParam>& materialized_function_map =
1240
0
            sc_params.materialized_params_map;
1241
0
    DescriptorTbl desc_tbl = *sc_params.desc_tbl;
1242
1243
    // set column mapping
1244
0
    for (int i = 0, new_schema_size = new_tablet_schema->num_columns(); i < new_schema_size; ++i) {
1245
0
        const TabletColumn& new_column = new_tablet_schema->column(i);
1246
0
        const std::string& column_name_lower = to_lower(new_column.name());
1247
0
        ColumnMapping* column_mapping = changer->get_mutable_column_mapping(i);
1248
0
        column_mapping->new_column = &new_column;
1249
1250
0
        column_mapping->ref_column_idx = base_tablet_schema->field_index(new_column.name());
1251
1252
0
        if (materialized_function_map.find(column_name_lower) != materialized_function_map.end()) {
1253
0
            auto mv_param = materialized_function_map.find(column_name_lower)->second;
1254
0
            column_mapping->expr = mv_param.expr;
1255
0
            if (column_mapping->expr != nullptr) {
1256
0
                continue;
1257
0
            }
1258
0
        }
1259
1260
0
        if (column_mapping->ref_column_idx >= 0) {
1261
0
            continue;
1262
0
        }
1263
1264
0
        if (sc_params.alter_tablet_type == ROLLUP) {
1265
0
            std::string materialized_function_map_str;
1266
0
            for (auto str : materialized_function_map) {
1267
0
                if (!materialized_function_map_str.empty()) {
1268
0
                    materialized_function_map_str += ',';
1269
0
                }
1270
0
                materialized_function_map_str += str.first;
1271
0
            }
1272
0
            return Status::InternalError(
1273
0
                    "referenced column was missing. [column={},materialized_function_map={}]",
1274
0
                    new_column.name(), materialized_function_map_str);
1275
0
        }
1276
1277
0
        if (new_column.name().find("__doris_shadow_") == 0) {
1278
            // Should delete in the future, just a protection for bug.
1279
0
            LOG(INFO) << "a shadow column is encountered " << new_column.name();
1280
0
            return Status::InternalError("failed due to operate on shadow column");
1281
0
        }
1282
        // Newly added column go here
1283
0
        column_mapping->ref_column_idx = -1;
1284
1285
0
        if (i < base_tablet_schema->num_short_key_columns()) {
1286
0
            *sc_directly = true;
1287
0
        }
1288
0
        RETURN_IF_ERROR(
1289
0
                _init_column_mapping(column_mapping, new_column, new_column.default_value()));
1290
1291
0
        LOG(INFO) << "A column with default value will be added after schema changing. "
1292
0
                  << "column=" << new_column.name()
1293
0
                  << ", default_value=" << new_column.default_value();
1294
0
    }
1295
1296
0
    if (materialized_function_map.contains(WHERE_SIGN_LOWER)) {
1297
0
        changer->set_where_expr(materialized_function_map.find(WHERE_SIGN_LOWER)->second.expr);
1298
0
    }
1299
1300
    // If the reference sequence of the Key column is out of order, it needs to be reordered
1301
0
    int num_default_value = 0;
1302
1303
0
    for (int i = 0, new_schema_size = new_tablet_schema->num_key_columns(); i < new_schema_size;
1304
0
         ++i) {
1305
0
        ColumnMapping* column_mapping = changer->get_mutable_column_mapping(i);
1306
1307
0
        if (!column_mapping->has_reference()) {
1308
0
            num_default_value++;
1309
0
            continue;
1310
0
        }
1311
1312
0
        if (column_mapping->ref_column_idx != i - num_default_value) {
1313
0
            *sc_sorting = true;
1314
0
            return Status::OK();
1315
0
        }
1316
0
    }
1317
1318
0
    if (base_tablet_schema->keys_type() != new_tablet_schema->keys_type()) {
1319
        // only when base table is dup and mv is agg
1320
        // the rollup job must be reagg.
1321
0
        *sc_sorting = true;
1322
0
        return Status::OK();
1323
0
    }
1324
1325
    // If the sort of key has not been changed but the new keys num is less then base's,
1326
    // the new table should be re agg.
1327
    // So we also need to set sc_sorting = true.
1328
    // A, B, C are keys(sort keys), D is value
1329
    // followings need resort:
1330
    //      old keys:    A   B   C   D
1331
    //      new keys:    A   B
1332
0
    if (new_tablet_schema->keys_type() != KeysType::DUP_KEYS &&
1333
0
        new_tablet_schema->num_key_columns() < base_tablet_schema->num_key_columns()) {
1334
        // this is a table with aggregate key type, and num of key columns in new schema
1335
        // is less, which means the data in new tablet should be more aggregated.
1336
        // so we use sorting schema change to sort and merge the data.
1337
0
        *sc_sorting = true;
1338
0
        return Status::OK();
1339
0
    }
1340
1341
0
    if (sc_params.alter_tablet_type == ROLLUP) {
1342
0
        *sc_directly = true;
1343
0
        return Status::OK();
1344
0
    }
1345
1346
0
    if (sc_params.enable_unique_key_merge_on_write &&
1347
0
        new_tablet_schema->num_key_columns() > base_tablet_schema->num_key_columns()) {
1348
0
        *sc_directly = true;
1349
0
        return Status::OK();
1350
0
    }
1351
1352
0
    if (base_tablet_schema->num_short_key_columns() != new_tablet_schema->num_short_key_columns()) {
1353
        // the number of short_keys changed, can't do linked schema change
1354
0
        *sc_directly = true;
1355
0
        return Status::OK();
1356
0
    }
1357
1358
0
    if (!sc_params.delete_handler->empty()) {
1359
        // there exists delete condition in header, can't do linked schema change
1360
0
        *sc_directly = true;
1361
0
        return Status::OK();
1362
0
    }
1363
1364
    // if new tablet enable row store, or new tablet has different row store columns
1365
0
    if ((!base_tablet_schema->exist_column(BeConsts::ROW_STORE_COL) &&
1366
0
         new_tablet_schema->exist_column(BeConsts::ROW_STORE_COL)) ||
1367
0
        !std::equal(new_tablet_schema->row_columns_uids().begin(),
1368
0
                    new_tablet_schema->row_columns_uids().end(),
1369
0
                    base_tablet_schema->row_columns_uids().begin(),
1370
0
                    base_tablet_schema->row_columns_uids().end())) {
1371
0
        *sc_directly = true;
1372
0
    }
1373
1374
0
    for (size_t i = 0; i < new_tablet_schema->num_columns(); ++i) {
1375
0
        ColumnMapping* column_mapping = changer->get_mutable_column_mapping(i);
1376
0
        if (column_mapping->expr != nullptr) {
1377
0
            *sc_directly = true;
1378
0
            return Status::OK();
1379
0
        } else if (column_mapping->ref_column_idx >= 0) {
1380
            // index changed
1381
0
            if (vectorized::schema_util::has_schema_index_diff(
1382
0
                        new_tablet_schema, base_tablet_schema, i, column_mapping->ref_column_idx)) {
1383
0
                *sc_directly = true;
1384
0
                return Status::OK();
1385
0
            }
1386
0
        }
1387
0
    }
1388
1389
    // if rs_reader has remote files, link schema change is not supported,
1390
    // use directly schema change instead.
1391
0
    if (!(*sc_directly) && !(*sc_sorting)) {
1392
        // check has remote rowset
1393
        // work for cloud and cold storage
1394
0
        for (const auto& rs_reader : sc_params.ref_rowset_readers) {
1395
0
            if (!rs_reader->rowset()->is_local()) {
1396
0
                *sc_directly = true;
1397
0
                break;
1398
0
            }
1399
0
        }
1400
0
    }
1401
1402
0
    return Status::OK();
1403
0
}
1404
1405
Status SchemaChangeJob::_init_column_mapping(ColumnMapping* column_mapping,
1406
                                             const TabletColumn& column_schema,
1407
0
                                             const std::string& value) {
1408
0
    if (auto field = WrapperField::create(column_schema); field.has_value()) {
1409
0
        column_mapping->default_value = field.value();
1410
0
    } else {
1411
0
        return field.error();
1412
0
    }
1413
1414
0
    if (column_schema.is_nullable() && value.length() == 0) {
1415
0
        column_mapping->default_value->set_null();
1416
0
    } else {
1417
0
        RETURN_IF_ERROR(column_mapping->default_value->from_string(value, column_schema.precision(),
1418
0
                                                                   column_schema.frac()));
1419
0
    }
1420
1421
0
    return Status::OK();
1422
0
}
1423
1424
0
Status SchemaChangeJob::_validate_alter_result(const TAlterTabletReqV2& request) {
1425
0
    Version max_continuous_version = {-1, 0};
1426
0
    _new_tablet->max_continuous_version_from_beginning(&max_continuous_version);
1427
0
    LOG(INFO) << "find max continuous version of tablet=" << _new_tablet->tablet_id()
1428
0
              << ", start_version=" << max_continuous_version.first
1429
0
              << ", end_version=" << max_continuous_version.second;
1430
0
    if (max_continuous_version.second < request.alter_version) {
1431
0
        return Status::InternalError("result version={} is less than request version={}",
1432
0
                                     max_continuous_version.second, request.alter_version);
1433
0
    }
1434
1435
0
    std::vector<std::pair<Version, RowsetSharedPtr>> version_rowsets;
1436
0
    {
1437
0
        std::shared_lock rdlock(_new_tablet->get_header_lock());
1438
0
        _new_tablet->acquire_version_and_rowsets(&version_rowsets);
1439
0
    }
1440
0
    for (auto& pair : version_rowsets) {
1441
0
        RowsetSharedPtr rowset = pair.second;
1442
0
        if (!rowset->check_file_exist()) {
1443
0
            return Status::Error<NOT_FOUND>(
1444
0
                    "SchemaChangeJob::_validate_alter_result meet invalid rowset");
1445
0
        }
1446
0
    }
1447
0
    return Status::OK();
1448
0
}
1449
1450
// For unique with merge-on-write table, should process delete bitmap here.
1451
// 1. During double write, the newly imported rowsets does not calculate
1452
// delete bitmap and publish successfully.
1453
// 2. After conversion, calculate delete bitmap for the rowsets imported
1454
// during double write. During this period, new data can still be imported
1455
// witout calculating delete bitmap and publish successfully.
1456
// 3. Block the new publish, calculate the delete bitmap of the
1457
// incremental rowsets.
1458
// 4. Switch the tablet status to TABLET_RUNNING. The newly imported
1459
// data will calculate delete bitmap.
1460
0
Status SchemaChangeJob::_calc_delete_bitmap_for_mow_table(int64_t alter_version) {
1461
0
    DBUG_EXECUTE_IF("SchemaChangeJob._calc_delete_bitmap_for_mow_table.random_failed", {
1462
0
        if (rand() % 100 < (100 * dp->param("percent", 0.1))) {
1463
0
            LOG_WARNING("SchemaChangeJob._calc_delete_bitmap_for_mow_table.random_failed");
1464
0
            return Status::InternalError("debug schema change calc delete bitmap random failed");
1465
0
        }
1466
0
    });
1467
1468
    // can't do compaction when calc delete bitmap, if the rowset being calculated does
1469
    // a compaction, it may cause the delete bitmap to be missed.
1470
0
    std::lock_guard base_compaction_lock(_new_tablet->get_base_compaction_lock());
1471
0
    std::lock_guard cumu_compaction_lock(_new_tablet->get_cumulative_compaction_lock());
1472
1473
    // step 2
1474
0
    int64_t max_version = _new_tablet->max_version().second;
1475
0
    std::vector<RowsetSharedPtr> rowsets;
1476
0
    if (alter_version < max_version) {
1477
0
        LOG(INFO) << "alter table for unique with merge-on-write, calculate delete bitmap of "
1478
0
                  << "double write rowsets for version: " << alter_version + 1 << "-" << max_version
1479
0
                  << " new_tablet=" << _new_tablet->tablet_id();
1480
0
        std::shared_lock rlock(_new_tablet->get_header_lock());
1481
0
        RETURN_IF_ERROR(_new_tablet->capture_consistent_rowsets_unlocked(
1482
0
                {alter_version + 1, max_version}, &rowsets));
1483
0
    }
1484
0
    for (auto rowset_ptr : rowsets) {
1485
0
        std::lock_guard rwlock(_new_tablet->get_rowset_update_lock());
1486
0
        std::shared_lock rlock(_new_tablet->get_header_lock());
1487
0
        RETURN_IF_ERROR(Tablet::update_delete_bitmap_without_lock(_new_tablet, rowset_ptr));
1488
0
    }
1489
1490
    // step 3
1491
0
    std::lock_guard rwlock(_new_tablet->get_rowset_update_lock());
1492
0
    std::lock_guard new_wlock(_new_tablet->get_header_lock());
1493
0
    SCOPED_SIMPLE_TRACE_IF_TIMEOUT(TRACE_TABLET_LOCK_THRESHOLD);
1494
0
    int64_t new_max_version = _new_tablet->max_version_unlocked();
1495
0
    rowsets.clear();
1496
0
    if (max_version < new_max_version) {
1497
0
        LOG(INFO) << "alter table for unique with merge-on-write, calculate delete bitmap of "
1498
0
                  << "incremental rowsets for version: " << max_version + 1 << "-"
1499
0
                  << new_max_version << " new_tablet=" << _new_tablet->tablet_id();
1500
0
        RETURN_IF_ERROR(_new_tablet->capture_consistent_rowsets_unlocked(
1501
0
                {max_version + 1, new_max_version}, &rowsets));
1502
0
    }
1503
0
    for (auto&& rowset_ptr : rowsets) {
1504
0
        RETURN_IF_ERROR(Tablet::update_delete_bitmap_without_lock(_new_tablet, rowset_ptr));
1505
0
    }
1506
    // step 4
1507
0
    RETURN_IF_ERROR(_new_tablet->set_tablet_state(TabletState::TABLET_RUNNING));
1508
0
    _new_tablet->save_meta();
1509
0
    return Status::OK();
1510
0
}
1511
1512
} // namespace doris