frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open in hackernews

Show HN: Render Workflows – Durable task orchestration without queues or workers

https://render.com/workflows
6•anurag•1h ago
Hey HN, I'm Anurag, founder and CEO of Render, a cloud for application developers. We've just launched Render Workflows, a way to define durable tasks by decorating plain TypeScript or Python functions and running them on Render without operating queues, worker pools, retry logic, and state management. Code example below [1].

The use cases we have in mind include agent loops, ETL/data pipelines, billing flows, and other long-running jobs. The model is simple: mark an existing function as a Task, deploy the repo as a Workflow, then trigger runs from your application code or via our API.

Each task can run continuously for up to 24 hours and set its own retry policy, timeout, and compute instance type. Tasks can call other tasks like normal functions, and fan out in parallel with `Promise.all` or `asyncio.gather`. Each task run gets its own isolated container, and Render handles the queuing, orchestration, and observability.

You can inspect logs, traces, and metrics for each run in the Render dashboard. If you're running other services on Render, you can connect to them from your tasks using built-in private networking. Billing is based on task instance type and run duration, prorated to the second.

This is a public beta, so rough edges are possible. Today, task definitions are TypeScript and Python only, and built-in cron schedules aren't available yet. You can still trigger tasks from the SDK/API, or use a Render Cron Job for scheduled entry points. We're also working on pause/resume, checkpointing, vertical autoscaling, and support for more languages.

We're not claiming this replaces every task orchestration system (yet). The goal is to make the common cases much simpler to use and troubleshoot, especially for Render users.

Docs and examples: https://render.com/docs/workflows

I'd especially love feedback from folks who have built similar systems with Celery, BullMQ, Temporal, or other queues and workers. What would you want to see before GA?

[1] ---- TS example ----

  import { task } from '@renderinc/sdk/workflows'
  import { Render } from '@renderinc/sdk'
  
  const chargeCard = task(
    {
      name: 'chargeCard',
      retry: { maxRetries: 5, waitDurationMs: 1000, backoffScaling: 2 },
      timeoutSeconds: 300,
      plan: 'standard',
    },
    async function chargeCard(invoiceId: string) {
      // call Stripe or your payment provider here
      return { invoiceId, chargeId: `ch_${invoiceId}` }
    }
  )
  
  const writeLedger = task(
    { name: 'writeLedger' },
    async function writeLedger(invoiceId: string, chargeId: string) {
      // persist accounting entry
    }
  )
  
  const sendReceipt = task(
    { name: 'sendReceipt' },
    async function sendReceipt(invoiceId: string, chargeId: string) {
      // email customer
    }
  )
  
  const processInvoice = task(
    { name: 'processInvoice' },
    async function processInvoice(invoiceId: string) {
      const charge = await chargeCard(invoiceId)
  
      await Promise.all([
        writeLedger(invoiceId, charge.chargeId),
        sendReceipt(invoiceId, charge.chargeId),
      ])
  
      return { chargeId: charge.chargeId }
    }
  )
  
  // from your app:
  const render = new Render()
  const startedRun = await render.workflows.startTask(
    'billing/processInvoice',
    ['inv_123']
  )
  const finishedRun = await startedRun.get()
  console.log(finishedRun.results)

Chrome Platform Status

https://chromestatus.com/roadmap
1•jcbhmr•2m ago•0 comments

Crane Ledger – Headless Accounting API with REST, GraphQL, and MCP

https://craneledger.ai
1•lifeofjer•2m ago•0 comments

Show HN: Open-source, machine-bound licensing with a single POST request

https://github.com/archergate/archergate
1•Archerlm•3m ago•0 comments

Webloc: Analysis of Penlink's Ad-Based Geolocation Surveillance Tech

https://citizenlab.ca/research/analysis-of-penlinks-ad-based-geolocation-surveillance-tech/
1•ledoge•4m ago•0 comments

The Race to Protect Submarine Cables from Sabotage

https://www.wsj.com/tech/inside-the-race-to-protect-submarine-cables-from-sabotage-c90ba18c
1•Stratoscope•5m ago•0 comments

Cached knowledge is not intelligence

https://olshansky.info/thoughts/2026-04-09-cached-knowledge-is-not-intelligence
1•speckx•5m ago•0 comments

AI agents can now open business bank accounts

https://twitter.com/brandon/status/2042280053107540251
1•karlhughes•6m ago•0 comments

Car-T therapy vanquishes ultra-rare disease trio

https://www.nature.com/articles/d41586-026-01108-4
1•freediddy•7m ago•0 comments

SQLite Release 3.53.0

https://www.sqlite.org/releaselog/3_53_0.html
2•thunderbong•8m ago•0 comments

Show HN: Miracle Release v0.9.0 – A hackable Wayland compositor

https://github.com/miracle-wm-org/miracle-wm/releases/tag/v0.9.0
1•matthewkosarek•10m ago•0 comments

Advocating for the Death of the Modern A16Z Stack

https://rawquery.dev/blog/death-to-the-modern-stack
1•mooreds•10m ago•0 comments

Giving an Agent a Rooted Android Phone

https://workers.io/blog/autonomous-mobile-pentesting/
1•skshadan•11m ago•0 comments

What's breaking in your LLM gateway in production?

1•vrinda_future•11m ago•0 comments

Solus and Age Verification

https://getsol.us/2026/04/solus-and-age-verification/
1•speckx•13m ago•0 comments

Boxer3D – Lifting 2D detections to 3D on iPhone with Lidar

https://github.com/Barath19/Boxer3D
1•barathbee•14m ago•1 comments

We tested "stateful AI." It couldn't prove its own history

https://enlightenedcore.org/
1•EC-CGF•15m ago•0 comments

A VSCode Extension for C++ Code Coverage on Windows

https://marketplace.visualstudio.com/items?itemName=covdbg.covdbg
1•superreeen•16m ago•0 comments

Litterbox by Catbox

https://litterbox.catbox.moe/
1•hmokiguess•16m ago•0 comments

Show HN: Git-worm, the simple worktree manager

https://github.com/ThatXliner/git-worm
1•thatxliner•17m ago•0 comments

A full AI intelligence layer on WhatsApp – Opero.so

https://opero.so
1•juancruzguillen•18m ago•0 comments

11,000 Asteroids Spotted in 'Unprecedented' Haul

https://www.newsweek.com/11000-asteroids-spotted-in-unprecedented-haul-with-33-near-earth-objects...
1•mooreds•18m ago•0 comments

A WhatsApp chatbot that becomes smarter the more you use it

https://opero.so/blog/how-your-ai-agent-gets-smarter-every-conversation
1•juancruzguillen•19m ago•0 comments

Enterprise AI does not have a model problem. It has an adoption problem

1•taariqlewis•19m ago•0 comments

Why would you want a 64 bit microprocessor, especially in a personal system? (19

https://www.bourguet.org/v2/comparch/mashey-byte-1991
1•fanf2•20m ago•0 comments

New IKEA Matter over Thread bulbs can be switched to Zigbee by powercycling 12x

https://old.reddit.com/r/homeassistant/comments/1sgstis/90_cri_1500lm_e27_zigbee_bulb_for_999_yes...
2•HeyMeco•20m ago•1 comments

Show HN: MCP Servers

https://awesomemcpservers.ai/
1•sh_tomer•20m ago•0 comments

Let's talk about LLMs

https://www.b-list.org/weblog/2026/apr/09/llms/
2•bsgada•21m ago•0 comments

Show HN: AIMock – One Mock Server for Your AI Stack

https://github.com/CopilotKit/aimock
5•nathan_tarbert•22m ago•0 comments

BojanSocial – A 2010s Microblogging Site

https://bojan.social
1•arrgeeebee•22m ago•0 comments

I quit drinking for a year out of spite

https://dynomight.net/drinking/
2•crescit_eundo•24m ago•0 comments