Roadmap (May 2026) #25
benoitcayladbx
announced in
Announcements
Replies: 1 comment
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.
OntoBricks — Product Roadmap
Executive Summary
OntoBricks is the only Databricks-native knowledge graph builder that combines ontology design, LLM-powered automation, formal reasoning, and interactive graph exploration in a single deployable App. Version 0.3.x is the current stable release, built on Delta Lake as the primary triple-store backend.
The next phases of the roadmap focus on three strategic axes:
Market Context
Knowledge graph adoption trends
The knowledge graph market is growing rapidly, driven by:
Where competitors fall short
Every existing solution leaves at least one critical gap for Databricks users:
No existing tool combines ontology design, W3C standards, LLM automation, graph visualization, formal reasoning, and native Databricks deployment in a single open-source application.
OntoBricks strategic position
OntoBricks can be positioned as the semantic layer for the Databricks Lakehouse: it does not replace graph databases but federates them, allowing enterprises to keep data in Delta/UC while querying through OWL-governed knowledge graphs, optionally persisted to Postgres (Lakebase) or Neo4j.
Current State — v0.3.x (May 2026)
Triple-store backends
Core capabilities
Known limitations (targeted in next releases)
Roadmap
v0.4.0 — Lakebase as Primary Triple Store (June 2026)
Theme: replace the embedded graph engine with Lakebase (Databricks-managed Postgres Autoscaling) as a first-class, production-grade triple store.
Why this matters
Lakebase Postgres is Databricks' managed, autoscaling Postgres service. Using it as the triple store means the knowledge graph lives inside the Databricks platform with no separate infrastructure, full UC lineage via Lakeflow sync, and transactional consistency for reasoning.
Key capabilities
Also in v0.4.0 — Stabilization
v0.5.0 — Lakebase SPARQL Federation (July 2026)
Theme: federate SPARQL queries across multiple domain graphs in a single Lakebase Postgres instance.
v0.6.0 — Neo4j Connector (August 2026)
Theme: add Neo4j (Community, Enterprise, AuraDB) as a graph engine alongside Delta Lake and Lakebase, enabling customers with existing Neo4j infrastructure to use OntoBricks as their semantic design and mapping front-end.
Why this matters
Neo4j is the dominant graph database with 40%+ market share. Customers in finance, healthcare, and telco often have existing Neo4j deployments. A native connector means:
OWL → Property Graph mapping
:InferredmarkerKey capabilities
rdf:typetriplesv0.7.0 — Enterprise Hardening (September 2026)
Theme: prepare OntoBricks for large enterprise deployments with strict governance, performance, and multi-tenancy requirements.
v1.0.0 — General Availability (November 2026)
Theme: stable API contract, enterprise SLA documentation, and ecosystem integrations.
Feature Matrix
Graph Engine Comparison (v0.4+)
Open Questions
Lakebase SPARQL subset scope — BGP + FILTER covers 80% of use cases; OPTIONAL and UNION add another 15%. Aggregates and property paths are deferred to a later patch.
Neo4j Community vs Enterprise — named graphs as separate databases require Neo4j Enterprise. Community edition support will use label prefixing as a documented workaround.
Triple store migration UX — when an admin switches engine (e.g., Delta → Neo4j), OntoBricks will require a rebuild rather than offering an inline migration wizard. A migration assistant is considered for v0.7.
How to Contribute
The graph engine abstraction is designed for external contributions. Adding a new store requires implementing the
GraphStoreinterface, registering the engine inGraphDBFactory, adding an optional dependency group, providing a Settings UI card, and writing unit tests with a mock driver.See
docs/graphdb-integration.mdfor the full engine abstraction contract.All reactions