Architecture · One stack

Fewer vendors,
one substrate.

Most of the boxes you bolt onto a Laravel app — a cache, a queue, a search cluster, a metrics vendor, an object store — are features of a data layer and a runtime, not separate products. Elyra composes them out of the SQL engine and the server you already run.

This page is deliberately honest: each capability is marked Shipping, Partly shipping or Roadmap.

Replaces Elasticsearch · Meilisearch · vector DBs

Search is a chapter, not a product

SQL Server · SQL Anywhere
Shipping
Ships today

Full-text (MATCH … AGAINST with a persistent inverted index), faceted search (FACET), and vector search (VECTOR type + similarity) are the same engine that already stores your rows. SQL Anywhere unifies FTS5 + faceted + vector + hybrid in the embedded variant.

Replaces Redis · Horizon

Cache, queue & pub/sub

SQL Anywhere (substrate) · Askr (runtime)
Shipping
Ships today

The queue, cache and pub/sub contracts are conformance-tested (CI-verified) in SQL Anywhere, and Askr ships durable L2 backends for all three over SQL Anywhere (--features sql-backend + ASKR_*_DB) — durable, replicated, at-least-once — with L1→L2 write-through, backlog autoscaling on the L2 queue, and a Laravel broadcasting driver. This completes the Redis-free Laravel surface: session + cache + queue + broadcasting, behind the unchanged askr_* / Laravel APIs.

Still to build

The durable tier is opt-in behind a build flag; making it a default and publishing head-to-head Redis-vs-SQL-Anywhere benchmarks is the remaining polish.

Replaces Datadog · Grafana · ClickHouse

Observability on your own stack

SQL Server (store) · Askr / Framework (emit) · Conductor (view)
Partly shipping
Ships today

SQL Server ships real OLAP (columnar scans, zone-maps, benchmarked) — the right home for metrics and logs. Askr already emits metrics (/api/metrics, askr_queue_* gauges).

Still to build

Askr's OpenTelemetry/Prometheus export is still planned, Framework doesn't emit telemetry yet, and storing it in SQL Server with a Conductor viewer is the dogfooding step not yet taken.

Replaces Forge · Envoyer

Deploy is provisioning, pointed remote

Grove (core) · Conductor (cockpit)
Roadmap
Ships today

Grove already provisions a whole environment — PHP, Node, database, TLS — from one binary. Deploy is that same job aimed at a remote host in production mode.

Still to build

Remote/production deploy, release history and rollback don't exist yet; Conductor has no deploy cockpit. (And the glue CLI is grove deploy — not rata, which is the desktop Framework CLI.)

Replaces S3 · MinIO

Object storage, same substrate

SQL Anywhere (substrate) · Askr (S3 face)
Roadmap
Ships today

SQL Anywhere already replicates and streams to S3-backed bottomless storage, and Askr is the HTTP server — the reusable foundations are there.

Still to build

No chunk/blob store and no S3-compatible API exist yet. A chunk-store + metadata could live on SQL Anywhere (inheriting replication) with Askr serving the S3 face — greenfield, but on a reused substrate.

The pattern

A capability lives in the substrate (the SQL engine that's already embeddable and replication-ready) and is served by the runtime (the server that already speaks HTTP). New surface area, reused foundations — not a new binary per box on the diagram.