proomt

Search

Search posts, papers, and topics

Temporal

21 posts · temporal.io

  1. Automated Worker Versioning with GitHub Actions

    The post shows how to wire Temporal's Worker Controller with GitHub Actions to automatically build, version, and roll out worker images via Kubernetes. A demo repo illustrates the full CI pipeline and safe version upgrades.

    Temporaltemporal.io10 min
  2. Stop restarting your tests

    This article proposes using Temporal to orchestrate large, flaky end-to-end test suites, treating each test execution as a durable unit of work. This approach allows retrying only failed individual tests or browser configurations, significantly reducing wasted CI time from transient failures.

    Temporaltemporal.io11 min
  3. Using coding agents on a migration: Three practices that mattered

    Coding agents proved most effective for cleaning up temporary code and legacy configurations during a migration, rather than for initial code construction. This effectiveness stemmed from three specific practices: documenting cleanup needs upfront, co-locating rules with code and their enforcement, and actively managing instruction staleness.

    Temporaltemporal.io7 min
  4. How LlamaIndex uses Temporal to scale reliable document orchestration

    LlamaIndex migrated from RabbitMQ to Temporal for orchestrating complex, multi-stage document processing workflows, scaling to tens of millions of pages daily. This shift enabled them to replace ad-hoc state management and concurrency controls with Temporal's durable execution and workflow primitives, improving reliability and resource efficiency.

    Temporaltemporal.io7 min
  5. Temporal expands its Google Cloud Partnership with Gemini integration and pay-as-you-go pricing on Google Cloud Marketplace

    Temporal added a public‑preview integration with Google’s Gen AI Python SDK, letting Gemini calls survive crashes, and launched Temporal Cloud on Google Cloud Marketplace with pay‑as‑you‑go pricing and a $1,000 starter credit. The updates aim to simplify AI agent orchestration and procurement for teams already on Google Cloud.

    Temporaltemporal.io2 minrelease
  6. Durable Digest: August highlights

    Temporal’s August digest rolls out a suite of new features: Serverless Workers for AWS Lambda (public preview), Projects for organizing Cloud resources, Standalone Nexus Operations, Google GenAI and Deep Agents integrations, Activity Operations and Workflow Pause controls, poller autoscaling GA, and .NET/TypeScript Nexus SDKs. It also adds a Web UI news feed, new tutorials, validated patterns, an…

    Temporaltemporal.io5 min
  7. Everything in its place: Making agents write correct Temporal applications

    Use three Temporal‑specific resources to give LLM agents the right context and guardrails: the Temporal Developer Skill (curated instructions), the official SDK samples repos (executable recipes), and the Temporal Knowledge Base MCP (RAG‑powered, citation‑rich Q&A). Explicitly load the skill, add the sample directories, and wire the MCP so the agent can validate designs before emitting code. Keep…

    Temporaltemporal.io15 min
  8. The “cool new stuff” trap

    The author attempted to use an AI agent to convert STL files into editable CAD, but discovered that rigorous validation and objective measurement of output quality were far more effective. The project succeeded by focusing on generating and inspecting candidates against clear metrics, rather than relying on the agent's 'cleverness'.

    Temporaltemporal.io5 min
  9. Label your agent steps

    This post demonstrates how to use Temporal's `summary` fields for Activities, Timers, and Workflows to enhance observability. These labels make it significantly easier to debug and understand the execution flow of complex, especially agentic, workflows directly in the Temporal UI without needing to inspect full payloads.

    Temporaltemporal.io4 min
  10. Chaining Activities — from text to vectors

    This post details how Temporal Activities orchestrate an RAG pipeline, from text embedding to vector storage, ensuring PII compliance and idempotency. It covers using an on-premise embedding model, caching vectors in Redis, and upserting to Pinecone with robust retry mechanisms.

    Temporaltemporal.io5 min