Excited to share the latest ray.β so partner theme for Trigger.dev!
Beautiful collab with @DKP__ @maverickdotdev
Try it -> ray.so/triggerdev
@triggerdev.bsky.social
Open source background jobs and AI infrastructure (YC W23). β http://trigger.dev β http://github.com/triggerdotdev β http://trigger.dev/discord The official π¦ account for Trigger.dev
Excited to share the latest ray.β so partner theme for Trigger.dev!
Beautiful collab with @DKP__ @maverickdotdev
Try it -> ray.so/triggerdev
π Launchweek 2 drops on Monday!
Don't forget to register so you don't miss the first announcement. π¦
trigger.dev/launchweek/2
Full guide with specifics and howβtos:
trigger.dev/docs/how-to...
π Donβt needlessly retry
When an error is thrown in a task, your run will be automatically reattempted based on your retry settings.
Try setting lower maxAttempts for less critical tasks.
πͺ Do more work in parallel in a single task
Sometimes itβs more efficient to do more work in a single task. This is particularly true when youβre doing lots of async work such as API calls β most of the time is spent waiting, so itβs great for doing calls in parallel inside the same task.
π Avoid duplicate work using idempotencyKey
On retries or duplicate triggers, the same input returns the saved result. Triggerβ.dev skips reβexecution β fewer runs, lower compute spend.
π€ Reduce your machine sizes
The larger the machine, the more it costs per second. Start with the smallest machine that works, then scale up only if needed.
π Create billing alerts
Configure billing alerts in your dashboard to get notified when you approach spending thresholds. This helps you:
β Catch unexpected cost increases early
β Identify runaway tasks before they become expensive
We want you to spend less on Trigger.dev.
So we put together a guide for doing just that β
π Sign up for here for updates:
trigger.dev/launchweek/2
Update: Weβve made the decision to delay Launchweek 2 by one week β π Aug 18β22
We could ship now, but weβd rather ship something weβre completely happy with. Thank you for your patience! π
Launchweek 2 is just around the corner!
Don't forget to register so you don't miss the first feature drop. π¦
trigger.dev/launchweek/2
Learn how to build:
β Create and manage uptime monitors
β Start/stop monitors on demand
β Home dashboard with stats
β Drill-down pages for individual monitors
β Time filtering
β A public Status Page per customer
β Email notifications
www.youtube.com/watch?v=W_J...
π¨ The Tinybird Live build-along session is starting in 5 minutes! π¨
Learn how to build an Uptime Monitoring Service from scratch in a Live Coding Session using:
- Lovable for the application layer
- Tinybird for the data layer and real-time APIs
- Trigger for background tasks
π Join the session
β¨Sign up for the livestream here:
www.tinybird.co/live-sessio...
Learn how to build an Uptime Monitoring Service from scratch using Tinybird, Lovable and Trigger.
ποΈ Wed, August 6th 4:30 PM GMT+1
ποΈ Tinybird for real-time analytics and data flows
π©· Lovable for the front-end UI layer
β¨ Trigger.dev for the workflow automation and scheduled tasks
π Sign up below
Launchweek 2 starts next Monday!
Aug 11β15 β a full week of feature announcements.
Register now so you don't miss out: trigger.dev/launchweek/2
Check out the changelog for more details:
trigger.dev/changelog/b...
We just added billing alerts π£
Set a spend threshold for your compute usage and we'll email you (+ your team) when you're about to go over.
Small feature, but we figured you'd want control over your spend. Nobody likes surprise bills. πΈ
Turned our 404 into a breathing exercise
β
You can probably cancel your Headspace sub now
β
Thanks Spline!
β
β¨ AI run filtering is now available for all of our users in the dashboard.
Read more about it in our latest changelog: trigger.dev/changelog/a...
π¨βπ» Instead of manually constructing complex filters, you can now describe what you're looking for in plain English. For example:
β
"Show me failed runs from last week"
β
"Show me all runs with the status 'queued' from the last 24 hours"
β "Build me a new robot girlfriend NOW"
β¨ 10x faster run filtering using natural language with our new AI-powered filtering feature:
π
π¬ Check out the full example project in our examples repo to learn how to leverage both technologies and build complex agents.
βοΈ And don't forget to star the repo as we'll be dropping more examples soon
github.com/triggerdotd...
β‘οΈ How it works: Trigger the main task with 'city' and 'activity' prompts β Weather analyst agent fetches weather data β stores in working memory β clothing advisor agent reads context β generates recommendations.
21.07.2025 15:00 β π 0 π 0 π¬ 1 π 0Sick of looking out of your window to decide what to wear for the day? Our AI clothing advisor can help:
π± Mastra handles orchestration + tool calls + persistent memory sharing
β¨ Uses the @aisdk under the hood
βοΈ Custom weather tools
βοΈ Trigger manages task execution + retries + observability
Check out all the details in the full post here:
trigger.dev/blog/how-we...
After months of optimization:
β‘ 20,000 updates per second
β‘ 500GB+ daily Postgres inserts processed
β‘ Sub-100ms latency for updates to reach browsers
β‘ Postgres + ElectricSQL scales surprisingly well
Rate limiting with Redis Lua scripts:
β Sliding window algorithm
β Track active connections per user/plan
β Lua scripts run atomically so no race conditions
β Each request expires after 5 minutes
π Auth challenge: We can't hit database on every request at this scale
π‘ Solution: Signed JWTs with permission scopes
β Token includes exactly which runs user can read
β No database query needed to verify permissions
β If JWT valid = they have permission