Hi CQ folks,
I am trying to run CloudQuery syncs in parallel, but it seems like the execution happens sequentially. Just curious if I am missing any setting in my configuration below that should be used to run the syncs from different sources in parallel.
kind: source
spec:
name: aws-us-west-2
registry: local
path: /app/plugins/aws
tables:
- aws_*
destinations: ["postgresql"]
spec:
concurrency: 100
initialization_concurrency: 4
aws_debug: false
regions:
- "us-west-2"
org:
member_role_name: ${MEMBER_ROLE_NAME}
admin_account:
id: dev
role_arn: ${ASSUME_ROLE_ARN}
---
kind: source
spec:
name: aws-ap-northeast-1
registry: local
path: /app/plugins/aws
tables:
- aws_*
destinations: ["postgresql"]
spec:
concurrency: 100
initialization_concurrency: 4
aws_debug: false
regions:
- "ap-northeast-1"
org:
member_role_name: ${MEMBER_ROLE_NAME}
admin_account:
id: dev
role_arn: ${ASSUME_ROLE_ARN}
---
kind: destination
spec:
name: postgresql
registry: local
path: /app/plugins/postgresql
write_mode: append
spec:
connection_string: ${PG_CONNECTION_STR}