Skip to content

Commit

Permalink
chore: bump to v2.2.0-dev (apache#1598)
Browse files Browse the repository at this point in the history
## Rationale
Begin next dev cycle

## Detailed Changes
- WAL default to local disk

## Test Plan
CI
  • Loading branch information
jiacai2050 authored Nov 22, 2024
1 parent 72f63f2 commit 9e81c4e
Show file tree
Hide file tree
Showing 8 changed files with 67 additions and 198 deletions.
124 changes: 62 additions & 62 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# under the License.

[workspace.package]
version = "2.1.0"
version = "2.2.0-dev"
authors = ["HoraeDB Authors"]
edition = "2021"
license = "Apache-2.0"
Expand Down
50 changes: 0 additions & 50 deletions integration_tests/cases/env/cluster/config.toml

This file was deleted.

44 changes: 0 additions & 44 deletions integration_tests/cases/env/compaction_offload/config.toml

This file was deleted.

39 changes: 0 additions & 39 deletions integration_tests/cases/env/local/config.toml

This file was deleted.

3 changes: 2 additions & 1 deletion src/analytic_engine/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,8 @@ pub struct Config {

/// Wal storage config
///
/// Now, following three storages are supported:
/// Now, following storages are supported:
/// + Local Disk
/// + RocksDB
/// + OBKV
/// + Kafka
Expand Down
1 change: 1 addition & 0 deletions src/components/object_store/src/disk_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1167,6 +1167,7 @@ mod test {
}

#[test]
#[ignore = "https://github.com/apache/horaedb/issues/1215"]
fn test_disk_cache_multi_thread_fetch_same_block() {
let rt = Arc::new(Builder::default().build().unwrap());
rt.block_on(async {
Expand Down
2 changes: 1 addition & 1 deletion src/wal/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ pub struct Config {
impl Default for Config {
fn default() -> Self {
Self {
storage: StorageConfig::RocksDB(Box::default()),
storage: StorageConfig::Local(Box::default()),
disable_data: false,
}
}
Expand Down

0 comments on commit 9e81c4e

Please sign in to comment.