-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create a cron job that calls all performance harness on cron (#31480)
- Loading branch information
1 parent
1e40e0a
commit 4ce51c1
Showing
2 changed files
with
79 additions
and
43 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,42 @@ | ||
name: Connector Performance Harness Cron | ||
on: workflow_dispatch | ||
on: | ||
schedule: | ||
# * is a special character in YAML so you have to quote this string | ||
- # 5:30 and 17:30 | ||
- cron: "30 5,17 * * *" | ||
workflow_dispatch: # for manual triggers | ||
|
||
jobs: | ||
postgres-1m-run: | ||
uses: ./.github/workflows/connector-performance-command.yml | ||
with: | ||
connector: connectors/source-postgres | ||
connector: "connectors/source-postgres" | ||
dataset: 1m | ||
postgres-10m-run: | ||
uses: ./.github/workflows/connector-performance-command.yml | ||
with: | ||
connector: connectors/source-postgres | ||
dataset: 10m | ||
postgres-20m-run: | ||
secrets: inherit | ||
mysql-1m-run: | ||
uses: ./.github/workflows/connector-performance-command.yml | ||
with: | ||
connector: connectors/source-postgres | ||
dataset: 20m | ||
mysql-1m-run: | ||
connector: "connectors/source-mysql" | ||
dataset: 1m | ||
secrets: inherit | ||
postgres-1m-run-incremental: | ||
uses: ./.github/workflows/connector-performance-command.yml | ||
with: | ||
connector: connectors/source-mysql | ||
connector: "connectors/source-postgres" | ||
dataset: 1m | ||
mysql-10m-run: | ||
sync-mode: "incremental" | ||
secrets: inherit | ||
mysql-1m-run-incremental: | ||
uses: ./.github/workflows/connector-performance-command.yml | ||
with: | ||
connector: connectors/source-mysql | ||
dataset: 10m | ||
mysql-20m-run: | ||
connector: "connectors/source-mysql" | ||
dataset: 1m | ||
sync-mode: "incremental" | ||
secrets: inherit | ||
mongodb-1m-run-incremental: | ||
uses: ./.github/workflows/connector-performance-command.yml | ||
with: | ||
connector: connectors/source-mysql | ||
dataset: 20m | ||
connector: "connectors/source-mongodb-v2" | ||
dataset: 1m | ||
sync-mode: "incremental" | ||
secrets: inherit |