Skip to content

Commit

Permalink
chore: rename more ceresdb to horaedb (#1494)
Browse files Browse the repository at this point in the history
TRIVIAL AS IS

Signed-off-by: tison <[email protected]>
  • Loading branch information
tisonkun authored Mar 5, 2024
1 parent 9e356c6 commit 512302e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/analytic_engine/src/tests/read_write_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@ fn test_write_buffer_size_overflow<T: WalsOpener>(
.await;

// TODO(lee) a better way to wait table flushing finishes.
// https://github.com/CeresDB/horaedb/issues/1241
// https://github.com/apache/incubator-horaedb/issues/1241
thread::sleep(time::Duration::from_millis(10000));

let stats = table.stats();
Expand Down
10 changes: 5 additions & 5 deletions src/horaedb/src/setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,11 @@ fn build_engine_runtimes(config: &RuntimeConfig) -> EngineRuntimes {
Some(read_stack_size),
)),
),
write_runtime: Arc::new(build_runtime("ceres-write", config.write_thread_num)),
compact_runtime: Arc::new(build_runtime("ceres-compact", config.compact_thread_num)),
meta_runtime: Arc::new(build_runtime("ceres-meta", config.meta_thread_num)),
default_runtime: Arc::new(build_runtime("ceres-default", config.default_thread_num)),
io_runtime: Arc::new(build_runtime("ceres-io", config.io_thread_num)),
write_runtime: Arc::new(build_runtime("horaedb-write", config.write_thread_num)),
compact_runtime: Arc::new(build_runtime("horaedb-compact", config.compact_thread_num)),
meta_runtime: Arc::new(build_runtime("horaedb-meta", config.meta_thread_num)),
default_runtime: Arc::new(build_runtime("horaedb-default", config.default_thread_num)),
io_runtime: Arc::new(build_runtime("horaedb-io", config.io_thread_num)),
}
}

Expand Down

0 comments on commit 512302e

Please sign in to comment.