mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-02 03:39:03 +00:00
feat(ingestion) source info data model to use keyword searchables (#12630)
This commit is contained in:
parent
27e72782b9
commit
26f111a61c
@ -22,7 +22,8 @@ record DataHubIngestionSourceInfo {
|
||||
* The type of the source itself, e.g. mysql, bigquery, bigquery-usage. Should match the recipe.
|
||||
*/
|
||||
@Searchable = {
|
||||
"fieldType": "TEXT_PARTIAL"
|
||||
"fieldType": "KEYWORD",
|
||||
"queryByDefault": false
|
||||
}
|
||||
type: string
|
||||
|
||||
@ -54,7 +55,9 @@ record DataHubIngestionSourceInfo {
|
||||
* The id of the executor to use to execute the ingestion run
|
||||
*/
|
||||
@Searchable = {
|
||||
"fieldName": "sourceExecutorId"
|
||||
"fieldName": "sourceExecutorId",
|
||||
"fieldType": "KEYWORD",
|
||||
"queryByDefault": false
|
||||
}
|
||||
executorId: optional string
|
||||
|
||||
@ -79,7 +82,9 @@ record DataHubIngestionSourceInfo {
|
||||
* The source type of the ingestion source
|
||||
*/
|
||||
@Searchable = {
|
||||
"fieldName": "sourceType"
|
||||
"fieldName": "sourceType",
|
||||
"fieldType": "KEYWORD",
|
||||
"queryByDefault": false
|
||||
}
|
||||
type: enum DataHubIngestionSourceSourceType {
|
||||
/**
|
||||
@ -88,4 +93,4 @@ record DataHubIngestionSourceInfo {
|
||||
SYSTEM
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user