RORK LABJP
DEADLINE — Four days remain until Google Play requires Android 16 (API level 36). From August 31 it applies to new apps and to updates of existing ones alikeRULES — The submission rule and the visibility rule are separate. An app you have stopped updating still disappears for new users on newer devices if it targets below API 35EXTENSION — An extension keeps you shipping to all users until November 1, but the form lives in Play Console and has to be filed before the deadline passesEXPO — Expo SDK 57 moves React Native from 0.85 to 0.86 while React stays at 19.2, and 0.86 is intended to land without breaking changesHERMES — 57.0.9 updates React Native to 0.86.2 and clears the Hermes V1 memory regression from SDK 56, which shows up in apps importing reanimated or workletsPREBUILD — expo prebuild now clears and regenerates the native android and ios directories by default, so hand-edited native changes vanish unless you audit for them firstDEADLINE — Four days remain until Google Play requires Android 16 (API level 36). From August 31 it applies to new apps and to updates of existing ones alikeRULES — The submission rule and the visibility rule are separate. An app you have stopped updating still disappears for new users on newer devices if it targets below API 35EXTENSION — An extension keeps you shipping to all users until November 1, but the form lives in Play Console and has to be filed before the deadline passesEXPO — Expo SDK 57 moves React Native from 0.85 to 0.86 while React stays at 19.2, and 0.86 is intended to land without breaking changesHERMES — 57.0.9 updates React Native to 0.86.2 and clears the Hermes V1 memory regression from SDK 56, which shows up in apps importing reanimated or workletsPREBUILD — expo prebuild now clears and regenerates the native android and ios directories by default, so hand-edited native changes vanish unless you audit for them first
Articles/App Dev
App Dev/2026-08-28Intermediate

Two weeks of half-finished batch runs, and every log line said success

A job scheduled twice a day was firing once, and nothing in the logs showed it. Here is the run ledger that catches executions that never happened, plus a backlog-slope check, with real command output.

scheduled jobsoperations9monitoring4automation8indie dev30

Premium Article

One morning I opened the folder of uncategorized wallpaper images out of habit, and stopped. There were far too many of them.

That folder was supposed to be emptied twice a day by a classification job. I scrolled back through the run logs and found nothing but success lines. Not a single error.

The problem was not inside the job. A job scheduled to run twice a day had been running once, and no log anywhere recorded that fact.

The evidence showed up in the pile, not in the logs

The expression I had written was 30 4,16 * * *. Half past four in the morning, half past four in the afternoon. A comma-separated list of slots in a single expression, which is about as ordinary as cron gets.

Only the morning slot was actually firing. The afternoon one quietly did not exist.

What makes this awkward is that nothing looks broken. Every run that did happen went all the way through and finished successfully. The job itself was healthy. What was broken was the number of times it ran.

I noticed because I happened to glance at a folder, not because any monitoring told me. I had been treating the pipeline as something my tooling watched over, when in practice it was my own eyes doing the watching. That is worth admitting plainly.

Runs that never happened leave no trace

Obvious in hindsight, but it took me a while to really absorb it.

A log is a record of things that occurred. A run that never started has no author. So no amount of careful reading through success lines will ever surface the gap.

What you watchWhat it catchesWhat it misses
Success / failure in run logsRuns that started and then diedRuns that never started
Last execution timestampA job that stopped entirelyOne of two daily slots still firing
Job durationChanges in workload weightNothing, since each run is normal
Expected slots vs. recorded runsThe exact dates and times that went missingErrors in the slot definition itself
Slope of the pending queuePeriods where processing trails intakeCases where intake dropped too

If you only have the first two rows, a job running at half capacity can continue indefinitely. In my case it did, until the next time I looked.

Thank you for reading this far.

Continue Reading

What follows includes implementation code, benchmarks, and practical content we hope you'll find useful. This site runs without ads — server and development costs are supported entirely by members like you. If it's been helpful, we'd be truly grateful for your support.

WHAT YOU'LL LEARN
Confirm within a single day whether your scheduler actually honors multi-slot cron expressions the way you assume it does
Put a check in place that catches runs that never happened at all, which success logs structurally cannot show you
Spot periods where processing has fallen behind intake by reading the slope of your pending queue in a few dozen lines of code
Secure payment via Stripe · Cancel anytime

Unlock This Article

Get full access to the rest of this article. Buy once, read anytime. This site is ad-free — your support goes directly toward keeping it running.

or
Unlock all articles with Membership →
Share

Thank You for Reading

Rork Lab is ad-free, supported entirely by members like you. We publish practical guides daily with implementation code, benchmarks, and production-ready patterns. If you've found it useful, we'd love to have you on board.

  • Copy-paste ready implementation code
  • New advanced guides published daily
  • $5/mo or $15 for lifetime access
View Membership →

Related Articles

App Dev2026-08-24
I Moved the Thumbnails Assuming the Shipped Build Would Keep Asking for the Old Path
Reorganizing image directories on the server does not reach the builds already installed on people's phones. Here is the two-way fallback that returns 200 for both the old and new paths, the ordering rule for images versus catalog, and the four checks I run through a CDN before calling a release live.
App Dev2026-07-18
Walk Through an App Store Submission Without Writing Code — Sticker Packs as a Dress Rehearsal
An iMessage sticker pack is one of the few things you can ship to the App Store with zero code. It cannot make money — and that constraint is exactly what makes it a clean rehearsal for the submission process.
App Dev2026-06-13
Shipping Wallpaper Packs Without an App Review — Versioning and Delta Delivery for Remote Assets Across Six Apps
Re-submitting your app every time you add ten wallpapers grinds operations to a halt. Here is a manifest-based versioning scheme with delta downloads, cache invalidation, and rollback — with the implementation and measured transfer savings from running six apps in parallel.
📚RECOMMENDED BOOKS
Build a Large Language Model (From Scratch)
Sebastian Raschka
LLM Dev
Prompt Engineering for LLMs
Berryman & Ziegler
Prompting
AI Engineering
Chip Huyen
AI Eng
* Contains affiliate links
See all →