v1.7.0 #323
naveenraj-17
announced in
Announcements
v1.7.0
#323
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
v1.7.0 — Scale Layer: Run Any Number of Agents or Orchestrations, Concurrently
This is the biggest release since Synapse launched. v1.7.0 ships the distributed scale layer — a complete production infrastructure that lets you go from a single-user local tool to a platform handling millions of orchestration runs per month, without changing a single line of application code that calls the API.
What Changed
Standalone mode executes workflows in the same process that serves the API. One crash, everything goes down. One long pipeline, everything else waits.
Scale mode separates the concerns entirely:
run_idin under 1 msAdd more workers and throughput scales linearly. The API surface never changes.
New in This Release
Scale Infrastructure
Last-Event-IDresumeS3 Artifact Storage
file_readertool that reads from local filesystem or S3 — agents can reference S3 objects transparentlyV2 API
/api/v2/for building products on top of SynapsePOST .../run→ enqueue and getrun_idimmediately (HTTP 202)GET .../stream→ SSE event stream for real-time step-by-step updatesGET .../status→ poll-based status for mobile / webhook consumersPOST .../cancel→ distributed cancellation via Redis signal/api/v2/metricsOTLP_ENDPOINTSettings → Scale Tab
Kubernetes & Observability
infra/k8s/: API deployment, worker deployment, PgBouncer deploymentinfra/prometheus.ymlDocker Images
Three separate images are now published — pull only what you need:
All reactions