-
Notifications
You must be signed in to change notification settings - Fork 332
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Implement append mode for a region (#3558)
* feat: add dedup option to merge reader * test: test merger * feat: append mode option * feat: implement append mode for regions * feat: only allow put under append mode * feat: always create builder * test: test append mode * style: fix clippy * test: trigger compaction * chore: fix compiler errors
- Loading branch information
Showing
12 changed files
with
372 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,153 @@ | ||
// Copyright 2023 Greptime Team | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
//! Tests for append mode. | ||
use api::v1::Rows; | ||
use common_recordbatch::RecordBatches; | ||
use store_api::region_engine::RegionEngine; | ||
use store_api::region_request::{RegionCompactRequest, RegionRequest}; | ||
use store_api::storage::{RegionId, ScanRequest}; | ||
|
||
use crate::config::MitoConfig; | ||
use crate::test_util::{ | ||
build_rows, build_rows_for_key, flush_region, put_rows, rows_schema, CreateRequestBuilder, | ||
TestEnv, | ||
}; | ||
|
||
#[tokio::test] | ||
async fn test_append_mode_write_query() { | ||
common_telemetry::init_default_ut_logging(); | ||
|
||
let mut env = TestEnv::new(); | ||
let engine = env.create_engine(MitoConfig::default()).await; | ||
|
||
let region_id = RegionId::new(1, 1); | ||
let request = CreateRequestBuilder::new() | ||
.insert_option("append_mode", "true") | ||
.build(); | ||
|
||
let column_schemas = rows_schema(&request); | ||
engine | ||
.handle_request(region_id, RegionRequest::Create(request)) | ||
.await | ||
.unwrap(); | ||
|
||
// rows 1, 2 | ||
let rows = build_rows(1, 3); | ||
let rows = Rows { | ||
schema: column_schemas.clone(), | ||
rows, | ||
}; | ||
put_rows(&engine, region_id, rows).await; | ||
|
||
let mut rows = build_rows(0, 2); | ||
rows.append(&mut build_rows(1, 2)); | ||
// rows 0, 1, 1 | ||
let rows = Rows { | ||
schema: column_schemas, | ||
rows, | ||
}; | ||
put_rows(&engine, region_id, rows).await; | ||
|
||
let request = ScanRequest::default(); | ||
let stream = engine.handle_query(region_id, request).await.unwrap(); | ||
let batches = RecordBatches::try_collect(stream).await.unwrap(); | ||
let expected = "\ | ||
+-------+---------+---------------------+ | ||
| tag_0 | field_0 | ts | | ||
+-------+---------+---------------------+ | ||
| 0 | 0.0 | 1970-01-01T00:00:00 | | ||
| 1 | 1.0 | 1970-01-01T00:00:01 | | ||
| 1 | 1.0 | 1970-01-01T00:00:01 | | ||
| 1 | 1.0 | 1970-01-01T00:00:01 | | ||
| 2 | 2.0 | 1970-01-01T00:00:02 | | ||
+-------+---------+---------------------+"; | ||
assert_eq!(expected, batches.pretty_print().unwrap()); | ||
} | ||
|
||
#[tokio::test] | ||
async fn test_append_mode_compaction() { | ||
let mut env = TestEnv::new(); | ||
let engine = env.create_engine(MitoConfig::default()).await; | ||
|
||
let region_id = RegionId::new(1, 1); | ||
let request = CreateRequestBuilder::new() | ||
.insert_option("compaction.type", "twcs") | ||
.insert_option("compaction.twcs.max_active_window_files", "2") | ||
.insert_option("compaction.twcs.max_inactive_window_files", "2") | ||
.insert_option("append_mode", "true") | ||
.build(); | ||
|
||
let column_schemas = rows_schema(&request); | ||
engine | ||
.handle_request(region_id, RegionRequest::Create(request)) | ||
.await | ||
.unwrap(); | ||
|
||
// Flush 2 SSTs for compaction. | ||
// a, field 1, 2 | ||
let rows = Rows { | ||
schema: column_schemas.clone(), | ||
rows: build_rows_for_key("a", 1, 3, 1), | ||
}; | ||
put_rows(&engine, region_id, rows).await; | ||
flush_region(&engine, region_id, None).await; | ||
// a, field 0, 1 | ||
let rows = Rows { | ||
schema: column_schemas.clone(), | ||
rows: build_rows_for_key("a", 0, 2, 0), | ||
}; | ||
put_rows(&engine, region_id, rows).await; | ||
flush_region(&engine, region_id, None).await; | ||
// b, field 0, 1 | ||
let rows = Rows { | ||
schema: column_schemas.clone(), | ||
rows: build_rows_for_key("b", 0, 2, 0), | ||
}; | ||
put_rows(&engine, region_id, rows).await; | ||
flush_region(&engine, region_id, None).await; | ||
|
||
let output = engine | ||
.handle_request(region_id, RegionRequest::Compact(RegionCompactRequest {})) | ||
.await | ||
.unwrap(); | ||
assert_eq!(output.affected_rows, 0); | ||
|
||
// a, field 2, 3 | ||
let rows = Rows { | ||
schema: column_schemas, | ||
rows: build_rows_for_key("a", 2, 4, 2), | ||
}; | ||
put_rows(&engine, region_id, rows).await; | ||
|
||
let scanner = engine.scanner(region_id, ScanRequest::default()).unwrap(); | ||
assert_eq!(1, scanner.num_files()); | ||
let stream = scanner.scan().await.unwrap(); | ||
let batches = RecordBatches::try_collect(stream).await.unwrap(); | ||
let expected = "\ | ||
+-------+---------+---------------------+ | ||
| tag_0 | field_0 | ts | | ||
+-------+---------+---------------------+ | ||
| a | 0.0 | 1970-01-01T00:00:00 | | ||
| a | 1.0 | 1970-01-01T00:00:01 | | ||
| a | 1.0 | 1970-01-01T00:00:01 | | ||
| a | 2.0 | 1970-01-01T00:00:02 | | ||
| a | 2.0 | 1970-01-01T00:00:02 | | ||
| a | 3.0 | 1970-01-01T00:00:03 | | ||
| b | 0.0 | 1970-01-01T00:00:00 | | ||
| b | 1.0 | 1970-01-01T00:00:01 | | ||
+-------+---------+---------------------+"; | ||
assert_eq!(expected, batches.pretty_print().unwrap()); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.