id
int64
1
122
repository
stringclasses
23 values
commit_id
stringclasses
24 values
question
stringlengths
2
509
101
https://github.com/nilenso/goose
1a88d683fe428b8019c63c0e07af45c691a68d5b
In Goose, what does `retry-count` really mean, and how many total executions happen for `max-retries` 0 vs 5?
102
https://github.com/nilenso/goose
1a88d683fe428b8019c63c0e07af45c691a68d5b
Do Redis and RMQ retry boundary checks behave the same, or is there an edge-case mismatch?
103
https://github.com/nilenso/goose
1a88d683fe428b8019c63c0e07af45c691a68d5b
How does `retry-queue` turn into `ready-retry-queue`, and when does Goose route to it?
104
https://github.com/nilenso/goose
1a88d683fe428b8019c63c0e07af45c691a68d5b
What are the batch states, and exactly how are they computed from job counts?
105
https://github.com/nilenso/goose
1a88d683fe428b8019c63c0e07af45c691a68d5b
How does Redis batch handling avoid enqueueing the callback more than once under concurrency?
106
https://github.com/nilenso/goose
1a88d683fe428b8019c63c0e07af45c691a68d5b
What keys does Redis create for a batch, and what does each one hold?
107
https://github.com/nilenso/goose
1a88d683fe428b8019c63c0e07af45c691a68d5b
At batch completion, which keys get `EXPIRE NX` and why those specific ones?
108
https://github.com/nilenso/goose
1a88d683fe428b8019c63c0e07af45c691a68d5b
What fields are stored in a cron entry, and what timezone is used if I don’t pass one?
109
https://github.com/nilenso/goose
1a88d683fe428b8019c63c0e07af45c691a68d5b
How are due cron entries fetched per tick, and which default limits that batch size?
110
https://github.com/nilenso/goose
1a88d683fe428b8019c63c0e07af45c691a68d5b
When cron entries are enqueued, how is `cron-run-at` computed and where is cron parsing done?
111
https://github.com/nilenso/goose
1a88d683fe428b8019c63c0e07af45c691a68d5b
Are any cron limitations called out in the repo?
112
https://github.com/nilenso/goose
1a88d683fe428b8019c63c0e07af45c691a68d5b
Why does Goose store both `queue` and `ready-queue` in the job payload?
113
https://github.com/nilenso/goose
1a88d683fe428b8019c63c0e07af45c691a68d5b
How does console param validation deal with bad UUIDs, bad filter types, and invalid page/limit numbers?
114
https://github.com/nilenso/goose
1a88d683fe428b8019c63c0e07af45c691a68d5b
Why does Redis `prioritise-execution` return that nested transaction-like shape instead of just true/false?
115
https://github.com/nilenso/goose
1a88d683fe428b8019c63c0e07af45c691a68d5b
How does orphan recovery in Redis decide a worker is dead and replay its preserved jobs?
116
https://github.com/nilenso/goose
1a88d683fe428b8019c63c0e07af45c691a68d5b
What exact scenario throws `MAX_DELAY limit breached`, and through which public API do I hit it?
117
https://github.com/nilenso/goose
1a88d683fe428b8019c63c0e07af45c691a68d5b
When does `random-element` throw `List is empty`, and which RMQ paths depend on it?
118
https://github.com/nilenso/goose
1a88d683fe428b8019c63c0e07af45c691a68d5b
What input/state leads to `CHANNEL_MAX limit reached` in `rmq.channel/open`?
119
https://github.com/nilenso/goose
1a88d683fe428b8019c63c0e07af45c691a68d5b
In `scheduled-jobs/prioritises-execution`, is there a bug where original jobs are passed instead of only validated ones?
120
https://github.com/nilenso/goose
1a88d683fe428b8019c63c0e07af45c691a68d5b
Can you trace `perform-in-sec` on Redis end-to-end, including final queue placement via `ready-or-retry-queue`?
121
https://github.com/nilenso/goose
1a88d683fe428b8019c63c0e07af45c691a68d5b
Are Redis and RMQ retry terminal conditions equivalent for edge values?
122
https://github.com/nilenso/goose
1a88d683fe428b8019c63c0e07af45c691a68d5b
How do cron register/due-fetch/enqueue-reschedule steps work together in Redis, and why is `ensure-sequential` needed?