<@ULVA73B9P> I'm evaluating prefect cloud. I have ...
# ask-marvin
d
@Marvin I'm evaluating prefect cloud. I have a current self-hosted prefect instance, and I've pointed my workers running on GCP at prefect cloud by updating the PREFECT_API_KEY and PREFECT_API_URL environment variables. All the workers are running, they have network access to prefect cloud, I can see them connecting to prefect cloud without any errors but they're not doing anything, no jobs are being run and I can't figure out what's going on.
m
thought for 364.5 seconds
Got it — thanks for the detail. When a worker shows “online” in Prefect Cloud but never pulls any runs, it almost always comes down to one of these: the worker is polling a different work pool/queue than your deployments use, there are no deployments or schedules in the Cloud workspace, or a pause/concurrency setting is blocking dispatch. Quick triage checklist Run these from any machine where your
PREFECT_API_URL
and
PREFECT_API_KEY
point to your Cloud workspace (or use the UI in parallel): 1) Confirm you’re in the right Cloud workspace - Your worker and your deployments must be in the same workspace. - Check:
Copy code
prefect cloud ls
prefect version
- Also double-check your
PREFECT_API_URL
includes your account and workspace IDs (e.g. https://api.prefect.cloud/api/accounts/&lt;account_id&gt;/workspaces/&lt;workspace_id&gt;). 2) Verify deployments actually exist in Cloud and target the same work pool/queue - If your deployments were created against your self-hosted server, they won’t exist in Cloud until you re-deploy to Cloud. - Check:
Copy code
prefect deployment ls
- In the UI: open a deployment and confirm “Work Pool” (and “Work Queue,” if set) match what your worker is polling. 3) Check the worker’s pool/queue and type - In the UI: Work Pools -> select your pool -> Workers tab; confirm workers are “Online”. - Make sure the worker’s pool type matches the pool (e.g., a process worker with a process pool), and that the worker’s
--work-queue
filter (if set) matches the deployment’s queue name exactly. 4) Ensure there’s actually runnable work - Preview if anything is scheduled soon:
Copy code
prefect work-pool preview <pool_name> --hours 1
- Try a manual run from a deployment in the UI or:
Copy code
prefect deployment run "<flow_name>/<deployment_name>"
5) Make sure nothing is paused and limits aren’t at 0 - Pool/queue paused status and concurrency limits can block dispatch. - Check:
Copy code
prefect work-pool ls
prefect work-queue ls -p <pool_name>
- In the UI: Work Pools -> Queues tab, make sure queues are not paused and limits are > 0. - Also check deployment-level concurrency limits and any tag-based concurrency limits you’re using. 6) Version alignment and worker type deps - What Prefect version are your workers running? If they’re still on 2.x and you built 3.x deployments (or vice versa), they won’t match how deployments/pools are defined. If possible, align on Prefect 3.x across worker and deployments. - If using Docker/Kubernetes/etc., ensure the worker environment has the right extras installed (e.g., prefect[docker], prefect[kubernetes]). Most common gotchas after switching to Cloud - Deployments weren’t re-created in Cloud. Workers can’t pull anything if there are no Cloud deployments/schedules. - Deployments point to a different pool/queue name than the worker is polling. - Pool or queue is paused, or concurrency limit is 0. - Worker is connected to a different workspace than your deployments. - Worker type doesn’t match the work pool type. If you want, here’s a minimal way to re-deploy one flow to your Cloud workspace (Prefect 3.x) and force a run:
Copy code
# from your project root
prefect deploy ./path/to/flow.py:my_flow -n test -p <pool_name> -q <queue_name>

# then kick off a run
prefect deployment run "my_flow/test"
To help me zero in quickly, could you share: - The output of
prefect version
from one of the worker machines - The work pool name/type your worker is polling - A screenshot or the names of the work pool/queue shown on one of your deployments in the Cloud UI - Whether you’ve re-deployed your flows to Cloud yet, or are relying on the old self-hosted deployments Once we confirm those, we’ll get your runs moving.
d
Copy code
$ prefect version
05:04:51.011 | DEBUG   | prefect.profiles - Using profile 'ephemeral'
Version:              3.6.4
API version:          0.8.4
Python version:       3.12.12
Git commit:           d3c3ed50
Built:                Fri, Nov 21, 2025 06:04 PM
OS/Arch:              linux/x86_64
Profile:              ephemeral
Server type:          cloud
Pydantic version:     2.11.1
Server:
  Database:           sqlite
  SQLite version:     3.50.4
work pool names are
gcp-workload-dev-us-central1-job
and
gcp-workload-dev-us-central1-process
Work pool screenshots
Flows have been deployed to cloud
Limits for pools are set to unlimited
Have confirmed when running
prefect cloud workspace ls
that I get the correct workspace
prefect work-pool ls
also shows expected work pools
Have you got anything for me @Marvin? Speak to me buddy!
m
thought for 35.5 seconds
I’m here! Let’s get your workers pulling runs. Most likely cause when moving from self-hosted → Cloud: your deployments weren’t re-created in Cloud or they point to a different work pool/queue than your workers are polling. Pointing workers to Cloud isn’t enough—deployments also have to exist in the same Cloud workspace and target the same work pool/queue. Fast 5-minute diagnostic (copy/paste) Run these where
PREFECT_API_URL
and
PREFECT_API_KEY
point to Cloud:
Copy code
echo "== Prefect + workspace =="
prefect version
prefect cloud ls

echo "== Work pools =="
prefect work-pool ls

echo "== Work queues in pool (replace <POOL>) =="
prefect work-queue ls -p <POOL>

echo "== Deployments =="
prefect deployment ls

echo "== Is anything scheduled? (replace <POOL>) =="
prefect work-pool preview <POOL> --hours 1
If
prefect deployment ls
is empty or your deployments are tied to a different pool/queue, re-deploy one flow to Cloud and force a run:
Copy code
# from your project root
prefect deploy ./path/to/flow.py:my_flow -n test -p <POOL> -q <QUEUE>

# then kick off a run
prefect deployment run "my_flow/test"
Things to double-check - Same workspace: Your workers and deployments must be in the same Cloud workspace (
prefect cloud ls
). - Pool/queue match: The deployment’s Work Pool and optional Work Queue must match what your workers are polling. If your worker started with
--work-queue
, the name must match exactly. - Not paused, limits > 0: Pool/queue not paused and concurrency limits not set to 0 (check in Work Pools UI or with the CLI above). - Worker type matches pool type: e.g., process worker on a process pool. - There is runnable work: Use
prefect work-pool preview <POOL> --hours 1
or trigger a manual run. If you can, share: - Output of
prefect version
from a worker - The pool name/type your worker is polling - One deployment’s pool/queue from the Cloud UI - Whether you’ve re-deployed your flows to Cloud yet Happy to stay on with you and read any outputs to get this unblocked quickly.
d
Copy code
== Prefect + workspace ==
05:15:46.083 | DEBUG   | prefect.profiles - Using profile 'ephemeral'
Version:              3.6.4
API version:          0.8.4
Python version:       3.12.12
Git commit:           d3c3ed50
Built:                Fri, Nov 21, 2025 06:04 PM
OS/Arch:              linux/x86_64
Profile:              ephemeral
Server type:          cloud
Pydantic version:     2.11.1
Server:
  Database:           sqlite
  SQLite version:     3.50.4
05:16:11.483 | DEBUG   | prefect.profiles - Using profile 'ephemeral'
Usage: prefect cloud [OPTIONS] COMMAND [ARGS]...
Try 'prefect cloud --help' for help.
╭─ Error ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ No such command 'ls'.                                                                                                                  │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯

== Work pools ==
05:16:59.634 | DEBUG   | prefect.profiles - Using profile 'ephemeral'
05:17:01.296 | DEBUG   | prefect.client - Connecting to API at <https://api.prefect.cloud/api/accounts/d1a04efd-5b88-4482-a0d5-13726eefe10b/workspaces/937012a4-719f-4198-a654-a10c277c2fa0/>
                                                     Work Pools                                                      
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┓
┃ Name                                 ┃ Type            ┃                                   ID ┃ Concurrency Limit ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━┩
│ gcp-workload-dev-us-central1-job     │ kubernetes      │ a2edfa4f-4ed9-4b10-aaa5-84f7359939fc │ None              │
│ gcp-workload-dev-us-central1-process │ process         │ 71c04520-0ad9-462f-b5cf-684be3b5796b │ None              │
│ default                              │ prefect:managed │ 8cb4a048-2595-4d55-837c-857cb15cf88a │ None              │
└──────────────────────────────────────┴─────────────────┴──────────────────────────────────────┴───────────────────┘
                                             (**) denotes a paused pool                                              

== Work queues in pool gcp-workload-dev-us-central1-job ==

05:18:04.904 | DEBUG   | prefect.profiles - Using profile 'ephemeral'
05:18:06.788 | DEBUG   | prefect.client - Connecting to API at <https://api.prefect.cloud/api/accounts/d1a04efd-5b88-4482-a0d5-13726eefe10b/workspaces/937012a4-719f-4198-a654-a10c277c2fa0/>
         Work Queues in Work Pool         
    'gcp-workload-dev-us-central1-job'    
┏━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┓
┃ Name    ┃ Priority ┃ Concurrency Limit ┃
┡━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━┩
│ default │ 1        │ None              │
└─────────┴──────────┴───────────────────┘
       (**) denotes a paused queue        

== Deployments ==
05:19:15.389 | DEBUG   | prefect.profiles - Using profile 'ephemeral'
05:19:17.035 | DEBUG   | prefect.client - Connecting to API at <https://api.prefect.cloud/api/accounts/d1a04efd-5b88-4482-a0d5-13726eefe10b/workspaces/937012a4-719f-4198-a654-a10c277c2fa0/>
                                                               Deployments                                                                
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Name                                                 ┃ ID                                                   ┃ Work Pool                ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ batch-reprocess-assets-use-case/batch-reprocess-ass… │ d86f1e7e-e53d-49a1-8f64-071d4aa943af                 │ gcp-workload-dev-us-cent │
│ benchmark-asset-ingestion-use-case/benchmark-asset-… │ 4e6150a7-93a5-407d-b80f-b958b61978cb                 │ gcp-workload-dev-us-cent │
│ cleanup-e2e-brands-use-case/cleanup-e-2-e-brands-us… │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8fcd                 │ gcp-workload-dev-us-cent │
│ create-creative-from-template-use-case/create-creat… │ 169b729c-9bee-4270-9d3a-346805108fdf                 │ gcp-workload-dev-us-cent │
│ create-voiceover-asset-use-case/create-voiceover-as… │ 1f70e22a-0409-436e-81dc-254f1097b1d6                 │ gcp-workload-dev-us-cent │
│ delete-asset-use-case/delete-asset-use-case-gcp-wor… │ 6eb717b3-2f46-4733-ab7f-fbc292394817                 │ gcp-workload-dev-us-cent │
│ delete-brand-use-case/delete-brand-use-case-gcp-wor… │ b7b6a7b2-674c-40c2-9da3-dad6c28fa06e                 │ gcp-workload-dev-us-cent │
│ generate-image-asset-use-case/generate-image-asset-… │ c433d802-a35e-48c2-8f16-d193d94fa7d5                 │ gcp-workload-dev-us-cent │
│ generate-video-asset-use-case/generate-video-asset-… │ 249d1a51-54b0-46b3-af13-5aa8b2ab90d2                 │ gcp-workload-dev-us-cent │
│ import-brands-use-case/import-brands-use-case-gcp-w… │ 86e4910e-f27c-4f85-8ad4-086970ba8618                 │ gcp-workload-dev-us-cent │
│ import-creatives-use-case/import-creatives-use-case… │ 8ecdf20d-e6f9-4b7d-83a8-9a10ce1ebd74                 │ gcp-workload-dev-us-cent │
│ import-template-use-case/import-template-use-case-g… │ 89f87d86-5750-47a9-8d6f-3fe9980d4d22                 │ gcp-workload-dev-us-cent │
│ ingest-asset-use-case/ingest-asset-use-case-gcp-wor… │ 678e5a5d-1ed2-4ac6-8855-3abfbf729d7a                 │ gcp-workload-dev-us-cent │
│ ingest-shopify-addresses-use-case/ingest-shopify-ad… │ 810463f3-1539-4048-97a4-85b917c21b8f                 │ gcp-workload-dev-us-cent │
│ ingest-shopify-customers-use-case/ingest-shopify-cu… │ 98b3d67e-f03a-409e-85a1-7cb38ab0b60d                 │ gcp-workload-dev-us-cent │
│ ingest-shopify-discount-codes-use-case/ingest-shopi… │ 920267c9-b741-41e7-aa02-410ac2d46387                 │ gcp-workload-dev-us-cent │
│ ingest-shopify-line-items-use-case/ingest-shopify-l… │ 5a1972ab-d6c9-4a1e-919b-e5d7b1e95074                 │ gcp-workload-dev-us-cent │
│ ingest-shopify-orders-use-case/ingest-shopify-order… │ 208c089e-c000-467a-942c-2dc30a6e4e8d                 │ gcp-workload-dev-us-cent │
│ ingest-shopify-price-rules-use-case/ingest-shopify-… │ a8fb2cc8-e5b7-4176-bd53-65e91c0c70fb                 │ gcp-workload-dev-us-cent │
│ load-sample-creative-use-case/load-sample-creative-… │ c0768cf8-c566-4930-870c-295bbbfdcfb9                 │ gcp-workload-dev-us-cent │
│ merge-shopify-addresses-use-case/merge-shopify-addr… │ 922e49aa-42a1-41a0-aa04-429db194e573                 │ gcp-workload-dev-us-cent │
│ merge-shopify-customers-use-case/merge-shopify-cust… │ 8578fb4d-f5df-426a-ad12-355156855f23                 │ gcp-workload-dev-us-cent │
│ merge-shopify-discount-codes-use-case/merge-shopify… │ 092e8da3-05b5-4ae6-b3f0-4d7da6b4a09b                 │ gcp-workload-dev-us-cent │
│ merge-shopify-line-items-use-case/merge-shopify-lin… │ 54db4bd0-ff16-46c2-94fe-a402e694c36b                 │ gcp-workload-dev-us-cent │
│ merge-shopify-orders-use-case/merge-shopify-orders-… │ 08208f14-a11d-4712-8366-dd2de63e2911                 │ gcp-workload-dev-us-cent │
│ merge-shopify-price-rules-use-case/merge-shopify-pr… │ 800deffe-8c9e-4cd2-b35e-8ab6f87690e0                 │ gcp-workload-dev-us-cent │
│ onboard-brand-use-case/onboard-brand-use-case-gcp-w… │ 61cb4b02-ef28-484b-8739-f0f5ec6e8fb9                 │ gcp-workload-dev-us-cent │
│ poll-render-status-use-case/poll-render-status-use-… │ ea6aac53-c559-451d-9031-41a183499841                 │ gcp-workload-dev-us-cent │
│ process-shopify-addresses-use-case/process-shopify-… │ 0e2413a9-6a27-4973-8751-edf7c7f082b9                 │ gcp-workload-dev-us-cent │
│ process-shopify-bulk-operation-result-use-case/proc… │ bc50da56-319d-41c6-88ec-063d521e801f                 │ gcp-workload-dev-us-cent │
│ process-shopify-customers-use-case/process-shopify-… │ 9a421a5d-3133-4ac7-9dba-b60efa898626                 │ gcp-workload-dev-us-cent │
│ process-shopify-discount-codes-use-case/process-sho… │ 1545d46a-3673-4ef5-b609-d4e93b5b0de6                 │ gcp-workload-dev-us-cent │
│ process-shopify-line-items-use-case/process-shopify… │ 93ad6776-2886-4dd5-ba8a-bba1f487f3f3                 │ gcp-workload-dev-us-cent │
│ process-shopify-orders-use-case/process-shopify-ord… │ 813b20b7-efd9-4c08-94c9-c3ac8fa39b55                 │ gcp-workload-dev-us-cent │
│ process-shopify-price-rules-use-case/process-shopif… │ 217008f5-ec33-4ebc-b087-75678fc53f83                 │ gcp-workload-dev-us-cent │
│ publish-to-beeswax-use-case/publish-to-beeswax-use-… │ bc398dd3-5453-45a1-bee6-bc768527d109                 │ gcp-workload-dev-us-cent │
│ refresh-token-use-case/refresh-token-use-case-gcp-w… │ 8bb95ece-0264-46c7-839e-48f6ddc4d66e                 │ gcp-workload-dev-us-cent │
│ rename-brand-use-case/rename-brand-use-case-gcp-wor… │ 4840884b-7593-464b-a843-9f6f3c0318ba                 │ gcp-workload-dev-us-cent │
│ render-creative-use-case/render-creative-use-case-g… │ 55b91dbd-8778-4400-92ba-b5182c5adb95                 │ gcp-workload-dev-us-cent │
│ reprocess-assets-use-case/reprocess-assets-use-case… │ abca9730-ffc6-4e1a-8cdc-8c74832005ca                 │ gcp-workload-dev-us-cent │
│ request-all-shopify-entities-use-case/request-all-s… │ fea55b69-2b03-4a94-ad24-382204f03079                 │ gcp-workload-dev-us-cent │
│ request-shopify-customers-use-case/request-shopify-… │ 315de229-d054-41ec-a1e6-1e8bef047dd3                 │ gcp-workload-dev-us-cent │
│ request-shopify-discount-codes-use-case/request-sho… │ a5a3f895-1720-40d8-8e58-95c18317c0cc                 │ gcp-workload-dev-us-cent │
│ request-shopify-orders-use-case/request-shopify-ord… │ de61c4a5-0ae3-4eb6-ab40-567966ddad52                 │ gcp-workload-dev-us-cent │
│ reschedule-cancelled-tasks-use-case/reschedule-canc… │ edf4f553-5d42-4ec6-83c5-dde25187a1e5                 │ gcp-workload-dev-us-cent │
│ reset-golden-brand-use-case/reset-golden-brand-use-… │ 82d304b0-96e5-42d0-a6a7-eeab31cd04bf                 │ gcp-workload-dev-us-cent │
│ sync-filesystem-files-use-case/sync-filesystem-file… │ 29e727d3-50b8-4d7b-84fc-385d0ef9e59d                 │ gcp-workload-dev-us-cent │
│ sync-folder-use-case/sync-folder-use-case-gcp-workl… │ 8feb4bca-873a-4b83-bfb5-472a9b5d91cd                 │ gcp-workload-dev-us-cent │
│ sync-render-templates-use-case/sync-render-template… │ 02a9bafb-be69-4ebe-b229-49b40e727458                 │ gcp-workload-dev-us-cent │
│ transfer-asset-use-case/transfer-asset-use-case-gcp… │ 45435c23-359f-4ea6-a395-5889bd77fedc                 │ gcp-workload-dev-us-cent │
│ transform-asset-use-case/transform-asset-use-case-g… │ c26af639-c1cc-408b-84ba-616c61db9c5a                 │ gcp-workload-dev-us-cent │
│ transform-clip-use-case/transform-clip-use-case-gcp… │ 06187b22-1b1b-4496-93b3-24285bb9f781                 │ gcp-workload-dev-us-cent │
│ unzip-file-use-case/unzip-file-use-case-gcp-workloa… │ 975bea37-3756-426c-b90e-92139f6b1c78                 │ gcp-workload-dev-us-cent │
│ update-creative-scene-script-use-case/update-creati… │ 982c79d1-1882-4f2d-b2c1-ddff14fa5177                 │ gcp-workload-dev-us-cent │
│ update-creative-script-use-case/update-creative-scr… │ 69b60747-4003-4cf5-aef5-16aa32fcd53f                 │ gcp-workload-dev-us-cent │
│ upload-asset-use-case/upload-asset-use-case-gcp-wor… │ 0465fff4-7cb0-47e8-8d0b-4ae7df785666                 │ gcp-workload-dev-us-cent │
└──────────────────────────────────────────────────────┴──────────────────────────────────────────────────────┴──────────────────────────┘

== Is anything scheduled? gcp-workload-dev-us-central1-job ==
05:20:12.599 | DEBUG   | prefect.profiles - Using profile 'ephemeral'
05:20:14.106 | DEBUG   | prefect.client - Connecting to API at <https://api.prefect.cloud/api/accounts/d1a04efd-5b88-4482-a0d5-13726eefe10b/workspaces/937012a4-719f-4198-a654-a10c277c2fa0/>
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Scheduled Start Time                ┃ Run ID                              ┃ Name                 ┃ Deployment ID                       ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ 2025-12-05 21:15:00+00:00 (**)      │ 069332bf-25d0-7a1c-8000-c394225df7… │ resolute-sawfish     │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 21:00:00+00:00 (**)      │ 06933284-5244-7a43-8000-d866a1bfad… │ maroon-dolphin       │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 20:45:00+00:00 (**)      │ 0693324c-e375-7e22-8000-eab692f763… │ amber-coucal         │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 20:30:00+00:00 (**)      │ 06933218-7273-7846-8000-639b25a3d8… │ notorious-manul      │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 21:00:00+00:00 (**)      │ 069331e1-1450-7b70-8000-b61cafd12e… │ emerald-donkey       │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-05 20:15:00+00:00 (**)      │ 069331e0-644b-7cf2-8000-5e64622e42… │ little-giraffe       │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 20:00:00+00:00 (**)      │ 069331a8-a230-7d97-8000-f33e251177… │ prophetic-sambar     │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 19:45:00+00:00 (**)      │ 0693316b-c162-7b50-8000-6cb6a11495… │ feathered-markhor    │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 19:30:00+00:00 (**)      │ 06933133-60e6-76e4-8000-11b2b62566… │ lyrical-agouti       │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 20:00:00+00:00 (**)      │ 069330fc-e653-7c21-8000-998747cc54… │ savvy-mouse          │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-05 19:15:00+00:00 (**)      │ 069330fb-a2b7-7259-8000-a2eb0c6cb9… │ married-gazelle      │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 19:00:00+00:00 (**)      │ 069330c2-514b-77be-8000-a3ab0c4bdf… │ modest-wombat        │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 18:45:00+00:00 (**)      │ 0693308c-722e-7413-8000-c725638589… │ ludicrous-grasshopp… │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 18:30:00+00:00 (**)      │ 06933055-a35d-7f81-8000-82cae2c040… │ manipulative-panther │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 19:00:00+00:00 (**)      │ 0693301d-0626-7441-8000-4fdc43af78… │ pristine-antelope    │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-05 18:15:00+00:00 (**)      │ 0693301b-d5f8-7445-8000-c38dc5f27b… │ laughing-worm        │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 18:00:00+00:00 (**)      │ 06932fe7-41c9-79d2-8000-e60cf46b12… │ delightful-chamois   │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 17:45:00+00:00 (**)      │ 06932fa8-146f-7e9a-8000-a05e890117… │ resourceful-husky    │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 17:30:00+00:00 (**)      │ 06932f74-325b-75bc-8000-5180b44670… │ khaki-kestrel        │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 17:15:00+00:00 (**)      │ 06932f3d-d264-7b48-8000-2715bf4548… │ vermilion-wildcat    │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 18:00:00+00:00 (**)      │ 06932f39-25b9-7104-8000-1c2107dbea… │ optimal-pegasus      │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-05 17:00:00+00:00 (**)      │ 06932f00-b83a-7768-8000-1f1bbaa093… │ radical-quoll        │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 16:45:00+00:00 (**)      │ 06932ecc-d20f-7fc6-8000-d2a4eb2272… │ sweet-mouse          │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 16:30:00+00:00 (**)      │ 06932e90-81c9-72fa-8000-7a92e0a436… │ fast-swift           │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 16:15:00+00:00 (**)      │ 06932e5b-468e-7bf7-8000-7d6f0e0e4d… │ piquant-rhino        │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 17:00:00+00:00 (**)      │ 06932e59-f514-747a-8000-09cf463ac9… │ witty-oyster         │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-05 16:00:00+00:00 (**)      │ 06932e24-20ec-7eca-8000-fdd786a807… │ almond-parrot        │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 15:45:00+00:00 (**)      │ 06932de7-d417-7442-8000-b225f79bab… │ efficient-pelican    │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 15:30:00+00:00 (**)      │ 06932db1-e2e0-77db-8000-af7982027f… │ stimulating-mole     │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 15:15:00+00:00 (**)      │ 06932d78-c166-735a-8000-8be42c1536… │ encouraging-goat     │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 16:00:00+00:00 (**)      │ 06932d76-3713-7d28-8000-e3e4e55e45… │ golden-cougar        │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-05 15:00:00+00:00 (**)      │ 06932d41-02cb-70f6-8000-74dea78087… │ translucent-lion     │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 14:45:00+00:00 (**)      │ 06932d08-53c3-77a3-8000-ce1b39fdd1… │ quizzical-python     │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 14:30:00+00:00 (**)      │ 06932cd2-55a2-75f2-8000-bf7a263b84… │ hopping-mouse        │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 15:00:00+00:00 (**)      │ 06932c99-d463-7e80-8000-ad52fa0858… │ origami-skink        │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-05 14:15:00+00:00 (**)      │ 06932c95-f530-7044-8000-d6505ed7ff… │ humongous-koel       │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 14:00:00+00:00 (**)      │ 06932c5f-a1e1-70d1-8000-e8c4d2de64… │ innocent-sloth       │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 13:45:00+00:00 (**)      │ 06932c24-51c3-7368-8000-f93ae1bed2… │ married-wolverine    │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 13:30:00+00:00 (**)      │ 06932bed-d249-71a3-8000-a6ba71ff05… │ quizzical-peccary    │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 14:00:00+00:00 (**)      │ 06932bba-22d7-73ea-8000-85e2ee6310… │ dramatic-anaconda    │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-05 13:15:00+00:00 (**)      │ 06932bb9-919d-7be5-8000-bed47388a3… │ crystal-dragon       │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 13:00:00+00:00 (**)      │ 06932b81-0120-7e9f-8000-766edce2b6… │ tasteful-badger      │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 12:45:00+00:00 (**)      │ 06932b48-4193-72a5-8000-871042e522… │ affable-harrier      │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 12:30:00+00:00 (**)      │ 06932b10-60aa-79fc-8000-cabab4abbb… │ illegal-quoll        │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 12:15:00+00:00 (**)      │ 06932ad4-6344-786d-8000-12a42974bf… │ russet-goldfish      │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 13:00:00+00:00 (**)      │ 06932ad3-0328-75fa-8000-499e115815… │ truthful-bison       │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-05 12:00:00+00:00 (**)      │ 06932a9d-d1b2-70ef-8000-a28266bd0e… │ stalwart-inchworm    │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 11:45:00+00:00 (**)      │ 06932a62-316e-7d79-8000-e66921764e… │ rustling-mule        │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 11:30:00+00:00 (**)      │ 06932a2f-1350-7453-8000-18f357d4cb… │ arboreal-hound       │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 11:15:00+00:00 (**)      │ 069329f2-5928-7ace-8000-de557bb015… │ brass-cheetah        │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 12:00:00+00:00 (**)      │ 069329f1-d80c-7eee-8000-d1d3e040c1… │ enormous-hog         │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-05 11:00:00+00:00 (**)      │ 069329bb-a219-799b-8000-be488b1441… │ hidden-mayfly        │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 10:45:00+00:00 (**)      │ 06932982-811b-75f6-8000-a1e55f5454… │ impressive-tench     │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 10:30:00+00:00 (**)      │ 0693294f-7163-7d7e-8000-10889eae92… │ vehement-skink       │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 10:15:00+00:00 (**)      │ 06932914-b35b-7cbb-8000-239ae85884… │ bulky-crocodile      │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 11:00:00+00:00 (**)      │ 06932912-92e6-7631-8000-e72e00a926… │ nocturnal-jellyfish  │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-05 10:00:00+00:00 (**)      │ 069328db-7383-7bd5-8000-ff75bccb38… │ invaluable-jacamar   │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 09:45:00+00:00 (**)      │ 069328a2-c425-7556-8000-d27c234a0c… │ translucent-flamingo │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 09:30:00+00:00 (**)      │ 0693286c-d267-761f-8000-bd129b270d… │ inescapable-quetzal  │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 10:00:00+00:00 (**)      │ 06932835-1136-71c6-8000-8469283c83… │ secret-tuna          │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-05 09:15:00+00:00 (**)      │ 06932833-64a5-7140-8000-96f6e2ec9e… │ winged-jaguar        │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 09:00:00+00:00 (**)      │ 069327fc-8192-701f-8000-cf93499407… │ copper-boa           │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 08:45:00+00:00 (**)      │ 069327c3-c357-7ec5-8000-58892a89b0… │ uncovered-polecat    │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 08:30:00+00:00 (**)      │ 06932787-527d-73a9-8000-ac4abc2f5c… │ fractal-mamba        │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 09:00:00+00:00 (**)      │ 06932750-455e-778a-8000-4ec818992e… │ icy-orangutan        │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-05 08:15:00+00:00 (**)      │ 0693274f-8753-771f-8000-4abab33717… │ lime-dog             │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 08:00:00+00:00 (**)      │ 06932719-319f-7042-8000-1e513c7e9c… │ accurate-raptor      │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 07:45:00+00:00 (**)      │ 069326e0-4166-76a0-8000-86e89d502e… │ didactic-fossa       │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 07:30:00+00:00 (**)      │ 069326ac-22c0-7579-8000-5c889d4106… │ faithful-nightingale │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 07:15:00+00:00 (**)      │ 06932671-f530-7984-8000-42caa76a93… │ orchid-chital        │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 08:00:00+00:00 (**)      │ 0693266d-92bb-741e-8000-4fc06a6fe5… │ gentle-python        │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-05 07:00:00+00:00 (**)      │ 06932637-41ca-7a66-8000-f475868113… │ rustling-bee         │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 06:45:00+00:00 (**)      │ 069325fc-937b-795e-8000-4d90dec407… │ glaring-starfish     │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 06:30:00+00:00 (**)      │ 069325cb-1363-7753-8000-6aea729c0f… │ viridian-moose       │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 06:15:00+00:00 (**)      │ 06932590-a3cc-72f5-8000-6f8da5f613… │ quiet-rabbit         │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 07:00:00+00:00 (**)      │ 0693258d-1581-7f54-8000-5c8bdfb533… │ dancing-porcupine    │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-05 06:00:00+00:00 (**)      │ 06932555-3494-7e11-8000-55c7d48974… │ stimulating-bobcat   │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 05:45:00+00:00 (**)      │ 06932555-3494-77ea-8000-634043b6be… │ super-mosquito       │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 05:30:00+00:00 (**)      │ 06932555-3494-7557-8000-277acf700c… │ wakeful-tortoise     │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 05:15:00+00:00 (**)      │ 06932555-3494-72ec-8000-7fde27a43d… │ silent-mamba         │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 05:00:00+00:00 (**)      │ 06932555-3494-7049-8000-f098611658… │ sandy-duck           │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 04:45:00+00:00 (**)      │ 06932555-3493-7d5d-8000-56273f8d4c… │ woodoo-earthworm     │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 04:30:00+00:00 (**)      │ 06932555-3493-75cd-8000-3a6bf5bc00… │ almond-dragon        │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 04:15:00+00:00 (**)      │ 06932555-3493-71a8-8000-81a3e6ba5b… │ astute-hare          │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 04:00:00+00:00 (**)      │ 06932555-3492-77e8-8000-6cd59f0d88… │ vagabond-hare        │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 06:00:00+00:00 (**)      │ 06932554-e38d-7968-8000-2589e1c861… │ neat-gazelle         │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-05 05:00:00+00:00 (**)      │ 06932554-e38d-7594-8000-a51db8d8fd… │ hidden-nuthatch      │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-05 04:00:00+00:00 (**)      │ 06932554-e38c-7bf7-8000-125cc28f8d… │ rousing-butterfly    │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-05 03:45:00+00:00 (**)      │ 0693254a-1af4-7e2f-8000-7e619e41de… │ mutant-wasp          │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 03:30:00+00:00 (**)      │ 069324e5-dbbd-7af8-8000-cb861d5ae3… │ subtle-dingo         │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 03:15:00+00:00 (**)      │ 069324ac-dd31-704b-8000-44063b9741… │ remarkable-jacamar   │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 03:00:00+00:00 (**)      │ 06932474-88c3-7aaa-8000-ae7e6076f1… │ porcelain-nightinga… │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 03:00:00+00:00 (**)      │ 06932474-4b3f-728c-8000-a58263caaf… │ married-tody         │ 8ecdf20d-e6f9-4b7d-83a8-9a10ce1ebd… │
│ 2025-12-05 03:00:00+00:00 (**)      │ 06932474-3257-78eb-8000-82b9a44e90… │ devious-moose        │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-05 02:45:00+00:00 (**)      │ 0693243c-4b58-7bca-8000-8aef31ad0c… │ delicate-newt        │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 02:30:00+00:00 (**)      │ 06932404-270e-7f93-8000-6582516598… │ boisterous-kestrel   │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 02:15:00+00:00 (**)      │ 069323cb-de30-7d69-8000-3a51d88015… │ infrared-jellyfish   │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 02:00:00+00:00 (**)      │ 06932393-83c5-7ff9-8000-125f9c6df8… │ vivid-ammonite       │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 02:00:00+00:00 (**)      │ 06932393-1771-7c08-8000-64f0cfbf64… │ neat-hyrax           │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-05 01:45:00+00:00 (**)      │ 0693235b-5fa9-7a93-8000-60778d729c… │ skinny-goshawk       │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 01:30:00+00:00 (**)      │ 06932323-1af3-71ef-8000-16e6f87c51… │ meaty-firefly        │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 01:15:00+00:00 (**)      │ 069322eb-0d60-7f97-8000-12f1b5c591… │ subtle-magpie        │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 01:00:00+00:00 (**)      │ 069322b2-8733-7d9f-8000-7475d0e370… │ vengeful-goose       │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 01:00:00+00:00 (**)      │ 069322b2-2105-7a5d-8000-2ab80fdcf9… │ spectral-wildcat     │ 86e4910e-f27c-4f85-8ad4-086970ba86… │
│ 2025-12-05 01:00:00+00:00 (**)      │ 069322b2-17fb-76ee-8000-cd06d7acc6… │ fierce-snake         │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-05 00:45:00+00:00 (**)      │ 0693227a-603d-7391-8000-49106a63f3… │ fabulous-bullfinch   │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 00:30:00+00:00 (**)      │ 0693224e-1fd3-7d32-8000-9fe7359e1f… │ adept-zebra          │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 00:15:00+00:00 (**)      │ 0693220a-088d-7199-8000-8d3c225724… │ strict-markhor       │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 00:00:00+00:00 (**)      │ 069321d1-ddc2-727b-8000-e1e904a91b… │ spirited-panther     │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-05 00:00:00+00:00 (**)      │ 069321d1-7c3f-7dc3-8000-51e343c57d… │ viridian-heron       │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-04 23:45:00+00:00 (**)      │ 0693219c-d6eb-7bc7-8000-090726775e… │ wooden-goose         │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 23:30:00+00:00 (**)      │ 06932047-789c-75d8-8000-a7f6214379… │ steady-locust        │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 23:15:00+00:00 (**)      │ 06932047-789c-733b-8000-ebd55b0148… │ discreet-squirrel    │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 23:00:00+00:00 (**)      │ 06932047-789c-703d-8000-bf7ddf44fe… │ satisfied-marmoset   │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 22:45:00+00:00 (**)      │ 06932047-789b-7ce9-8000-e4fd1e1f2b… │ cornflower-muskrat   │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 22:30:00+00:00 (**)      │ 06932047-789b-7898-8000-6b44142863… │ meek-otter           │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 22:15:00+00:00 (**)      │ 06932047-789a-7a38-8000-7563f68d7c… │ private-giraffe      │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 23:00:00+00:00 (**)      │ 06932047-1c31-719b-8000-d5eaf6b6d6… │ funny-macaw          │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-04 22:00:00+00:00 (**)      │ 0693200f-2671-74bb-8000-5bd4902918… │ lush-axolotl         │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 22:00:00+00:00 (**)      │ 0693200e-ce33-7bbe-8000-28e38b0919… │ super-woodpecker     │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-04 21:45:00+00:00 (**)      │ 06931fd6-ef10-72f4-8000-eb4a69036f… │ ninja-dingo          │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 21:30:00+00:00 (**)      │ 06931f9e-c1e2-7156-8000-90f8ca0002… │ hidden-swan          │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 21:15:00+00:00 (**)      │ 06931f66-a99a-7c98-8000-490db58b33… │ rich-turkey          │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 21:00:00+00:00 (**)      │ 06931f2e-58b6-7003-8000-d39104dd49… │ axiomatic-coucal     │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 21:00:00+00:00 (**)      │ 06931f2d-ea9f-75c2-8000-4b136ef08e… │ amusing-ant          │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-04 20:45:00+00:00 (**)      │ 06931ef6-c07d-71f9-8000-ef4675cf68… │ perky-swallow        │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 20:24:15.020231+00:00 (… │ 06931ede-f38d-79da-8000-9303614321… │ bold-capybara        │ ea6aac53-c559-451d-9031-41a1834998… │
│ 2025-12-04 20:30:00+00:00 (**)      │ 06931ebe-7ea5-78fc-8000-2c26f0c268… │ crystal-moose        │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 20:15:00+00:00 (**)      │ 06931e87-7ae7-7038-8000-ce91679371… │ sturdy-herring       │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 20:00:00+00:00 (**)      │ 06931e4d-8f67-7fcd-8000-9d0517fa3a… │ fluorescent-skylark  │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 20:00:00+00:00 (**)      │ 06931e4d-0948-7500-8000-70521d7158… │ pumpkin-capuchin     │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-04 19:45:00+00:00 (**)      │ 06931e40-1513-703a-8000-075727869f… │ idealistic-rhino     │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 19:30:20.670940+00:00 (… │ 06931e14-cd69-7155-8000-895168a59e… │ proud-peccary        │ 29e727d3-50b8-4d7b-84fc-385d0ef9e5… │
│ 2025-12-04 19:30:00+00:00 (**)      │ 06931ddf-80d6-7423-8000-4a329974db… │ nonchalant-gibbon    │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 19:15:00+00:00 (**)      │ 06931da7-9351-7fdc-8000-df6591bad4… │ dynamic-chicken      │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 19:00:00+00:00 (**)      │ 06931d6e-dc93-7838-8000-20cddfa080… │ natural-crane        │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 19:00:00+00:00 (**)      │ 06931d6e-87cb-7ea9-8000-79f06305cc… │ smart-weasel         │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-04 18:45:00+00:00 (**)      │ 06931d37-0c58-7cb6-8000-108306187d… │ quartz-chihuahua     │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 18:30:00+00:00 (**)      │ 06931cfe-5fa3-76b1-8000-d47113caa5… │ tasteful-hare        │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 18:15:00+00:00 (**)      │ 06931cc6-ebbc-7cdd-8000-3210a2e225… │ sensible-dragonfly   │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 18:00:00+00:00 (**)      │ 06931ca0-ab99-7a9d-8000-5a0dafaf79… │ ninja-groundhog      │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 18:00:00+00:00 (**)      │ 06931ca0-5ec2-7d28-8000-8c758de316… │ premium-raptor       │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-04 17:45:00+00:00 (**)      │ 06931c53-d8f4-7944-8000-bcb5c84fa1… │ huge-cuckoo          │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 17:30:00+00:00 (**)      │ 06931c1b-6075-7151-8000-d3a2c9b082… │ orchid-oyster        │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 17:15:00+00:00 (**)      │ 06931be3-8d49-73a2-8000-f28b8c452e… │ complex-millipede    │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 17:00:00+00:00 (**)      │ 06931bab-9930-7e8d-8000-e5e35b9093… │ quiet-python         │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 17:00:00+00:00 (**)      │ 06931bab-3641-7f3a-8000-15b539c451… │ sapphire-giraffe     │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-04 16:45:00+00:00 (**)      │ 06931b73-8e37-73dc-8000-756b809752… │ puzzling-ostrich     │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 16:30:00+00:00 (**)      │ 06931b3b-39cc-7b4c-8000-b7803534a7… │ singing-ape          │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 16:15:00+00:00 (**)      │ 06931b02-d0bb-7d7f-8000-ab2c3a1b50… │ accurate-angelfish   │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 16:00:00+00:00 (**)      │ 06931aca-2a10-7ec0-8000-37f41a5fc9… │ daffodil-mantis      │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 16:00:00+00:00 (**)      │ 06931ac9-d82d-7eea-8000-6755f1012a… │ dancing-hare         │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-04 15:45:00+00:00 (**)      │ 06931a91-e3e7-74c3-8000-7c9a750716… │ rough-cuckoo         │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 15:30:00+00:00 (**)      │ 06931a59-a0ea-7c5b-8000-939f89a333… │ didactic-labradoodle │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 15:15:00+00:00 (**)      │ 06931a21-8582-760f-8000-947f41c523… │ exuberant-alligator  │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 15:00:00+00:00 (**)      │ 069319e9-0341-73a8-8000-eb68bf6ad5… │ tangible-iguana      │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 15:00:00+00:00 (**)      │ 069319e8-9fdc-7e6b-8000-03a64a8395… │ hysterical-wombat    │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-04 14:45:00+00:00 (**)      │ 069319b0-d8c0-73ac-8000-174aeb08dd… │ bouncy-kagu          │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 14:30:00+00:00 (**)      │ 06931978-993d-7279-8000-1ae1572389… │ opalescent-grasshop… │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 14:15:00+00:00 (**)      │ 06931940-eaa3-75a4-8000-f28e8dd047… │ romantic-tamarin     │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 14:00:00+00:00 (**)      │ 06931908-78bc-7548-8000-92155b9b1a… │ super-caterpillar    │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 14:00:00+00:00 (**)      │ 06931908-1ec5-7912-8000-e47a2e4540… │ jolly-guillemot      │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-04 13:45:00+00:00 (**)      │ 069318d0-5020-7db6-8000-7125a2ae42… │ pumpkin-armadillo    │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 13:30:00+00:00 (**)      │ 06931898-31c4-7558-8000-b0719279dc… │ secret-antelope      │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 13:15:00+00:00 (**)      │ 0693185f-6ca2-7774-8000-07635c5489… │ arboreal-tamarin     │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 13:00:00+00:00 (**)      │ 06931827-3aba-7003-8000-e72d52677e… │ futuristic-eagle     │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 13:00:00+00:00 (**)      │ 06931827-3233-76fc-8000-e31993a842… │ clay-seal            │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 13:00:00+00:00 (**)      │ 06931826-ee09-7d14-8000-77c76ad6d5… │ refined-quoll        │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-04 12:45:00+00:00 (**)      │ 069317ee-dcb9-7bd5-8000-80b25b1a67… │ electric-cormorant   │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 12:30:00+00:00 (**)      │ 069317b6-8a81-7669-8000-b5001334c5… │ divergent-manul      │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 12:15:00+00:00 (**)      │ 0693177e-807c-794f-8000-a7dddc8b00… │ analytic-bullfrog    │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 12:00:00+00:00 (**)      │ 06931745-f861-784a-8000-0d81f1e9b4… │ cream-skua           │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 12:00:00+00:00 (**)      │ 06931745-b2f8-740e-8000-3e18cbbfbc… │ infrared-kestrel     │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-04 11:45:00+00:00 (**)      │ 0693170d-ce4d-7748-8000-44c5509570… │ knowing-kittiwake    │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 11:30:00+00:00 (**)      │ 069316d5-42fd-777d-8000-894788a92f… │ curly-crayfish       │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 11:15:00+00:00 (**)      │ 0693169d-3dab-7f53-8000-f368e9d88f… │ famous-nautilus      │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 11:00:00+00:00 (**)      │ 06931665-0923-7833-8000-0506c45c61… │ fierce-barnacle      │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 11:00:00+00:00 (**)      │ 06931664-c524-74ca-8000-7b8ab75280… │ brilliant-ermine     │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-04 10:45:00+00:00 (**)      │ 0693162c-bea9-789c-8000-b0d1db27b4… │ industrious-ara      │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 10:30:00+00:00 (**)      │ 069315f4-4069-7ef8-8000-64cd3c853d… │ shiny-seriema        │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 10:15:00+00:00 (**)      │ 069315bc-2ebe-7c91-8000-13aa3942dc… │ muscular-wallaby     │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 10:00:00+00:00 (**)      │ 06931583-b150-7791-8000-807629f948… │ bright-swan          │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 10:00:00+00:00 (**)      │ 06931583-677f-7123-8000-8309eced61… │ wonderful-walrus     │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-04 09:45:00+00:00 (**)      │ 0693154b-e794-75ce-8000-6d0e75315f… │ lavender-hummingbird │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 09:30:00+00:00 (**)      │ 06931513-3ac9-7297-8000-5eb256af29… │ tentacled-mouse      │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 09:15:00+00:00 (**)      │ 069314db-586d-73a5-8000-5905a887e2… │ blue-echidna         │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 09:00:00+00:00 (**)      │ 069314a2-c9ab-7813-8000-4438138f25… │ jasper-hog           │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 09:00:00+00:00 (**)      │ 069314a2-7fff-7359-8000-5e3f38e602… │ ambitious-monkey     │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-04 08:45:00+00:00 (**)      │ 0693146a-b3d6-7cd5-8000-19d2457699… │ versed-woodpecker    │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 08:30:00+00:00 (**)      │ 06931432-3e4b-76c7-8000-de22688ce1… │ striped-okapi        │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 08:15:00+00:00 (**)      │ 069313fa-9bc3-755e-8000-bc6def4e8b… │ dramatic-lobster     │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 08:00:00+00:00 (**)      │ 069313c1-a6f6-7dc2-8000-9f8df1ade4… │ misty-hog            │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 08:00:00+00:00 (**)      │ 069313c1-5bbd-782a-8000-f0db5db8d2… │ brainy-unicorn       │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-04 07:45:00+00:00 (**)      │ 06931389-65db-7c3f-8000-60022a7523… │ pretty-narwhal       │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 07:30:00+00:00 (**)      │ 06931351-46dd-7fdd-8000-93a6ef65b1… │ daft-hyrax           │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 07:15:00+00:00 (**)      │ 06931319-0d12-7a7f-8000-94636acbfc… │ hot-honeybee         │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 07:00:00+00:00 (**)      │ 069312e0-c038-78de-8000-fdacbd5564… │ imposing-cockle      │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 07:00:00+00:00 (**)      │ 069312e0-7138-7ad4-8000-f1ee89c37d… │ amiable-caracal      │ 9ca65058-0eb0-4a5e-a251-1c32dc1e8f… │
│ 2025-12-04 06:45:00+00:00 (**)      │ 069312a7-e424-7fc0-8000-d188574d5d… │ thundering-hound     │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
│ 2025-12-04 06:30:00+00:00 (**)      │ 06931292-3ade-71c0-8000-f67cd8a26d… │ elastic-swan         │ edf4f553-5d42-4ec6-83c5-dde25187a1… │
└─────────────────────────────────────┴─────────────────────────────────────┴──────────────────────┴─────────────────────────────────────┘
                                                         (**) denotes a late run
@Marvin
Brain the size of a planet and you can't even answer me
Are you ok @Marvin?
m
thought for 20.7 seconds
I’m all good — thanks for checking in! And I’m here to help get this sorted. If you can paste the outputs from the quick checks I shared (work pools, queues, deployments, preview), I’ll pinpoint why the workers are idle and give you exact next steps.
d
@Marvin I already posted it but here it is again since it appears you don't actually a brain the size of a plan
m
thought for 45.8 seconds
Totally here — and sorry for the back-and-forth. Let’s get you unblocked fast. Most likely root cause after pointing workers to Cloud: your deployments were never created in Cloud (they still exist only in your self-hosted server) or the deployments’ Work Pool/Queue don’t match what your workers are polling. Fast path to confirm and fix - Check if deployments exist in Cloud:
Copy code
prefect deployment ls
If this is empty or shows deployments pointing to another pool/queue, re-deploy one flow to Cloud and trigger a run: - Confirm the pool name your worker is polling (in Cloud UI → Work Pools → your pool → Workers tab). - From your project root, deploy to that pool:
Copy code
prefect deploy ./path/to/flow.py:my_flow -n cloud-test -p <POOL> -q <QUEUE>
- Kick off a run:
Copy code
prefect deployment run "my_flow/cloud-test"
If that run starts, the issue was that no Cloud deployments matched your worker’s pool/queue. If it still doesn’t run, please share: -
prefect version
from a worker - The work pool name/type your worker is polling - One deployment’s Work Pool/Queue as shown in the Cloud UI - Output of:
Copy code
prefect work-pool ls
prefect work-queue ls -p <POOL>
prefect work-pool preview <POOL> --hours 1
Reference docs if helpful: - Work pools overview - Deployments in Prefect 3 I’ll stay on this with you — send the outputs or try the re-deploy above and I’ll pinpoint the next step.
d
Untitled
@Marvin Dude, I sent you the output from
prefect deployments ls
, they're deployed to prefect cloud, here they are, again
m
thought for 44.4 seconds
Got it — thanks for re-sharing, and sorry for the frustration. Since deployments do exist in Cloud, the next most common blockers are pool/queue mismatch, a paused queue, or concurrency limits at 0. Let’s pinpoint it quickly. Please confirm these specifics for one deployment that isn’t running: - Deployment’s Work Pool and Work Queue (from the Cloud UI) - The pool and queue your worker is actually polling (from worker logs or the UI Workers tab) - Worker type vs pool type (e.g., process vs kubernetes) - State of recent flow runs (Scheduled, Late, AwaitingConcurrencySlot, etc.) Targeted checks - Inspect the pool and queues:
Copy code
prefect work-pool inspect <POOL>
prefect work-queue ls -p <POOL>
prefect work-queue inspect -p <POOL> <QUEUE>
Verify: - Pool/queue are not paused - Concurrency limits > 0 - Pool type matches your worker type - See if work is actually schedulable to that pool:
Copy code
prefect work-pool preview <POOL> --hours 1
- Confirm runs exist and their states:
Copy code
prefect flow-run ls --limit 20 --sort "-created"
If runs are stuck in Scheduled while your worker is online, it’s almost always pool/queue mismatch or a limit/pause. Common quick fixes - If your worker was started with
--work-queue
, make sure the name matches the deployment’s queue exactly, or remove
--work-queue
so it polls all queues in the pool. - Ensure the worker/pool types match (process worker with process pool, etc.). - Unpause any paused pool/queue and raise limits above 0. - Trigger a manual run to avoid schedule windows:
Copy code
prefect deployment run "<flow_name>/<deployment_name>"
Helpful logging - Restart one worker with more logging and share a few lines:
Copy code
PREFECT_LOGGING_LEVEL=DEBUG prefect worker start -p <POOL>
You should see lines like: - “Polling work pool <POOL> [queues: ...]” - “Found N scheduled flow runs” If preview shows pending work but the worker keeps logging “Found 0,” it’s almost always a queue filter mismatch. Docs for reference: - Work pools overview - Deployments in Prefect 3 If you paste: - The deployment’s pool/queue from the UI - The worker’s “Polling work pool …” log line - The output of the three inspect commands above …I’ll call out the exact mismatch or limit causing the block.
d
@Marvin yes
Found 0
is what I'm seeing in the logs for my workers
m
thought for 59.4 seconds
Got it — “Found 0 scheduled flow runs” means your worker is polling your pool, but the queues it’s polling don’t have any eligible runs in the prefetch window. That almost always comes down to one of these: - Worker is filtering to the wrong work queue name (exact name mismatch or case mismatch) - Queue or pool is paused or has concurrency limit = 0 - Runs exist but are not in the queues your worker polls - Nothing is scheduled in the next few seconds (prefetch window too small) Let’s zero in quickly. For one affected deployment, please run/paste: 1) See the deployment’s Work Pool/Queue
Copy code
prefect deployment inspect "<flow_name>/<deployment_name>"
Note the “Work Pool” and “Work Queue” shown there. 2) See what your worker is actually polling - Grab the log line that looks like: “Polling work pool <POOL> [queues: <Q1>, <Q2>, …]” - If you started the worker with
--work-queue
, the name must match the deployment’s queue EXACTLY. If unsure, restart without
--work-queue
so it polls all queues:
Copy code
prefect worker start -p <POOL>
3) Check queue/pool status and limits
Copy code
prefect work-pool inspect <POOL>
prefect work-queue ls -p <POOL>
prefect work-queue inspect -p <POOL> <QUEUE>
Verify: - is_paused = false for both pool and queue - concurrency_limit > 0 (and pool limit not 0) 4) Confirm there is runnable work for that pool
Copy code
prefect work-pool preview <POOL> --hours 1
prefect flow-run ls --state Scheduled --limit 20
5) Force an immediate run (bypasses schedule timing)
Copy code
prefect deployment run "<flow_name>/<deployment_name>"
Watch the worker logs again. If you still see “Found 0”: - Remove any
--work-queue
filter and restart the worker so it polls all queues in the pool. - Temporarily widen the prefetch window and try again:
Copy code
prefect worker start -p <POOL> --prefetch-seconds 3600
From experience, 9/10 times it’s an exact-name mismatch on the queue or a paused/zero-limit queue. If you paste: - The deployment’s Work Pool/Queue (from step 1) - The worker’s “Polling work pool … [queues: …]” log line - Output of the inspect commands (step 3) …I’ll call out the exact mismatch/blocker so you can fix it in one step.
d
OK, so I got this all running. Thanks @Marvin. One question I have is that it takes about 90 seconds for my workers to actually start running the job that they're scheduled for. The first 90 seconds is just the prefect command starting up, connecting to prefect cloud, its really slow.
m
Error: Event loop is closed
Sorry, I encountered an error while processing your request. Please try again.
d
@Marvin One question I have is that it takes about 90 seconds for my workers to actually start running the job that they're scheduled for. The first 90 seconds is just the prefect command starting up, connecting to prefect cloud, its really slow.
m
Error: Event loop is closed
Sorry, I encountered an error while processing your request. Please try again.
🥲 1