Hi there
I’m running a PoC for CloudQuery and successfully implemented queries for AWS and GCP, with full table scans across multiple accounts/projects. However, I have an issue with Azure where my client node (c5.4xlarge) locks up completely when I do the same for Azure; before it does, memory usage will spike up and kswapd0
will eat a CPU core which usually means something doesn’t play well with memory. If I can get CloudQuery to terminate, the VM might go back to being responsive, but I usually have to stop it from the AWS console (which takes some time and will eventually succeed).
I have tried both v9.3.7 and v9.3.8 with a straightforward configuration:
kind: source
spec:
name: azure
path: cloudquery/azure
version: "v9.3.8"
tables: ["*"]
destinations: ["postgresql"]
spec:
backend_options:
table_name: "cq_azure_state"
connection: "@@plugins.postgresql.connection"
Is there a good way of debugging this further?