Skip to content

Commit

Permalink
rename quickwit-core to quickwit-index-management (#3697)
Browse files Browse the repository at this point in the history
  • Loading branch information
smiklos authored Aug 1, 2023
1 parent 5060b6c commit 31fefb4
Show file tree
Hide file tree
Showing 12 changed files with 44 additions and 44 deletions.
68 changes: 34 additions & 34 deletions quickwit/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions quickwit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ members = [
"quickwit-common",
"quickwit-config",
"quickwit-control-plane",
"quickwit-core",
"quickwit-index-management",
"quickwit-datetime",
"quickwit-directories",
"quickwit-doc-mapper",
Expand Down Expand Up @@ -205,7 +205,7 @@ quickwit-codegen-example = { version = "0.6.3", path = "./quickwit-codegen/examp
quickwit-common = { version = "0.6.3", path = "./quickwit-common" }
quickwit-config = { version = "0.6.3", path = "./quickwit-config" }
quickwit-control-plane = { version = "0.6.3", path = "./quickwit-control-plane" }
quickwit-core = { version = "0.6.3", path = "./quickwit-core" }
quickwit-index-management = { version = "0.6.3", path = "./quickwit-index-management" }
quickwit-datetime = { version = "0.6.3", path = "./quickwit-datetime" }
quickwit-directories = { version = "0.6.3", path = "./quickwit-directories" }
quickwit-doc-mapper = { version = "0.6.3", path = "./quickwit-doc-mapper" }
Expand Down
2 changes: 1 addition & 1 deletion quickwit/deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ exceptions = [
{ name = "quickwit-cluster", allow = ["AGPL-3.0"], version = "*" },
{ name = "quickwit-common", allow = ["AGPL-3.0"], version = "*" },
{ name = "quickwit-config", allow = ["AGPL-3.0"], version = "*" },
{ name = "quickwit-core", allow = ["AGPL-3.0"], version = "*" },
{ name = "quickwit-index-management", allow = ["AGPL-3.0"], version = "*" },
{ name = "quickwit-directories", allow = ["AGPL-3.0"], version = "*" },
{ name = "quickwit-doc-mapper", allow = ["AGPL-3.0"], version = "*" },
{ name = "quickwit-indexing", allow = ["AGPL-3.0"], version = "*" },
Expand Down
2 changes: 1 addition & 1 deletion quickwit/quickwit-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ quickwit-actors = { workspace = true }
quickwit-cluster = { workspace = true }
quickwit-common = { workspace = true }
quickwit-config = { workspace = true }
quickwit-core = { workspace = true }
quickwit-index-management = { workspace = true }
quickwit-directories = { workspace = true }
quickwit-doc-mapper = { workspace = true }
quickwit-indexing = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion quickwit/quickwit-cli/src/tool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ use quickwit_config::{
IndexerConfig, NodeConfig, SourceConfig, SourceInputFormat, SourceParams, TransformConfig,
VecSourceParams, CLI_INGEST_SOURCE_ID,
};
use quickwit_core::{clear_cache_directory, IndexService};
use quickwit_index_management::{clear_cache_directory, IndexService};
use quickwit_indexing::actors::{IndexingService, MergePipeline, MergePipelineId};
use quickwit_indexing::models::{
DetachIndexingPipeline, DetachMergePipeline, IndexingStatistics, SpawnPipeline,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "quickwit-core"
name = "quickwit-index-management"
version = "0.6.3"
authors = ["Quickwit, Inc. <hello@quickwit.io>"]
edition = "2021"
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion quickwit/quickwit-serve/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ quickwit-cluster = { workspace = true }
quickwit-common = { workspace = true }
quickwit-config = { workspace = true }
quickwit-control-plane = { workspace = true }
quickwit-core = { workspace = true }
quickwit-index-management = { workspace = true }
quickwit-directories = { workspace = true }
quickwit-doc-mapper = { workspace = true }
quickwit-indexing = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion quickwit/quickwit-serve/src/index_api/rest_handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ use quickwit_config::{
load_source_config_from_user_config, ConfigFormat, NodeConfig, SourceConfig, SourceParams,
CLI_INGEST_SOURCE_ID, INGEST_API_SOURCE_ID,
};
use quickwit_core::{IndexService, IndexServiceError};
use quickwit_doc_mapper::{analyze_text, TokenizerConfig};
use quickwit_index_management::{IndexService, IndexServiceError};
use quickwit_metastore::{
IndexMetadata, ListSplitsQuery, Metastore, MetastoreError, Split, SplitInfo, SplitState,
};
Expand Down
2 changes: 1 addition & 1 deletion quickwit/quickwit-serve/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ use quickwit_control_plane::scheduler::IndexingScheduler;
use quickwit_control_plane::{
start_indexing_scheduler, ControlPlaneEventSubscriber, IndexerNodeInfo, IndexerPool,
};
use quickwit_core::{IndexService, IndexServiceError};
use quickwit_index_management::{IndexService, IndexServiceError};
use quickwit_indexing::actors::IndexingService;
use quickwit_indexing::start_indexing_service;
use quickwit_ingest::{
Expand Down
2 changes: 1 addition & 1 deletion quickwit/scripts/dep-tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"quickwit-serve",
"quickwit-storage",
"quickwit-cluster",
"quickwit-core",
"quickwit-index-management",
"tantivy"
}

Expand Down

0 comments on commit 31fefb4

Please sign in to comment.