Citus Data
AcquiredYC S11San Francisco, US Β· Founded 2011 Β· 45 employees Β· 8 known investors
Citus is a Postgres extension that enables horizontal scaling of databases by distributing data and queries across multiple nodes. It serves SaaS applications, real-time analytics platforms, and microservices architectures that need to scale transactional and analytical workloads on a single distributed database.
Also known as Citus Β· CitusDB
Founders & leadershipΒ· Y Combinator alumni (S11)
Citus Data was founded in 2011 by Sumedh Pathak.
Investors Β· 8
Company profile
researched Aug 2026Citus Data is the creator of Citus, an extension to PostgreSQL that turns a single Postgres server into a distributed database by sharding tables and schemas across multiple nodes and parallelizing queries across them. Because Citus is packaged as an extension rather than a fork, deployments stay current with upstream PostgreSQL releases and retain Postgres features such as joins, foreign keys, constraints, stored procedures, indexes (B-tree, GIN, BRIN, GiST, partial), JSON/JSONB and user-defined types, along with compatible extensions including PostGIS, HLL, pg_cron, pg_stat_statements, pgvector, pg_partman and TopN. Users can begin on a single Citus node and add nodes and rebalance shards as workloads grow, and can run transactional and analytical workloads on the same database.
The product supports two sharding models: row-based sharding using a distribution key, and schema-based sharding introduced in Citus 12, which distributes whole database schemas without requiring a distribution column. Capabilities include a distributed query planner and adaptive executor, reference tables, co-located shards, parallel distributed SELECT and DML, distributed transactions, parallelized COPY, columnar storage compression, change data capture (preview, added in Citus 11.3), an online shard rebalancer, tenant isolation and tenant monitoring via citus_stat_tenants, query-from-any-node metadata syncing (Citus 11), and high availability through integration with Patroni 3.0 (Citus 11.2). Citus source code is published on GitHub and packages are distributed for Docker, Ubuntu/Debian and Red Hat; version 14.2 adds support for PostgreSQL 18.
Historically the company offered Citus as open source, as enterprise software deployable on-premises or on any cloud, and as Citus Cloud, a fully managed database-as-a-service. Microsoft acquired Citus Data in January 2019, and the team continues work on Postgres and Citus at Microsoft, including on Azure. As of the Citus 11 release in June 2022, Citus is fully open source.
Founding story
Co-founders Umur Cubukcu, Ozgun Erdogan and Sumedh Pathak met in graduate school at Stanford. After graduating, Erdogan and Pathak took engineering roles at Amazon in Seattle while Cubukcu joined Boston Consulting Group. About five years later, while working on NoSQL data architectures, Erdogan concluded there should be a way to scale out a database without giving up transactions, joins and foreign keys, which became the founding idea for Citus Data: extending PostgreSQL rather than reimplementing a database from scratch. The three founded the company in January 2011 and moved from Seattle, Hyderabad and San Francisco to Istanbul to open the first office, handling hiring, incorporation, funding and an application to Y Combinator before relocating to San Francisco.
Business model
Citus has been distributed in three forms: a free open source Postgres extension that users can download and self-manage, enterprise software deployable on-premises or on any cloud, and a fully managed database-as-a-service (Citus Cloud, generally available from July 2016). Following the 2019 Microsoft acquisition, the technology is offered as open source and in the cloud on Azure.
Prior to the acquisition, the company monetized through enterprise software licensing for on-premises or cloud deployment and a fully managed database-as-a-service, while the core extension was available free as open source.
Traction
MixRank became the first Citus user in production in July 2012. The company grew to nearly 20 employees across the United States and Europe during 2015 and is listed by Y Combinator with a team size of 45. Citus open source is distributed on GitHub and via Docker, Debian/Ubuntu and Red Hat packages, and the project has continued shipping releases through Citus 14.2 with PostgreSQL 18 support.
Latest developments
Citus 14.2 has been released with support for PostgreSQL 18. The team runs POSETTE: An Event for Postgres, whose fifth annual edition is scheduled for June 16-18, 2026 with 44 talks and 50 speakers; recordings of all 44 POSETTE 2026 talks are published on YouTube.
βΈFull profile β market position, technology, go-to-market, geography, history
Market position
Citus positions itself as distributed Postgres, contrasting with earlier approaches that forked the underlying database for offline analytics and with architectures that combine non-relational technologies such as Hadoop and NoSQL alongside relational databases. The company described CitusDB as capable of serving both real-time mixed analytic and short-request workloads, and as a distributed database that stays current with the latest version of upstream PostgreSQL.
Citus is delivered as a Postgres extension rather than a fork, so clusters can track the latest PostgreSQL releases and reuse existing Postgres tooling, extensions and ecosystem. It supports both transactional and analytical workloads in one database, requires few application-layer changes and no separate middleware, and offers schema-based sharding so existing applications can be onboarded without choosing a distribution key.
Technology
Citus is a PostgreSQL extension (not a fork) that adds distributed tables and distributed schemas. It provides a distributed query planner and adaptive executor that parallelize SQL across shards and nodes, full SQL query and transaction routing, distributed transactions, reference tables replicated for joins and foreign keys, co-located shards, parallel distributed SELECT and DML, parallelized COPY, and columnar storage for compression and analytics. Operationally it offers an online, non-blocking shard rebalancer (with a background rebalancer added in 11.1), single-node to multi-node scale-out, tenant isolation and monitoring via citus_stat_tenants, cluster activity views (citus_stat_activity, citus_dist_stat_activity), user and access management across the cluster, metadata syncing for query-from-any-node (Citus 11), change data capture in preview (Citus 11.3), and high availability with Patroni 3.0 (Citus 11.2). Citus 12 introduced schema-based sharding; Citus 14.2 supports PostgreSQL 18. Packages are available via Docker, Ubuntu/Debian and Red Hat repositories, and source is on GitHub.
Go-to-market
Distribution combines free open source downloads and GitHub availability with commercial enterprise and managed-service offerings. The company invested in developer and community marketing, including PostgreSQL conference talks (beginning at PGCon Ottawa in May 2015), organizing the first PGConf Silicon Valley in November 2015 in cooperation with the San Francisco PostgreSQL Users Group, and technical blogging. The Postgres team at Microsoft continues to host Postgres events, including the annual POSETTE virtual event, and produces a monthly Postgres podcast. Proceeds of the 2015 Series A were earmarked partly for expanding sales and marketing.
Multi-tenant SaaS applications that can shard by tenant, customer or account identifier; teams building customer-facing real-time analytics dashboards requiring sub-second responses for thousands of concurrent users while ingesting fresh event data; microservices architectures where each service owns a schema in a shared distributed database; and enterprises already using relational databases that need to scale to billions of data points. Time series and IoT workloads are also cited as fits for row-based sharding.
Geography
Headquartered in San Francisco (SoMa district) after moving from Istanbul in March 2013, with continued offices in Istanbul, Turkey, and a third global engineering office opened in Amsterdam in May 2018. During 2015 the workforce spanned the United States and Europe, and the company described a distributed workforce across five countries.
History
Citus Data was founded in January 2011 and joined Y Combinator's Summer 2011 batch. Its first production user, MixRank, went live in July 2012, and the headquarters moved to San Francisco in March 2013. The company released the cstore_fdw columnar store for PostgreSQL in April 2014 and the first open source release of the pg_shard extension in December 2014. In October 2015 it raised a Series A led by Khosla Ventures. In March 2016 Citus was "unforked" and reimplemented as a Postgres extension, and the extension was open sourced; Citus Cloud, a fully managed database-as-a-service, reached general availability in July 2016. A third global engineering office opened in Amsterdam in May 2018, and in November 2018 the company donated 1% of its stock to non-profit PostgreSQL organizations in the US and Europe. Microsoft acquired Citus Data in January 2019. With the Citus 11 release in June 2022, querying from any node became possible and Citus became 100% open source.
Compiled by commissioned research from 8 cited public sources β announcements, filings, and press listed under research sources below.
Key figures
latest reportedCompany-reported or press-reported figures, each dated to when it was claimed β not independently audited.
Founder mafia
4 people who came through Citus Data went on to found or lead other companies.
Competitors Β· 5
by search overlapCompanies competing with Citus Data for the same Google search keywords, organic and paid, via search-intersection analysis.
Timeline Β· 16
launches, deals, and filingsMicrosoft acquired Citus Data in January 2019; the team continued work on Postgres and Citus at Microsoft, including on Azure.
Citus Data donated 1% of its stock to the non-profit PostgreSQL organizations in the US and Europe.
Citus was reimplemented as an extension to Postgres rather than a fork, and the extension was open sourced.
Citus Data announced the first annual PGConf Silicon Valley PostgreSQL conference, held November 17-18, 2015 at the South San Francisco Conference Center in cooperation with the San Francisco PostgreSQL Users Group.
Citus Data announced $9.5 million in Series A funding led by Khosla Ventures with participation from existing investors Data Collective and Vaizra Investments. Khosla Ventures partner Ari Zilka joined the board of directors. Proceeds were designated for growing the development team and expanding sales and marketing.
$9.5M source β
CitusDB 4.1, a real-time operational and analytics database that scales out PostgreSQL and speeds up analytics queries, compatible with PostgreSQL 9.4.
The three co-founders founded Citus Data and moved from Seattle, Hyderabad and San Francisco to Istanbul to open the company's first office.
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
- Citus Datacitusdata.com Β· web
8 public sources were cited for this profile; the first-party ones are listed here.
Frequently asked questions
- What does Citus Data do?
- Citus Data builds Citus, an open source PostgreSQL extension that shards data and queries across a cluster of nodes.
- Who founded Citus Data?
- Citus Data was founded by Sumedh Pathak in 2011.
- Who are Citus Data's investors?
- Citus Data's investors include Bling Capital, Bullpen Capital, DCVC (Data Collective), Heavybit, Rainfall Ventures, Streamlined Ventures, Y Combinator, Khosla Ventures.
- Where is Citus Data headquartered?
- Citus Data is headquartered in San Francisco, US.

.jpeg)






