-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes: - we can add a single query pipeline now - ingests attempts will end up with an error - common table will not be created on the startup --------- Signed-off-by: Przemysław Hejman <[email protected]> Co-authored-by: Przemysław Hejman <[email protected]> Co-authored-by: Piotr Grabowski <[email protected]>
- Loading branch information
1 parent
11ea050
commit bdeaade
Showing
9 changed files
with
214 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
quesma/quesma/config/test_configs/quesma_hydrolix_tables_query_only.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Use case: | ||
# * user has some indices in Elasticsearch | ||
# * user has two tables in Hydrolix named `siem` and `logs` | ||
# | ||
# User wants to see those two Hydrolix tables as Elasticsearch indices in Kibana | ||
# User wants to see all their Elasticsearch indices in Kibana as they were before | ||
# | ||
# ( ingest is not the case here, but the config has to be present due to impl. constraints ) | ||
|
||
logging: | ||
level: info | ||
frontendConnectors: | ||
- name: elastic-ingest | ||
type: elasticsearch-fe-ingest | ||
config: | ||
listenPort: 8080 | ||
- name: elastic-query | ||
type: elasticsearch-fe-query | ||
config: | ||
listenPort: 8080 | ||
backendConnectors: | ||
- name: my-minimal-elasticsearch | ||
type: elasticsearch | ||
config: | ||
url: "http://elasticsearch:9200" | ||
user: elastic | ||
password: quesmaquesma | ||
- name: my-hydrolix-instance | ||
type: hydrolix | ||
config: | ||
url: "clickhouse://localhost:9000" | ||
user: "u" | ||
password: "p" | ||
database: "d" | ||
ingestStatistics: true | ||
processors: | ||
- name: my-query-processor | ||
type: quesma-v1-processor-query | ||
config: | ||
indexes: | ||
siem: | ||
target: [my-hydrolix-instance] | ||
logs: | ||
target: [my-hydrolix-instance] | ||
pipelines: | ||
- name: my-elasticsearch-proxy-read | ||
frontendConnectors: [ elastic-query ] | ||
processors: [ my-query-processor ] | ||
backendConnectors: [ my-minimal-elasticsearch, my-hydrolix-instance ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters