Skip to content

v1.14.1-ce — MongoDB Data Sync

Released: 2026-08-06 · Tag: v1.14.1-ce · Docker: synapcores/community:v1.14.1-ce

Bring your MongoDB data in. v1.14.1-ce adds a MongoDB source connector to the data-sync engine, turns data sync on by default, and ships a graph-storage fix that makes graph queries dramatically faster while closing a stability bug.

MongoDB → a queryable SQL table

Replicate a MongoDB collection into SynapCores as a normal SQL table. Documents map naturally: _id becomes the primary key, and nested fields land in a JSON column you query with JSON_EXTRACT.

  • Source-only, full (snapshot) sync in this release.
  • Data-sync sources now: MySQL · PostgreSQL · Snowflake · MongoDB, with SynapCores (AIDB) as the target.

Query nested document fields once synced:

SELECT _id,
       JSON_EXTRACT(doc, '$.customer.name')  AS customer,
       JSON_EXTRACT(doc, '$.total')          AS total
FROM   orders_synced
WHERE  JSON_EXTRACT(doc, '$.status') = 'shipped';

Data sync is now on by default

The scheduler initializes automatically on boot. Set AIDB_ENABLE_DATA_SYNC=false to turn it off.

Graph storage — faster and safer

Graph queries previously opened a fresh per-tenant RocksDB handle on every request. With the data-sync scheduler now running by default, that could race a still-closing handle and abort the whole gateway. Graph tenant storage is now opened once and shared behind a race-guarded cache.

  • Closes a whole-gateway abort exposed by data-sync-on.
  • Graph query latency ~38 ms → ~2 ms (p50, ~20×); concurrent graph throughput went from failing most requests to 1700+ req/s on the test box. SQL paths are unchanged.

Also in this release

  • Data-sync engine fixes: target auto-create (create_if_not_exists), accurate success/failure counters, and list-tables/collections for every connector type (previously 500'd for non-MySQL/PostgreSQL).
  • UI parity: the Data Sync page is wired to the live backend (create/test/run, real monitoring, MongoDB source-only); native in-process vision is surfaced with a Describe (AI vision) action; in-app SQL docs and the Community-Edition features page were refreshed.
  • Installer fix: model pre-pull now runs on install.

MongoDB CDC is Enterprise

Real-time MongoDB change-stream CDC (and other CDC connectors) are Enterprise features and are not in the CE binary. In CE, MongoDB is available through batch data-sync as described above.

Validation

On the published artifact: feature_validator 88/88; recipe certification 158/162, zero regressions vs v1.14.0-ce (identical 4-recipe environmental failing set); zero gateway aborts across repeated data-sync-on certification sweeps; non-AVX-512 canary (i5-10400F) boots and runs models with no illegal-instruction; version string and bundled UI verified on the published Docker image.

Install

docker pull synapcores/community:v1.14.1-ce
curl -fsSL https://get.synapcores.com | sh
curl -fsSL https://get.synapcores.com | SYNAPCORES_VERSION=v1.14.1-ce sh

Upgrading from v1.14.0-ce is drop-in — no breaking changes to the SQL surface or public API. Data sync now starts automatically; disable with AIDB_ENABLE_DATA_SYNC=false.