This is an automated email from the ASF dual-hosted git repository. tison pushed a commit to branch rename-all in repository https://gitbox.apache.org/repos/asf/incubator-horaedb.git
commit c30648f8c38d3f0f1feef0253d21cab6b002cdec Author: tison <[email protected]> AuthorDate: Tue Mar 5 11:26:30 2024 +0800 chore: rename more ceresdb to horaedb Signed-off-by: tison <[email protected]> --- src/analytic_engine/src/tests/read_write_test.rs | 2 +- src/horaedb/src/setup.rs | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/analytic_engine/src/tests/read_write_test.rs b/src/analytic_engine/src/tests/read_write_test.rs index 86319928..780ef0a3 100644 --- a/src/analytic_engine/src/tests/read_write_test.rs +++ b/src/analytic_engine/src/tests/read_write_test.rs @@ -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(); diff --git a/src/horaedb/src/setup.rs b/src/horaedb/src/setup.rs index 630faad3..7a2b32f1 100644 --- a/src/horaedb/src/setup.rs +++ b/src/horaedb/src/setup.rs @@ -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)), } } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
