-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix ci for scheduler on nexus branch
Signed-off-by: Sean Kao <[email protected]>
- Loading branch information
1 parent
582d06d
commit 826e53d
Showing
5 changed files
with
71 additions
and
62 deletions.
There are no files selected for viewing
60 changes: 60 additions & 0 deletions
60
flint-core/src/main/resources/async-query-scheduler-index-mapping.json
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,60 @@ | ||
{ | ||
"dynamic": false, | ||
"properties": { | ||
"accountId": { | ||
"type": "keyword" | ||
}, | ||
"jobId": { | ||
"type": "keyword" | ||
}, | ||
"dataSource": { | ||
"type": "keyword" | ||
}, | ||
"scheduledQuery": { | ||
"type": "text" | ||
}, | ||
"queryLang": { | ||
"type": "keyword" | ||
}, | ||
"lastUpdateTime": { | ||
"type": "date", | ||
"format": "epoch_millis" | ||
}, | ||
"enabledTime": { | ||
"type": "date", | ||
"format": "epoch_millis" | ||
}, | ||
"schedule": { | ||
"properties": { | ||
"initialDelay": { | ||
"type": "long" | ||
}, | ||
"interval": { | ||
"properties": { | ||
"start_time": { | ||
"type": "date", | ||
"format": "strict_date_time||epoch_millis" | ||
}, | ||
"period": { | ||
"type": "integer" | ||
}, | ||
"unit": { | ||
"type": "keyword" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
}, | ||
"lockDurationSeconds": { | ||
"type": "long", | ||
"null_value": -1 | ||
}, | ||
"jitter": { | ||
"type": "double", | ||
"null_value": 0.0 | ||
} | ||
} | ||
} |
47 changes: 0 additions & 47 deletions
47
flint-core/src/main/resources/async-query-scheduler-index-mapping.yml
This file was deleted.
Oops, something went wrong.
7 changes: 7 additions & 0 deletions
7
flint-core/src/main/resources/async-query-scheduler-index-settings.json
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,7 @@ | ||
{ | ||
"index": { | ||
"number_of_shards": "1", | ||
"auto_expand_replicas": "0-2", | ||
"number_of_replicas": "0" | ||
} | ||
} |
11 changes: 0 additions & 11 deletions
11
flint-core/src/main/resources/async-query-scheduler-index-settings.yml
This file was deleted.
Oops, something went wrong.
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