Low-RAM ASGI HTTP server with a Zig backbone.
Project description
saltare
Low-RAM ASGI HTTP server with a Zig backbone. An alternative to uvicorn for FastAPI deployments where memory budget matters more than raw throughput.
Status: 1.2.0 — Python hot-path polish. Production target is Linux x86_64. v1.2 reduces per-request work in the dispatcher:
_HttpStateinstances are pooled across requests instead of allocated fresh (skipping the slot-allocation + GC churn), the ASGIreceiveandsendcallables are bound methods on_HttpStateinstead of per-request closures (~half the size, no per-instance compile), and the wire-format byte constants (server:line,connection: …lines,transfer-encoding: chunked, the chunked terminator, common status lines) are pre-built at module level so each response no longer rebuilds them. Net result: sequential rps jumped from 2345 to 2447 (+4.3%) and the concurrent-peak RAM dropped 0.3 MiB. Multi-worker behaviour from v1.1 is unchanged: 4 workers still cost ~51 MiB total Pss vs the naive ~150 MiB.
Why
uvicorn is fast and battle-tested, but a typical worker (Python + asyncio + FastAPI + your code) sits around 60–90 MB resident before the first request. A meaningful chunk is asyncio bookkeeping: Transport/Protocol/Task/Future objects per connection, plus Python bytes buffers.
saltare keeps these in Zig:
| Layer | uvicorn | saltare |
|---|---|---|
| Event loop | asyncio (Python) | epoll / kqueue (Zig) |
| Socket I/O | asyncio Transport | direct read/write (Zig) |
| HTTP/1.1 parser | httptools (C) |
hand-rolled (Zig) |
| Per-connection state | Python objects (~KB) | Zig structs (~hundreds B) |
| ASGI app callable | Python | Python (unchanged) |
Python only wakes up to dispatch a request to the user's ASGI app.
Architecture
PyInit__core
│
┌──────────────────────┴──────────────────────┐
│ │
[ Python ] [ Zig core ]
saltare.run(app) ─── _core.serve ───► bind / listen
saltare CLI epoll accept loop
HTTP/1.1 parser
chunked decoder
TLS via OpenSSL
WebSocket framing
timer wheel (idle
timeouts)
│
dispatch_request ◄─────┘
app(scope, receive, send) ─────────────────► send()/receive()
backed by Zig sockets
Benchmarks
Run with make bench (Docker; no Zig or Python needed on the host). The harness boots each server with the same FastAPI app, takes a /proc/<pid>/status reading at idle, drives a load with httpx, and samples VmRSS every 10 ms during the load to capture peaks.
Results on Apple Silicon (manylinux_2_28_aarch64, CPython 3.14, FastAPI 0.115+, uvicorn 0.46 plain — no [standard] extras), v1.2.0 with default settings (single worker). Production target is x86_64 — these numbers should be representative; CI runs both archs.
Sequential — 1 client, 1000 requests
| server | idle RSS | RSS after load | peak RSS | reqs ok | rps |
|---|---|---|---|---|---|
| saltare | 43.25 MiB | 43.39 MiB | 43.39 MiB | 1000 | 2447 |
| uvicorn | 44.89 MiB | 44.93 MiB | 44.93 MiB | 1000 | 2885 |
Concurrent — 100 clients × 20 requests (2000 total)
| server | idle RSS | RSS after load | peak RSS | reqs ok | rps |
|---|---|---|---|---|---|
| saltare | 41.64 MiB | 41.88 MiB | 41.89 MiB | 2000 | 3813 |
| uvicorn | 44.82 MiB | 45.29 MiB | 45.29 MiB | 2000 | 3965 |
Idle keep-alive — 500 connections held open
| server | idle RSS | RSS after load | peak RSS | reqs ok | conn rate |
|---|---|---|---|---|---|
| saltare | 42.06 MiB | 42.19 MiB | 42.19 MiB | 500 | 2204 |
| uvicorn | 44.69 MiB | 50.07 MiB | 50.07 MiB | 500 | 2778 |
Multi-worker idle — Pss across the whole cluster
| workers | observed | master Pss | Σ workers Pss | total Pss | vs naive N× single |
|---|---|---|---|---|---|
| 1 | — | 37.45 MiB | 0.00 MiB | 37.45 MiB | — |
| 4 | 4 | 14.58 MiB | 36.81 MiB | 51.38 MiB | 149.78 MiB (−66%) |
Pss (Proportional Set Size, from /proc/<pid>/smaps_rollup) accounts for shared CoW pages — summing across master + N workers gives the real physical RAM of the cluster, not the inflated Σ RSS you'd get by counting each shared page N times. The "naive N× single" column is what the cluster would cost if every worker was a fresh independent process (no CoW / no gc.freeze()); saltare sits at 34% of that — 4 workers add only ~14 MiB on top of single-worker rather than tripling the floor.
Read this honestly:
- The idle keep-alive workload is where saltare's architectural advantage shines: 500 idle connections cost saltare +0.19 MiB (~390 B/conn) vs uvicorn's +5.38 MiB (~11 KiB/conn). That's a ~28× per-connection memory saving for a realistic workload (clients that hold connections open between bursts of activity).
- The reason: saltare's
pool.zigbundles the 16 KiB read buffer and the per-request headers array into a single pool node, returned to a free list as soon as a keep-alive connection goes idle. uvicorn's asyncio Transport keeps its per-connection buffers and Protocol/Task state alive for the lifetime of the socket. - The floor dropped ~2 MiB between v0.12.0 and v0.12.1 thanks to a
malloc_trim(0)call after lifespan startup — glibc returns the fragmented heap left over from the FastAPI/Pydantic import chain to the OS in one syscall. Sequential idle went from 45.56 MiB to 43.15 MiB. - Throughput parity (concurrent): saltare 3790 rps vs uvicorn 3951 rps — within ~4%. The remaining gap is primarily
httptools(uvicorn's tuned C parser) and uvicorn's tighter asyncio integration vs the bridge-driven dispatch. - Streaming dispatch (v0.12) cost a few percent on sequential because every HTTP request now runs as a long-lived asyncio Task with a per-request
recv_queueandoutgoinglist. Sequential RPS sits at ~2316 (was 2599 pre-streaming); concurrent and idle-keepalive workloads were largely unaffected because they were already gated by other costs. The new architecture pays off as soon as response sizes go up: a streaming endpoint that emits 10 MiB across 100 chunks now keeps RSS flat instead of buffering the whole 10 MiB in Pythonbytes— a saving the bench harness above doesn't measure (its FastAPI app returns ~30 bytes). - v0.16 buffer adaptivity is also bench-invisible. Read buffers shrink from 16 KiB → 4 KiB for the typical short request, saving ~12 KiB per in-flight request — but the bench's FastAPI app receives sub-1 KiB requests, so even the v0.15 16 KiB buffer was nearly empty. Wins show up in: services with high concurrency of small requests (savings compound across hundreds in-flight) and bursty traffic with valleys (
MADV_DONTNEEDreturns long-idle committed pages to the kernel after 30 s, so RSS shrinks back toward the floor instead of staying at peak forever). - The remaining ~42 MiB floor is Python + FastAPI itself. No userland server can shrink that without changing what the user app loads. Python 3.14 raises this floor a few MiB versus 3.12 because 3.14 imports more stdlib eagerly. Setting
MALLOC_ARENA_MAX=2in the environment shaves another 5–15 MiB on multi-threaded glibc systems (see Production deployment).
Where saltare's architectural win shows up most: long-lived idle connections (the WebSocket and keep-alive workloads above), very high concurrency (10k+ open sockets), and large streamed responses (file downloads, SSE, JSON over MB).
Roadmap
- v0.1.0 — Build pipeline.
saltare._coreextension built with Zig viascikit-build-core. Listening socket + accept loop in Zig. Single fixed HTTP response. Local Docker build + cibuildwheel CI. - v0.2.0 — HTTP/1.1 request parser in Zig (request line, headers,
Content-Lengthframing). Server echoes method + target back so the parser is observable end-to-end. Zero allocations per request. - v0.3.0 — ASGI dispatcher. Persistent
asyncioloop reused across requests; per-requestloop.run_until_complete. Zig calls into Python via the C API only at dispatch time. FastAPI runs end-to-end (path params, JSON bodies, 404). No lifespan, no keep-alive, no streaming yet. - v0.4.0 — Non-blocking event loop (epoll on Linux). Per-connection state machine in Zig with heap-allocated structs. Multiple connections progress in parallel; ASGI dispatch is the GIL serialization point. macOS (kqueue) raises
@compileErroruntil v0.4.x. - v0.5.0 — HTTP/1.1 keep-alive. Persistent connections reset their state machine in place (read buffer compacted, write buffer freed, epoll switched back to read interest). Pipelined requests handled inline without an extra epoll round-trip.
- v0.6.0 — Pooled read buffers. Idle keep-alive connections release their 16 KiB read buffer back to a shared pool; the next read event re-acquires one. RSS now scales with in-flight requests, not with open connections. Result: ~5× less per-connection memory than uvicorn at idle.
- v0.7.0 — ASGI lifespan protocol. The dispatcher creates a long-lived asyncio Task that drives the app through
lifespan.startupbefore the I/O loop accepts connections, and throughlifespan.shutdownafter it stops. Apps usingFastAPI(lifespan=...)now get their startup/shutdown hooks executed. Apps that raise on lifespan scope (no support) are tolerated. - v0.8.0 — Chunked Transfer-Encoding for request bodies. Decoder runs in place over the read buffer; resumable across kernel reads. Streaming response bodies (true chunked output) still buffer in Python and emit Content-Length — that lands when the dispatcher gets a callback path back into Zig.
- v0.9.0 — TLS termination via OpenSSL. Pass
ssl_certfile=andssl_keyfile=tosaltare.run()to serve HTTPS. The connection state machine gains ahandshakingphase;doRead/doWriteroute through SSL_read/SSL_write and translate WANT_READ/WANT_WRITE into epoll interest changes. SSL_pending drained between keep-alive cycles.auditwheelbundles libssl/libcrypto into the wheel — self-contained, no host OpenSSL dependency. Single-cert/single-key, server-only (no mTLS, no SNI, no ALPN). - v0.10.0 — WebSockets. RFC 6455 handshake, single-frame text/binary messages, ping auto-pong, close echo. Frames unmasked in place over the existing 16 KiB read buffer; outbound frames concatenated onto the same
write_bufthat HTTP responses use. Out of scope: continuation frames, message-level fragmentation, per-message deflate. - v0.11.0 — Per-connection idle timeouts via a hashed timer wheel (
src/zig/timer.zig). Four configurable deadlines (header_timeout,keep_alive_timeout,body_timeout,write_timeout) with defaults of 5/5/30/30 seconds. Slowloris and slow-body attacks are now reaped instead of holdingConnectionstructs indefinitely. Wheel uses 128 buckets of 1 second; nodes are intrusive inConnection(24 B / conn) so arming and cancelling are allocation-free O(1). WS connections are exempt — long-lived idle sockets are expected there; ping/pong-driven WS keepalive lands post-v0.11. - v0.12.0 — Streaming response bodies. Each HTTP request runs as a long-lived asyncio Task with its own
recv_queueandoutgoinglist; the app'ssend({type: "http.response.body", more_body: True/False})calls flow chunk-by-chunk through the bridge into Zig'swrite_bufinstead of being buffered into a single Pythonbytes. When the app does not declare a Content-Length, saltare addsTransfer-Encoding: chunkedautomatically. Concurrency uses a global "stalled list" of connections whose Task is parked on framework-internal awaits (e.g. FastAPI middleware chains): the main loop runs one global asyncio pump per iteration to advance every parked Task in lockstep, then drains each one — no per-connection multi-pumping, no level-triggered EPOLLOUT spin. Request bodies are still capped to the 16 KiB read buffer (request-side streaming lands in v0.12.x). - v0.12.1 — Per-connection RAM polish. The
[64]Headerarray previously inlined intoConnection(~2 KiB) is now bundled into the samepool.zigBufferthat holds the read data, so it's released atomically when the connection goes idle: idle keep-alive cost drops from ~2 KiB to ~390 B per connection, taking the per-conn advantage over uvicorn from ~5× to ~28×. Amalloc_trim(0)call afterlifespan.startupreturns ~2 MiB of glibc heap fragmentation (left over from FastAPI/Pydantic imports) to the OS — the sequential-idle floor dropped from 45.56 MiB to 43.15 MiB. README gains a "Production deployment" section recommendingMALLOC_ARENA_MAX=2for another 5–15 MiB. - v0.13.0 — Resource caps +
Expect: 100-continue. NewLimitsstruct (max_request_body,max_concurrent_connections,max_keepalive_requests) wired intoserve()and the CLI. Body cap fires 413 on declaredContent-Lengthoverflow and on incremental chunked-decode growth. Connection cap accepts overflow sockets (to drain the listen backlog) and immediately closes them. Keepalive-requests cap forcesConnection: closeon the Nth response, recycling pymalloc arenas.Expect: 100-continuewrites the interim response before reading the body, except when the declared body would exceed the cap (in which case the client gets a 413 directly). Caps add zero RAM cost in benign workloads; under adversarial load they convert the architectural advantage into a hard guarantee. - v0.14.0 — Graceful shutdown + ASGI exception isolation. New
g_drainingatomic flag; the SIGTERM/SIGINT handler sets it (and a second signal promotes to immediate force-exit). Main loop, on first observing drain mode, removes the listen fd from epoll (stops accepting), stamps a deadline, and continues processing in-flight requests — exit happens wheng_active_connsreaches zero orshutdown_timeout(default 30 s) elapses. Idle keep-alive connections drain naturally viakeep_alive_timeout. After the loop exits,lifespan.shutdownruns as before, then the process exits 0. App exceptions during dispatch are caught at the bridge: pre-headers raises produce a synthesized 500, mid-stream raises close the connection — server keeps serving subsequent requests. Tests now 44/44 (5 new intest_shutdown.py, 3 of which exercise real SIGTERM viasubprocess). - v0.15.0 — Observability + UDS.
Observabilitystruct (metrics_path,access_log,proxy_headers) all opt-in.metrics_path(e.g./metrics) intercepts requests in Zig and serves Prometheus text from atomic counters (saltare_open_connections,saltare_in_flight_requests,saltare_requests_total,saltare_responses_4xx_total/_5xx_total,saltare_bytes_sent_total/_received_total,saltare_process_resident_memory_bytesfrom/proc/self/statuson Linux).access_logemits a JSON line per completed request to stderr from a 4 KiB stack-buffered writer (status line parsed once from the wire bytes; bytes/latency tracked inConnection); a singlewrite(2)keeps lines atomic.proxy_headerslets the dispatcher readX-Forwarded-For(leftmost IP intoscope["client"]) andX-Forwarded-Proto(intoscope["scheme"]); only enable behind a trusted proxy.uds_pathmakesserve()bind anAF_UNIXsocket instead of TCP — the bind path is unlinked on shutdown so restarts don't fail withEADDRINUSE. All four off by default; bench numbers indistinguishable from v0.14. Tests now 50/50 (6 new intest_observability.py). - v0.16.0 — Adaptive read buffer +
MADV_DONTNEED. The single 16 KiB pool from v0.6–v0.15 splits into two free lists: a 4 KiB primary covering the typical short request, and a 16 KiB overflow used either as the initial buffer for big payloads or as the upgrade target when a partial parse fills the small one (in-flight bytes are memcpy'd across;parsed.headersis invalidated and re-parsed because it pointed into the small buffer's headers array).Buffer.databecomes a[]u8slice (page-allocated via mmap so the OS can later reclaim its pages);Buffer.released_at_nsrecords when a buffer entered the free list. Each main-loop iteration callspool.sweepIdle(monoNs()), which walks both free lists and issuesMADV_DONTNEEDfor any block idle >30 s — page-aligned mmaps mean the kernel actually drops the physical pages. Linux only; macOS short-circuits the sweep. Bench numbers are within noise of v0.15 (the FastAPI bench app sends sub-1 KiB requests, so even the v0.15 16 KiB buffer was nearly empty); the wins manifest in real-world bursty traffic and high-concurrency-low-payload services.Headeroffset compression deferred — too much API churn for the marginal saving. - v0.17.0 — Stability + Python RAM polish. Replaced the per-request
asyncio.Queuein_HttpStatewith a single-slot mailbox + on-demandFuture: the typical request that doesawait receive()once never allocates a Queue object, an internal deque, or a getters list. Saves ~300 B of GC churn per request, lower transient peak under concurrency, and conceptually simpler dispatcher (fewer asyncio internals to reason about). Also fixed thetest_fastapi_lifespan_startup_runsflake by adding a small retry around the first httpx call — the race was FastAPI's first-dispatch warm-up trip, not saltare itself, and 2 retries make it deterministic in CI. The pre-alpha status note now states explicitly that production is x86_64 Linux — macOS dev-builds still work for everything except the actual server (kqueue still@compileError). - v0.18.0 — WebSocket keepalive + Python RAM polish. Server now sends an empty
pingframe everyws_keepalive_timeoutseconds (default 20) on each open WS; if no inbound frame (incl. pong) is observed in 2× that window, the connection is reaped. Implemented by reusing the existing timer wheel: WS upgrade arms it, every inbound frame updateslast_activity_ns, andfireExpired's WS branch is now ping-or-teardown rather than just teardown. Plus two Python-side wins: (1) header names are lowercased in Zig in-place insidebuildHeadersListso_dispatcher.pydrops the per-request.lower()list-comprehension and the per-header tuple rebuild it forced; (2) a 16-entry PyBytes cache for common header names (host, user-agent, content-type, etc) avoidsPyBytes_FromStringAndSizeon every cached header. Net: first run where saltare's concurrent rps (4006) edges past uvicorn's (3988), and ~0.2 MiB shaved across all three bench workloads. - v1.0.0 — Pre-fork multi-worker. New
src/zig/master.zigmodule supervises N forked workers viapause()+waitpid(). Master flow: bind+listen via the existingbindAndListen; fork N children that each run the v0.18 single-worker flow (lifespan startup → accept loop on the inherited fd → lifespan shutdown →_exit); supervise. Children callprctl(PR_SET_PDEATHSIG, SIGTERM)so an SIGKILL'd master doesn't leave orphan workers. v1.0 policy on worker death: propagate shutdown to the rest, return — let the supervisor restart the pod. Each worker keeps its own counters;metrics_pathreports per-worker (aggregate across workers in your scraper). Newworkerskwarg onsaltare.run()and--workers NCLI flag (default 1, single-worker behaviour unchanged). Tests intests/test_multiworker.pyuse subprocess +/proc/<master>/task/.../childrento verify worker spawn, request serving, SIGTERM drain, and unexpected-worker-death propagation. - v1.1.0 — Multi-worker RAM polish.
gc.freeze()is called once in the master right before the fork loop (and once per single-worker dispatch path, after lifespan startup) so CPython's cyclic-GC bookkeeping doesn't dirty CoW pages on each worker's first sweep — verified: 4 workers cost 51 MiB Pss instead of the naive 150 MiB (~66% saved).http.max_headerslowered from 64 to 32 (typical request has <20; 31 KiB → 1 KiB per active pool buffer worth of[Header]Nstorage). StaticasgiASGI sub-dict cached as a module-level constant, shared across all requests instead of re-allocated. Bench harness gains amulti-worker idleworkload that reports Pss across master + workers, with a "naive N× single" comparison column. - v1.2.0 — Python hot-path polish. Three orthogonal cuts to per-request work in
_dispatcher.py: (1) module-level free-list pool of_HttpStateinstances with areset(...)method that rewrites every slot — saves the slot-allocation step + GC-tracking overhead per request and reuses theoutgoinglist. (2)receiveandsendcallables converted from per-request closures to bound methods (_HttpState._receive,_HttpState._send) — half the per-instance memory of a closure cell, no per-instance compile, plays well with the pool. (3) Pre-built byte-string constants for the wire format:_SERVER_LINE,_CONNECTION_KEEPALIVE_LINE,_CONNECTION_CLOSE_LINE,_TRANSFER_ENCODING_CHUNKED_LINE,_CHUNKED_TERMINATOR,_CRLF, plus a precomputed status-line cache for every reason code in_REASONS. Each response now references shared bytes instead of rebuildingb"server: " + _SERVER_HEADER + b"\r\n"etc. Net: sequential rps 2335 → 2447 (+4.3%), concurrent peak −0.3 MiB. Multi-worker numbers unchanged from v1.1 (these wins are per-request, multi-worker is per-process).
Install (once published)
pip install saltare
Usage
# main.py
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def root():
return {"hello": "world"}
saltare main:app --host 0.0.0.0 --port 8000
For HTTPS, pass a certificate and private key (PEM, both required together):
import saltare
from main import app
saltare.run(app, host="0.0.0.0", port=443,
ssl_certfile="/etc/letsencrypt/live/example.com/fullchain.pem",
ssl_keyfile="/etc/letsencrypt/live/example.com/privkey.pem")
Both per-request HTTP dispatch and ASGI lifespan startup/shutdown are wired up: FastAPI(lifespan=...) and the older @app.on_event("startup") work as expected.
Streaming responses
Apps can emit response bodies in chunks via the standard ASGI more_body flag — saltare flushes each chunk to the wire as soon as the app produces it instead of buffering the full response in Python:
async def streaming_endpoint(scope, receive, send):
await receive()
await send({"type": "http.response.start", "status": 200,
"headers": [(b"content-type", b"text/plain")]})
for chunk in produce_chunks(): # arbitrary length, no upfront size needed
await send({"type": "http.response.body", "body": chunk, "more_body": True})
await send({"type": "http.response.body", "body": b"", "more_body": False})
When the app does not declare a Content-Length, saltare adds Transfer-Encoding: chunked automatically. Apps that do declare a Content-Length get raw bytes streamed (no chunked framing). FastAPI's StreamingResponse and Starlette's SSE helpers both work without changes.
Idle timeouts
Every connection is bounded by four deadlines, all configurable in seconds:
saltare.run(
app,
header_timeout=5, # accept → headers parsed
keep_alive_timeout=5, # between requests on a kept-alive conn
body_timeout=30, # headers parsed → body fully received
write_timeout=30, # max time held in the writing state
)
The same flags are exposed on the CLI (--header-timeout, --keep-alive-timeout, --body-timeout, --write-timeout). Defaults match the values above. WebSocket connections are exempt — long-lived idle WS sockets are expected, and ping/pong-driven keepalive lands post-v0.11.
Resource caps
saltare.run(
app,
max_concurrent_connections=1024, # accepted sockets held open at once
max_keepalive_requests=1000, # requests per keep-alive conn before close
max_request_body=1024 * 1024, # bytes; oversize gets 413
)
CLI flags: --max-concurrent-connections, --max-keepalive-requests, --max-request-body. Defaults match the values above. Expect: 100-continue is honoured automatically (the interim response is written before the body is read, except when the declared Content-Length already exceeds max_request_body — in which case the client gets a 413 directly). In v0.13 the read buffer (16 KiB) is the practical hard ceiling for max_request_body; request-body streaming for larger bodies lands in a follow-up.
Observability and deployment knobs (v0.15)
saltare.run(
app,
metrics_path="/metrics", # Prometheus text from Zig counters; no Python overhead per scrape
access_log=True, # JSON line to stderr per completed request
proxy_headers=True, # parse X-Forwarded-For / X-Forwarded-Proto
uds_path="/run/saltare.sock", # bind a Unix socket instead of host:port
)
CLI: --metrics-path PATH, --access-log, --proxy-headers, --uds PATH. All off by default — the bench numbers above are taken with all four disabled, so turning any of them on costs only what that feature costs (e.g. access_log=True adds one clock_gettime + one write(2) per request).
Metrics endpoint exposes:
saltare_open_connections gauge – active TCP/UDS sockets
saltare_in_flight_requests gauge – HTTP requests being dispatched right now
saltare_requests_total counter – HTTP requests dispatched since startup
saltare_responses_4xx_total counter
saltare_responses_5xx_total counter
saltare_bytes_sent_total counter
saltare_bytes_received_total counter
saltare_process_resident_memory_bytes gauge – RSS from /proc/self/status (Linux)
The metrics_path request is answered entirely from Zig — your ASGI app never sees it.
Access log format (one JSON line per completed request, to stderr):
{"method":"GET","path":"/users/42","status":200,"bytes":318,"latency_us":1234,"user_agent":"curl/8.0"}
Stack-buffered, JSON-escaped, single write(2) per line so concurrent workers don't interleave.
Proxy headers: X-Forwarded-For (leftmost address → scope["client"]) and X-Forwarded-Proto (http/https → scope["scheme"]). Only enable behind a proxy that strips client-supplied X-Forwarded-* headers, otherwise clients can spoof their identity.
Production deployment
Workers and CPU
workers=1 (the default) is one process serving all traffic. For multi-core machines, set workers to roughly min(cpu_count, 4) as a starting point. Pre-fork CoW + gc.freeze() mean each additional worker costs only ~5 MiB of physical RAM on top of the single-worker baseline — measured at 4 workers = 51 MiB Pss, vs ~150 MiB if every worker were independent (see Benchmarks).
saltare main:app --host 0.0.0.0 --port 8000 --workers 4
The master process binds + listens once and forks the workers; the kernel load-balances accept() across them. A worker exiting unexpectedly causes the master to propagate shutdown to the rest and exit — your pod supervisor then restarts the whole thing. v1.0 deliberately doesn't respawn within the master; that's the supervisor's job.
Environment
# Bound glibc's per-thread malloc arenas. saltare runs single-threaded per
# worker; default arenas (~8 × n_cpus on 64-bit) inflate RSS gratuitously.
# Typical saving: 5–15 MiB per worker.
export MALLOC_ARENA_MAX=2
# Conservative fd limit if you're not behind a reverse proxy that already
# rate-limits accept().
ulimit -n 65535
systemd
[Service]
Environment="MALLOC_ARENA_MAX=2"
LimitNOFILE=65535
ExecStart=/usr/bin/saltare main:app \
--host 0.0.0.0 --port 8000 \
--workers 4 \
--metrics-path /metrics --access-log
KillSignal=SIGTERM
TimeoutStopSec=35
Restart=on-failure
TimeoutStopSec should be a couple of seconds higher than --shutdown-timeout (default 30 s) so systemd doesn't escalate to SIGKILL while saltare is still draining.
Kubernetes
apiVersion: apps/v1
kind: Deployment
spec:
template:
spec:
terminationGracePeriodSeconds: 35
containers:
- name: api
image: your-image
env:
- name: MALLOC_ARENA_MAX
value: "2"
args:
- "--workers=4"
- "--metrics-path=/metrics"
- "--access-log"
- "--proxy-headers"
ports:
- containerPort: 8000
readinessProbe:
httpGet:
path: /healthz # your app's endpoint
port: 8000
# Prometheus pulls /metrics from each pod individually. With
# --workers > 1 each scrape may land on a different worker, so
# configure Prometheus to sum across pods and treat per-pod
# counters as samples.
saltare honours SIGTERM with a graceful drain (--shutdown-timeout, default 30 s): in-flight requests get to finish, lifespan.shutdown runs, then the process exits 0.
Behind nginx (Unix domain socket)
saltare main:app --uds /run/saltare.sock --workers 4
upstream saltare {
server unix:/run/saltare.sock;
}
server {
location / {
proxy_pass http://saltare;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
Pair with --proxy-headers so saltare reads X-Forwarded-For / X-Forwarded-Proto into scope["client"] / scope["scheme"] instead of seeing nginx as the client.
What saltare does for you automatically
malloc_trim(0)afterlifespan.startupreturns 1–3 MiB of glibc heap fragmentation (FastAPI/Pydantic imports) to the OS.- Idle pool buffers older than 30 s get
MADV_DONTNEEDso RSS recovers after traffic peaks. - App exceptions during dispatch are caught: pre-
response.startraises become a 500; mid-stream raises close the connection. Workers keep serving. - WebSocket connections get server-side ping/pong every 20 s (configurable); silent dead WS sockets are reaped at 2× that window.
Building from source
Local development with Zig
Easiest dev loop. saltare's build pipeline (scikit-build-core → CMake → Zig) needs three things on your machine:
- Zig 0.16+
- Python development headers (
Python.h) - OpenSSL development headers (
<openssl/ssl.h>, used by src/zig/tls.zig)
Linux (x86_64 or aarch64)
# Debian/Ubuntu
sudo apt install python3-dev libssl-dev cmake build-essential
# Fedora/RHEL/Rocky
sudo dnf install python3-devel openssl-devel cmake gcc
# Zig: pinned 0.16.0 tarball, both archs handled
bash scripts/install-zig.sh
macOS
brew install zig openssl@3
# Python headers come with Homebrew Python or python.org installers.
Then:
uv sync # or: pip install -e ".[dev]"
pip install -e . # builds the extension in place
pytest -q
If pip install -e . errors with zig was not found on PATH, your Zig install didn't end up in PATH — bash scripts/install-zig.sh symlinks /usr/local/bin/zig for you. If it errors with openssl/ssl.h: No such file or directory, the OpenSSL dev headers are missing (see the OS commands above). Both errors apply equally on x86_64 and aarch64; the Docker pipeline (make build) sidesteps them entirely by running everything inside the manylinux container.
Docker (no Zig on host)
If you don't want Zig on the host (CI-style builds):
./scripts/build-wheel.sh
# -> dist/saltare-0.1.0-cp312-cp312-manylinux_2_28_x86_64.whl
This invokes Dockerfile, which:
- Pulls
quay.io/pypa/manylinux_2_28_x86_64. - Downloads pinned Zig (
scripts/install-zig.sh). - Builds the wheel and runs
auditwheel repair. - Exports
dist/*.whlto the host.
Override target via env: PYTHON_TAG=cp310-cp310 MANYLINUX_TAG=manylinux_2_28_aarch64 ./scripts/build-wheel.sh.
Releasing
Tag a version and push:
git tag v0.1.0 && git push origin v0.1.0
.github/workflows/release.yml runs cibuildwheel on Linux (x86_64 + aarch64) and macOS (x86_64 + arm64), builds the sdist, and publishes to PyPI via Trusted Publishing.
Project layout
.
├── build.zig # Zig build script (produces _core extension)
├── build.zig.zon # Zig package manifest
├── CMakeLists.txt # scikit-build-core invokes Zig from here
├── pyproject.toml # build backend + cibuildwheel config
├── Dockerfile # local manylinux+Zig build
├── scripts/
│ ├── install-zig.sh # pin & install Zig (used by Docker + CI)
│ └── build-wheel.sh # one-liner local Docker build
├── src/
│ ├── zig/
│ │ ├── module.zig # Python C-API surface (PyInit__core)
│ │ ├── server.zig # epoll accept loop + per-connection state machine
│ │ ├── eventloop.zig # epoll wrapper (Linux; kqueue TBD)
│ │ ├── http.zig # zero-alloc HTTP/1.1 parser + chunked decoder
│ │ ├── pool.zig # 16 KiB read-buffer free-list
│ │ ├── timer.zig # hashed timer wheel for idle timeouts
│ │ ├── tls.zig # OpenSSL wrapper (handshake, read/write, pending)
│ │ ├── ws.zig # WebSocket framing (RFC 6455)
│ │ └── bridge.zig # GIL-aware Python <-> Zig request dispatch
│ └── saltare/
│ ├── __init__.py # public Python API: run(), __version__
│ ├── cli.py # `saltare app:app --host ... --port ...`
│ ├── _dispatcher.py # asyncio loop + ASGI scope build / lifespan / WS
│ ├── __main__.py
│ └── _core.pyi # type stubs for the native module
├── benchmarks/ # `make bench` harness comparing saltare vs uvicorn
├── tests/ # pytest suite (HTTP, keepalive, chunked, lifespan,
│ # TLS, WebSocket, timeouts)
└── .github/workflows/
└── release.yml # cibuildwheel + PyPI publish on tag
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file saltare-1.2.0.tar.gz.
File metadata
- Download URL: saltare-1.2.0.tar.gz
- Upload date:
- Size: 118.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
35318e83f5516336822b02af9f8c7a276fd5ba220cef080bee8a1e6584ce07ee
|
|
| MD5 |
840dc8892b65916b6c5f225adb52bb8b
|
|
| BLAKE2b-256 |
558fcca7a2748f97b3c9808ed588b64dafff9535215017ab12c1320255fd6865
|
Provenance
The following attestation bundles were made for saltare-1.2.0.tar.gz:
Publisher:
release.yml on rroblf01/saltare
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
saltare-1.2.0.tar.gz -
Subject digest:
35318e83f5516336822b02af9f8c7a276fd5ba220cef080bee8a1e6584ce07ee - Sigstore transparency entry: 1449950890
- Sigstore integration time:
-
Permalink:
rroblf01/saltare@d6045b03c15771a6ceaade21c31d2fed5c19894b -
Branch / Tag:
refs/tags/v1.2.0 - Owner: https://github.com/rroblf01
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d6045b03c15771a6ceaade21c31d2fed5c19894b -
Trigger Event:
push
-
Statement type:
File details
Details for the file saltare-1.2.0-cp313-cp313-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: saltare-1.2.0-cp313-cp313-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0acc3d7f647bc1a0bca29157c94c64023d90ba60bd5d3e2b715e7a8545711b6f
|
|
| MD5 |
a36065df42dcf7cb3d753250cddb4397
|
|
| BLAKE2b-256 |
e7cf481e269d2a5ca0dc516060a63b1cc1d8cc2af063754077e74c54a2de0c9e
|
Provenance
The following attestation bundles were made for saltare-1.2.0-cp313-cp313-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on rroblf01/saltare
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
saltare-1.2.0-cp313-cp313-manylinux_2_28_x86_64.whl -
Subject digest:
0acc3d7f647bc1a0bca29157c94c64023d90ba60bd5d3e2b715e7a8545711b6f - Sigstore transparency entry: 1449954350
- Sigstore integration time:
-
Permalink:
rroblf01/saltare@d6045b03c15771a6ceaade21c31d2fed5c19894b -
Branch / Tag:
refs/tags/v1.2.0 - Owner: https://github.com/rroblf01
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d6045b03c15771a6ceaade21c31d2fed5c19894b -
Trigger Event:
push
-
Statement type:
File details
Details for the file saltare-1.2.0-cp313-cp313-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: saltare-1.2.0-cp313-cp313-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
354abac8f9e8fb8a2db1218164ab299f74ad00f15c334e4411e0a77f605625e3
|
|
| MD5 |
1ecf3999d586cba7691c6a345c525243
|
|
| BLAKE2b-256 |
4f941323b642d8b5b78c7698a439df83d30ca499f496e254de4af67307eedf5b
|
Provenance
The following attestation bundles were made for saltare-1.2.0-cp313-cp313-manylinux_2_28_aarch64.whl:
Publisher:
release.yml on rroblf01/saltare
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
saltare-1.2.0-cp313-cp313-manylinux_2_28_aarch64.whl -
Subject digest:
354abac8f9e8fb8a2db1218164ab299f74ad00f15c334e4411e0a77f605625e3 - Sigstore transparency entry: 1449953342
- Sigstore integration time:
-
Permalink:
rroblf01/saltare@d6045b03c15771a6ceaade21c31d2fed5c19894b -
Branch / Tag:
refs/tags/v1.2.0 - Owner: https://github.com/rroblf01
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d6045b03c15771a6ceaade21c31d2fed5c19894b -
Trigger Event:
push
-
Statement type:
File details
Details for the file saltare-1.2.0-cp312-cp312-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: saltare-1.2.0-cp312-cp312-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b130fe0df92fc04810fd7b083c8bf683fd88a76aac9a92164d21cafffb1424a
|
|
| MD5 |
e6eb14c8624904ae74cf3db172e9d4ca
|
|
| BLAKE2b-256 |
b4486d85ba489a4f7bfd4c2e1d9b94aed231d908b16b1b18c25bcb50cbf734e8
|
Provenance
The following attestation bundles were made for saltare-1.2.0-cp312-cp312-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on rroblf01/saltare
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
saltare-1.2.0-cp312-cp312-manylinux_2_28_x86_64.whl -
Subject digest:
5b130fe0df92fc04810fd7b083c8bf683fd88a76aac9a92164d21cafffb1424a - Sigstore transparency entry: 1449952043
- Sigstore integration time:
-
Permalink:
rroblf01/saltare@d6045b03c15771a6ceaade21c31d2fed5c19894b -
Branch / Tag:
refs/tags/v1.2.0 - Owner: https://github.com/rroblf01
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d6045b03c15771a6ceaade21c31d2fed5c19894b -
Trigger Event:
push
-
Statement type:
File details
Details for the file saltare-1.2.0-cp312-cp312-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: saltare-1.2.0-cp312-cp312-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fdffd64d63e0ddeef370d8cb5b26fbd9d239c809cb815f9bf4f37c02812e3c78
|
|
| MD5 |
294048a7a9b2e0af2b0c5f990ec666a1
|
|
| BLAKE2b-256 |
8256b92931bb31fc8693fa6b59cd2d3521dbe041c0137a26a36def50126eb81d
|
Provenance
The following attestation bundles were made for saltare-1.2.0-cp312-cp312-manylinux_2_28_aarch64.whl:
Publisher:
release.yml on rroblf01/saltare
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
saltare-1.2.0-cp312-cp312-manylinux_2_28_aarch64.whl -
Subject digest:
fdffd64d63e0ddeef370d8cb5b26fbd9d239c809cb815f9bf4f37c02812e3c78 - Sigstore transparency entry: 1449954379
- Sigstore integration time:
-
Permalink:
rroblf01/saltare@d6045b03c15771a6ceaade21c31d2fed5c19894b -
Branch / Tag:
refs/tags/v1.2.0 - Owner: https://github.com/rroblf01
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d6045b03c15771a6ceaade21c31d2fed5c19894b -
Trigger Event:
push
-
Statement type:
File details
Details for the file saltare-1.2.0-cp311-cp311-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: saltare-1.2.0-cp311-cp311-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d7b60a28b7b7bc648f299848c76d4b68cc987bf788184ba35a10d410006c1379
|
|
| MD5 |
7c8dad736e371f6b4a6a1db29c192754
|
|
| BLAKE2b-256 |
0b8fb3fd2ae1c2b76fcdc644148addcf128d580d2eefab131a01f472cc338693
|
Provenance
The following attestation bundles were made for saltare-1.2.0-cp311-cp311-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on rroblf01/saltare
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
saltare-1.2.0-cp311-cp311-manylinux_2_28_x86_64.whl -
Subject digest:
d7b60a28b7b7bc648f299848c76d4b68cc987bf788184ba35a10d410006c1379 - Sigstore transparency entry: 1449954293
- Sigstore integration time:
-
Permalink:
rroblf01/saltare@d6045b03c15771a6ceaade21c31d2fed5c19894b -
Branch / Tag:
refs/tags/v1.2.0 - Owner: https://github.com/rroblf01
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d6045b03c15771a6ceaade21c31d2fed5c19894b -
Trigger Event:
push
-
Statement type:
File details
Details for the file saltare-1.2.0-cp311-cp311-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: saltare-1.2.0-cp311-cp311-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f9b880edc7e20626939840239839113438817713607c846105a11c69cfe25d5
|
|
| MD5 |
815594cd70e488c37f0635d39ef184f3
|
|
| BLAKE2b-256 |
04802b8bdf35a978bc7063c4e71bffd6b53b4d8d0dd332584daababb817f580a
|
Provenance
The following attestation bundles were made for saltare-1.2.0-cp311-cp311-manylinux_2_28_aarch64.whl:
Publisher:
release.yml on rroblf01/saltare
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
saltare-1.2.0-cp311-cp311-manylinux_2_28_aarch64.whl -
Subject digest:
0f9b880edc7e20626939840239839113438817713607c846105a11c69cfe25d5 - Sigstore transparency entry: 1449953485
- Sigstore integration time:
-
Permalink:
rroblf01/saltare@d6045b03c15771a6ceaade21c31d2fed5c19894b -
Branch / Tag:
refs/tags/v1.2.0 - Owner: https://github.com/rroblf01
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d6045b03c15771a6ceaade21c31d2fed5c19894b -
Trigger Event:
push
-
Statement type:
File details
Details for the file saltare-1.2.0-cp310-cp310-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: saltare-1.2.0-cp310-cp310-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d337dbd07e09b8742e5926d8a15aed43be2df1a7c32ff809c0d5da42b557d2c
|
|
| MD5 |
bbd87689f22a33c8980729c67baae365
|
|
| BLAKE2b-256 |
bc11909f7cf3c8c43dd2be117d424980dd2abb522ebda4df877710f1e8b23658
|
Provenance
The following attestation bundles were made for saltare-1.2.0-cp310-cp310-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on rroblf01/saltare
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
saltare-1.2.0-cp310-cp310-manylinux_2_28_x86_64.whl -
Subject digest:
6d337dbd07e09b8742e5926d8a15aed43be2df1a7c32ff809c0d5da42b557d2c - Sigstore transparency entry: 1449952154
- Sigstore integration time:
-
Permalink:
rroblf01/saltare@d6045b03c15771a6ceaade21c31d2fed5c19894b -
Branch / Tag:
refs/tags/v1.2.0 - Owner: https://github.com/rroblf01
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d6045b03c15771a6ceaade21c31d2fed5c19894b -
Trigger Event:
push
-
Statement type:
File details
Details for the file saltare-1.2.0-cp310-cp310-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: saltare-1.2.0-cp310-cp310-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7ac6b52ccc4bb05704ec15781c5ddbbe8cbc2cf1d98fd1c655ae7015d5a4a87
|
|
| MD5 |
d4f5f2a555198ad41e918b8b418c3292
|
|
| BLAKE2b-256 |
51d037f946f3ee09f13d462dd5428feac18bdf478d580a31d71e3ac524aa5e04
|
Provenance
The following attestation bundles were made for saltare-1.2.0-cp310-cp310-manylinux_2_28_aarch64.whl:
Publisher:
release.yml on rroblf01/saltare
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
saltare-1.2.0-cp310-cp310-manylinux_2_28_aarch64.whl -
Subject digest:
e7ac6b52ccc4bb05704ec15781c5ddbbe8cbc2cf1d98fd1c655ae7015d5a4a87 - Sigstore transparency entry: 1449952325
- Sigstore integration time:
-
Permalink:
rroblf01/saltare@d6045b03c15771a6ceaade21c31d2fed5c19894b -
Branch / Tag:
refs/tags/v1.2.0 - Owner: https://github.com/rroblf01
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d6045b03c15771a6ceaade21c31d2fed5c19894b -
Trigger Event:
push
-
Statement type: