Running genesys-cloud export with --resources architect-flows and it just sits there at 20% for hours. No error code, no timeout, just a frozen progress bar. Tried increasing the memory limit to 4GB but that didn’t help. Is there a flag to force a chunked export or a way to see what flow is causing the blockage?
The CLI hangs because it tries to fetch flow versions in parallel without backpressure. You’ll need to run the export with --concurrency 1 to serialize the requests. It’s slower, but it won’t choke the connection. If that fails, check if you have any flows with broken references causing a silent loop.