Fundraising Fox

DoltHub

Santa Monica, US Β· 1 known investors

Collaborative platform for managing version-controlled databases, combining Git repository functionality with SQL database capabilities.

Also known as DoltHub Inc Β· Liquidata Β· Liquidata, Inc.

Founders & leadership

AS
Aaron SonFounder
BHBrian Hendriks
Brian HendriksinFounder
TSTimothy Sehn
Timothy SehninFounder

Investors Β· 1

Company profile

researched Aug 2026

DoltHub is the company behind Dolt, a SQL database that can be forked, cloned, branched, merged, pushed and pulled like a Git repository. Dolt is MySQL-compatible, so clients connect to it as they would to any MySQL server, and version-control functionality is exposed through SQL system tables, functions and procedures as well as through a command line interface whose commands mirror Git (init, add, diff, commit, branch, merge, cherry-pick, revert, clone, fetch, pull, push, tag, blame and others). Dolt can also be deployed as a versioned MySQL replica, giving version-control features such as a cell-level audit log, time travel and development branches without migrating off an existing MySQL deployment.

Around the core engine the company operates several products: DoltHub, a web application for sharing Dolt databases with a browser-based management GUI, issues and pull-request review workflows, and free hosting of public data; DoltLab, a self-hosted version of DoltHub deployable inside a customer's own network or development machine; Hosted Dolt, a managed cloud-deployed Dolt service with its own versioned REST API; and Dolt Workbench, an open source browser-based SQL workbench for MySQL- and PostgreSQL-compatible databases with version-control features when connected to Dolt. Additional versioned database implementations include Doltgres (PostgreSQL-flavored, reached 1.0 in August 2026), DoltLite (versioned SQLite) and Dumbo/DumboDB (a versioned document database compared to MongoDB). The company also maintains go-mysql-server, a MySQL-compatible relational database engine in Go that it adopted and forked after the sponsoring parent company src-d shut down in late 2019.

Dolt is distributed as a single binary of roughly 103 MB, installable via a release install script, Homebrew, MacPorts, Arch Linux packages, Chocolatey, a Windows MSI, official Docker images, or from source with Go. The company positions Dolt for AI and agent use cases, describing it as a database for agent memory in multi-agent and multi-machine workflows, and citing Beads and Gas Town as projects powered by Dolt.

Founding story

The founder began considering "data as a service" β€” renting the data inside a database rather than the database itself β€” at an Amazon Web Services offsite in July 2013 and continued developing the idea at a subsequent job. He incorporated a company called Liquidata in February 2018 to build a data sharing/marketplace startup. Co-founders Aaron and Brian left their jobs at Snap in June and July 2018, and the three began working full time on 2018-08-06, meeting in the founder's basement. Aware that the Noms project (acquired with Attic Labs by Salesforce in January 2018) had a sound architecture and a compatible license, Brian built a Git-style command line on top of it over a weekend, producing "Git for Tables"; the team decided to ship it as a product and named it Dolt in November 2018.

Business model

The company develops Dolt as open source software (Apache-2.0 licensed repositories on GitHub) and monetizes surrounding commercial offerings: DoltHub, the hosted site for sharing Dolt databases where public data hosting is free; DoltLab, a self-hosted/on-premises version of DoltHub for organizations that do not want their databases on the public internet; and Hosted Dolt, a managed cloud deployment in which the company provisions servers and disks and runs Dolt for the customer. A company registry entry describes revenue coming from support contracts and private repository fees, with DoltLab offered as a self-hostable enterprise version.

Revenue is reported to come from support contracts and private repository fees on DoltHub, with additional paid products in DoltLab (self-hosted enterprise deployment) and Hosted Dolt (managed database hosting); public data hosting on DoltHub is free. Stripe appears in the company's web technology stack.

Traction

The Dolt GitHub repository has roughly 24,300 stars, 868 forks and over 31,600 commits; go-mysql-server has about 2,650 stars, DoltgreSQL about 2,100, Dolt Workbench 243, DoltLite 212 and DumboDB 59. The organization maintains 173 public repositories. The company reports operating for over six years with production OLTP customers, including Turbine, which began testing in January 2021, launched into production in early 2021 and remained a customer as of 2024. Third-party listings estimate 11-20 employees (about 12 across engineering and HR) and annual revenue around $3M (a separate registry gives a $1M-$1.5M revenue range and 10-14 employees). The company received one SBIR Phase I award in 2022 totaling $49,143 from the Air Force.

Latest developments

Between July and August 2026 the company shipped Doltgres 1.0 (2026-08-06) with replication support and automatic garbage collection; added DoltHub support for pushing, pulling and cloning DoltLite and Doltgres databases (2026-08-07); released an official versioned REST API for Hosted Dolt built on the same OpenAPI contract as DoltHub API v2 (2026-08-20); extended Dolt Workbench to DoltLite databases (2026-08-21); introduced a dolt_squash_history() procedure for collapsing commit history (2026-07-31); and added RBAC, schema validator and collation support plus phone-home telemetry to DumboDB. Recent engineering writing also covers Doltgres performance optimizations, prolly tree research and an interactive prolly tree visualizer, alongside a growing emphasis on AI agent use cases and agent-engineered software.

β–ΈFull profile β€” market position, technology, go-to-market, geography, history, risks & controversies

Market position

The company describes itself as a database company, having shifted from its original data sharing/marketplace positioning after prospective customers asked to run Dolt as a production OLTP database. It presents Dolt as the world's first and only version-controlled SQL database and positions it against MySQL for compatibility and performance comparisons, with Doltgres targeting PostgreSQL users, DoltLite targeting SQLite and Dumbo targeting MongoDB. DoltHub is positioned as a GitHub-equivalent for Dolt databases.

The company describes Dolt as the first and only version-controlled SQL database, combining full Git-style branching, merging and history with MySQL wire compatibility, so that the same database can be operated with either SQL clients or Git-equivalent CLI commands. Its storage relies on prolly trees, a data structure pioneered in the Noms project that enables structural sharing and efficient storage of many database snapshots along with fast diffs. Dolt can also be attached to an existing MySQL deployment as a versioned replica, avoiding a migration while adding per-cell audit history, time travel and branch-based development.

Technology

Dolt is written in Go with a cgo dependency, distributed as a single ~103 MB binary, and licensed Apache-2.0 on GitHub. Its versioning is built on prolly trees, the data structure first implemented in the Noms project, which enable structural sharing, fast diffs and history independence. The SQL layer is built on go-mysql-server, a storage-agnostic MySQL-compatible query engine in Go that the company adopted, forked and now maintains as the authoritative project after src-d ceased operations in late 2019. A new journaled storage format launched in August 2022 and completed in March 2023 delivered ACID compliance and improved performance. Related codebases include DoltgreSQL (PostgreSQL-flavored, in Go), DoltLite (in C), DumboDB (document database, in Go), a Go database/sql driver, and the TypeScript Dolt Workbench. The DoltHub web stack reportedly includes Node.js, Apollo, Tailwind CSS, Envoy, Emotion, Ace, Stripe, Google Sign-in, HubSpot Analytics and Google Analytics.

Go-to-market

Distribution is led by open source: the Dolt repository has over 24,000 GitHub stars and is packaged through Homebrew, MacPorts, Arch Linux, Chocolatey, a Windows installer and Docker images, with a community Discord and a public roadmap. Demand generation runs through a high-frequency engineering blog and a weekly mailing list of updates (archived publicly since July 2022), plus free hosting of public databases on DoltHub as an on-ramp. Commercial conversion happens through paid private repositories, support contracts, the DoltLab on-premises product for organizations unwilling to host data publicly, and the Hosted Dolt managed service. Inbound demand from prospective customers wanting to run Dolt as a production OLTP database, rather than for data sharing, drove the company's shift in product focus.

Developers and engineering teams that need version control over database contents, including teams running Dolt as a production OLTP database (an early example being Turbine), organizations wanting DoltHub-style collaboration inside their own network via DoltLab, teams that want a managed Dolt server through Hosted Dolt, users of public shared datasets on DoltHub, and, more recently, builders of AI agent systems needing agent memory. A federal SBIR Phase I award for a project titled "Evolving the database for the USAF" indicates U.S. Air Force interest.

Geography

Headquartered in Santa Monica, California, United States, with addresses listed at 1420 2nd St, Santa Monica, CA 90401 and 1230 Georgina Avenue, Santa Monica, CA 90402.

History

The founder traces the idea to 2013 ("data as a service") while at Amazon Web Services. Noms, the technical predecessor that pioneered the prolly tree data structure, received its first commit on 2015-06-02 by Aaron Boodman and launched publicly in August 2016; Attic Labs, the company behind Noms, was acquired by Salesforce in January 2018. Liquidata was incorporated in February 2018, and the three founders β€” who had quit jobs at Snap β€” began working full time on 2018-08-06. In October 2018 a Git-style command line was added on top of Noms, and in November 2018 the resulting tool was named Dolt; work on DoltHub began in December 2018. Dolt launched on 2019-08-06 and DoltHub in September 2019. The company rebranded from Liquidata to DoltHub in September 2020. Data Bounties launched in December 2020 and ended in September 2023. The first production OLTP customer, Turbine, began testing in January 2021, and the company announced OLTP intentions in June 2021. DoltLab launched in January 2022, Hosted Dolt in May 2022, a new storage format in August 2022 (completed March 2023), Dolt 1.0 in May 2023, and Doltgres in November 2023. In 2026 the product line expanded further with Doltgres 1.0, DoltLite and DumboDB.

Risks & controversies

The company has publicly documented that its original data marketplace and data sharing thesis did not materialize: the Data Bounties program, launched in December 2020 as an attempt to bootstrap a data sharing ecosystem, was ended in September 2023 so the company could focus on being a database company. Early technical constraints included a storage format inherited from Noms that was a performance bottleneck and required migrating old-format databases, and an early production customer tolerating an approximately 20x performance penalty relative to MySQL that the company initially could not meet on some queries. Adoption of a database at the storage layer also depends on customer trust, which the company identified as a major internal theme.

Compiled by commissioned research from 8 cited public sources β€” announcements, filings, and press listed under research sources below.

Key figures

latest reported
Commits (dolt repository)Aug 202631,625 commits
Dolt binary sizeAug 2026103 MB
Employee range (SBIR registry)Jan 202610-14
Employees (range)Jan 202611-20
Estimated annual revenueJan 2026$3M
GitHub forks (dolt repository)Aug 2026868 forks
GitHub stars (dolt repository)Aug 202624,300 stars
GitHub stars (doltgresql repository)Aug 20262,105 stars
GitHub stars (go-mysql-server repository)Aug 20262,652 stars
Public repositories in GitHub organizationAug 2026173 repositories
Revenue range (SBIR registry)Jan 2026$1M-$1.5M
Total SBIR dollars awardedJan 2022$49.1K

Company-reported or press-reported figures, each dated to when it was claimed β€” not independently audited.

Competitors Β· 5

by search overlap

Companies competing with DoltHub for the same Google search keywords, organic and paid, via search-intersection analysis.

Non-dilutive funding Β· 1 SBIR/STTR award

Federal grants β€” no equity taken
AgencyPhaseYearAmount
U.S. Air ForceAir ForcePhase I2022$49.1K

Source: SBIR.gov award data (U.S. Small Business Administration). SBIR/STTR awards are competitive federal R&D grants and contracts β€” non-dilutive capital alongside any venture rounds above.

Timeline Β· 22

launches, deals, and filings
Aug 2026
DumboDB collations support

DumboDB, the version-controlled document database, added collation support.

source β†—

Aug 2026
Dolt Workbench adds support for DoltLite

source β†—

Aug 2026
Hosted Dolt REST API released

Hosted Dolt gained an official, versioned REST API for creating and managing deployments, built on the same OpenAPI contract as DoltHub API v2.

source β†—

Aug 2026
DoltHub adds DoltLite and Doltgres database support

DoltHub added support for pushing, pulling and cloning DoltLite and Doltgres databases.

source β†—

Aug 2026
Doltgres 1.0 released

Doltgres, the Postgres-flavored version of Dolt, reached 1.0 and production readiness, with replication support and automatic garbage collection added ahead of launch.

source β†—

Jul 2026
Introduction of dolt_squash_history() procedure

New procedure collapses Dolt commit history into a single commit without a rebase.

source β†—

Nov 2023
Doltgres launch

source β†—

Sep 2023
Data Bounties program ended

The data bounties program was ended so the company could focus on being a database company rather than a data sharing company.

source β†—

May 2023
Dolt 1.0 released

Dolt was announced as 1.0 and production ready after two years running in production at Turbine.

source β†—

Aug 2022
New Dolt storage format launched

The first version of a new journaled storage format, replacing the Noms-inherited format to meet OLTP performance and durability requirements, launched in August 2022; the migration to the new format was completed in March 2023.

source β†—

May 2022
Hosted Dolt launch

Hosted Dolt, a cloud-deployed managed Dolt database service, launched in May 2022.

source β†—

Jan 2022
SBIR Phase I award from the Air Force ($49,143)

DoltHub Inc received one SBIR Phase I award in 2022 for a project titled "Evolving the database for the USAF", totaling $49,143. No Phase II awards are recorded.

$49.1K source β†—

Jan 2022
DoltLab launch

DoltLab, an on-premises/self-hosted version of DoltHub, launched in response to customer requests.

source β†—

Jun 2021
Company announces OLTP intentions for Dolt

The company publicly announced its intention for Dolt to be an OLTP database after completing secondary indexes, foreign keys and all MySQL types.

source β†—

Jan 2021
First production OLTP customer, Turbine

Turbine, the company's first production OLTP customer, began testing Dolt as its production database in January 2021 and launched into production in early 2021; still a customer as of 2024.

source β†—

Dec 2020
Data Bounties launch

Data Bounties, a system to pay contributors for collecting and contributing data to Dolt databases, launched with an elections data bounty.

source β†—

Sep 2020
Liquidata rebrands as DoltHub

The company rebranded from Liquidata to DoltHub after initial success.

source β†—

Sep 2019
DoltHub launch

DoltHub, a website for sharing Dolt databases modeled after GitHub, launched shortly after Dolt.

source β†—

Aug 2019
Dolt launch

source β†—

Nov 2018
New tool named Dolt

A Git-style command line was built on top of Noms, producing "Git for Tables", and the resulting tool was named Dolt in November 2018.

source β†—

Aug 2018
Founders begin working full time on Liquidata

Founders Aaron and Brian, who had left their jobs at Snap, joined the founder full time on Liquidata on August 6, 2018.

source β†—

Feb 2018
Liquidata incorporated

source β†—

Dated company events from announcements, filings, and press; legal rows summarize public dockets and regulator releases.

In the news

β–ΈResearch sources Β· 8

primary sources listed

8 public sources were cited for this profile; the first-party ones are listed here.

Frequently asked questions

What does DoltHub do?
DoltHub builds Dolt, a MySQL-compatible version-controlled SQL database, plus hosting, on-premises and managed products around it.
Who founded DoltHub?
DoltHub was founded by Aaron Son, Brian Hendriks, Timothy Sehn.
Who are DoltHub's investors?
DoltHub's investors include Alpha Edison.
Where is DoltHub headquartered?
DoltHub is headquartered in Santa Monica, US.