Introduction

Welcome to the EventStoreDB documentation.

EventStoreDB is a database designed for Event Sourcingopen in new window. This documentation introduces key concepts of EventStoreDB and explains its installation, configuration and operational concerns.

EventStoreDB is available in both an Open-Source and a Commercial version:

  • EventStoreDB OSS is the open-sourceopen in new window and free-to-use edition of EventStoreDB.
  • EventStoreDB Commercial is available for customers with an EventStoreDB paid support subscriptionopen in new window. EventStoreDB Commercial adds enterprise-focused features such as LDAP and X.509 authentication, OpenTelemetry Exporter, correlation event sequence visualisation, and management CLI tool.

What's new

Find out what's new in this release to get details on new features and other changes.

Getting started

Check the getting started guide for resources on the principles of EventStoreDB, Event Sourcing, database installation guidelines and choosing a client SDK.

Support

EventStoreDB community

Users of the OSS version of EventStoreDB can use the community forumopen in new window for questions, discussions and getting help from community members.

Enterprise customers

Customers with the paid support planopen in new window can open tickets using the support portalopen in new window.

Issues

Since EventStoreDB is an open-source product, we track most of the issues openly in the EventStoreDB repository on GitHubopen in new window. Before opening an issue, please ensure that a similar issue hasn't been opened already. Also, try searching closed issues that might contain a solution or workaround for your problem.

When opening an issue, follow our guidelinesopen in new window for bug reports and feature requests. By doing so, you will greatly help us to solve your concerns most efficiently.

Protocols, clients, and SDKs

EventStoreDB supports one client protocol, which is described below. The older TCP client API has been deprecated in version 20.2 and removed in version 24.2. The final version with TCP API support is 23.10. More information can be found in our blog postopen in new window.

Client protocol

The client protocol is based on open standardsopen in new window and is widely supported by many programming languages. EventStoreDB uses gRPC to communicate between the cluster nodes as well as for client-server communication.

When developing software that uses EventStoreDB, we recommend using one of the official SDKs.

EventStoreDB supported clients

Read more in the gRPC clients documentation.

Community developed clients

HTTP

EventStoreDB also offers an HTTP-based interface. It consists of the REST-oriented API, and a realtime subscription feature based on the AtomPub protocolopen in new window. As it operates over HTTP, this is less efficient, but nearly every environment supports it.

Find out more about configuring the HTTP protocol on the HTTP configuration page.

Deprecation Note

The current AtomPub-based HTTP application API is disabled by default since v20 of EventStoreDB. You can enable it by adding an option to the server configuration. Although we plan to remove AtomPub support from future server versions, the server management HTTP API will remain available. You need to enable the AtomPub protocol to have a fully-functioning database user interface.

Learn more about EventStoreDB HTTP interface in the HTTP documentation.

Community developed clients