-
Notifications
You must be signed in to change notification settings - Fork 83
feat(api): Add docker compose service for API server. #1575
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 8 commits
506dafd
3bb1a44
7952a66
aa1d134
01a7c75
b80c044
50f0bce
4bf7ad1
e8c79c0
eddf9dc
49a15d0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
hoophalab marked this conversation as resolved.
Show resolved
Hide resolved
hoophalab marked this conversation as resolved.
Show resolved
Hide resolved
|
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -44,11 +44,11 @@ graph LR | |
| compression_worker["compression-worker"] | ||
| query_worker["query-worker"] | ||
| reducer["reducer"] | ||
| api_server["api-server"] | ||
| garbage_collector["garbage-collector"] | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This change is to make the nodes in Management & UI section follow the order api_server, garbage_collector, webui. api_server and garbage_collector are management nodes. |
||
| webui["webui"] | ||
| mcp_server["mcp-server"] | ||
|
|
||
| garbage_collector["garbage-collector"] | ||
|
|
||
| %% One-time jobs | ||
| db_table_creator["db-table-creator"] | ||
| results_cache_indices_creator["results-cache-indices-creator"] | ||
|
|
@@ -64,6 +64,8 @@ graph LR | |
| redis -->|healthy| query_scheduler | ||
| query_scheduler -->|healthy| reducer | ||
| results_cache_indices_creator -->|completed_successfully| reducer | ||
| db_table_creator -->|completed_successfully| api_server | ||
| results_cache_indices_creator -->|completed_successfully| api_server | ||
| db_table_creator -->|completed_successfully| webui | ||
| results_cache_indices_creator -->|completed_successfully| webui | ||
| db_table_creator -->|completed_successfully| mcp_server | ||
|
|
@@ -94,9 +96,10 @@ graph LR | |
| reducer | ||
| end | ||
|
|
||
| subgraph UI & Management | ||
| webui | ||
| subgraph Management & UI | ||
| api_server | ||
| garbage_collector | ||
| webui | ||
| end | ||
|
|
||
| subgraph AI | ||
|
|
@@ -125,6 +128,7 @@ graph LR | |
| | compression_worker | Worker processes for compression jobs | | ||
| | query_worker | Worker processes for search/aggregation jobs | | ||
| | reducer | Reducers for performing the final stages of aggregation jobs | | ||
| | api_server | API server for submitting queries | | ||
| | webui | Web server for the UI | | ||
| | mcp_server | MCP server for AI agent to access CLP functionalities | | ||
| | garbage_collector | Process to manage data retention | | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.