mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 13:02:11 +03:00
abb57e58c8
</details> PR-URL: https://github.com/hasura/graphql-engine-mono/pull/3392 Co-authored-by: Divi <32202683+imperfect-fourth@users.noreply.github.com> GitOrigin-RevId: 9df6b0aa7d91f22571b72d3e467da23b916c9140
79 lines
1.4 KiB
YAML
79 lines
1.4 KiB
YAML
type: bulk
|
|
args:
|
|
|
|
- type: mssql_track_table
|
|
args:
|
|
source: mssql
|
|
table:
|
|
schema: hge_tests
|
|
name: test_t1
|
|
|
|
- type: mssql_track_table
|
|
args:
|
|
source: mssql
|
|
table:
|
|
schema: hge_tests
|
|
name: test_t2
|
|
|
|
- type: mssql_track_table
|
|
args:
|
|
source: mssql
|
|
table:
|
|
schema: hge_tests
|
|
name: test_t3
|
|
|
|
- type: mssql_create_event_trigger
|
|
args:
|
|
source: mssql
|
|
name: t1_retry
|
|
table:
|
|
schema: hge_tests
|
|
name: test_t1
|
|
insert:
|
|
columns: "*"
|
|
update:
|
|
columns: "*"
|
|
delete:
|
|
columns: "*"
|
|
webhook: http://127.0.0.1:5592/fail
|
|
retry_conf:
|
|
num_retries: 4
|
|
interval_sec: 1
|
|
|
|
- type: mssql_create_event_trigger
|
|
args:
|
|
source: mssql
|
|
name: t2_timeout_short
|
|
table:
|
|
schema: hge_tests
|
|
name: test_t2
|
|
insert:
|
|
columns: "*"
|
|
update:
|
|
columns: "*"
|
|
delete:
|
|
columns: "*"
|
|
webhook: http://127.0.0.1:5592/sleep_2s
|
|
retry_conf:
|
|
num_retries: 2
|
|
interval_sec: 1
|
|
timeout_sec: 1
|
|
|
|
- type: mssql_create_event_trigger
|
|
args:
|
|
source: mssql
|
|
name: t3_timeout_long
|
|
table:
|
|
schema: hge_tests
|
|
name: test_t3
|
|
insert:
|
|
columns: "*"
|
|
update:
|
|
columns: "*"
|
|
delete:
|
|
columns: "*"
|
|
webhook: http://127.0.0.1:5592/sleep_2s
|
|
retry_conf:
|
|
num_retries: 0
|
|
interval_sec: 2
|
|
timeout_sec: 10 |