Skip to main content
Get an append-only event log running on your machine in under five minutes. You will install Log, start the server, append events, and read them back using curl.

Install OpenData Log

Download and install the Log binary:
This places the opendata-log binary in the current directory.

Start the server

Start Log on port 8081:
No configuration file is needed — all options are passed as CLI flags. Data is stored in .data/ by default.

Append records

Append three order events to the orders key. Keys and values are base64-encoded in the JSON body:
The key and values decode to: The server responds with the starting sequence number and how many records were written:

Read records back

Scan all entries for the orders key:
The response includes each entry’s global sequence number and its base64-encoded value:
Add limit to paginate through large result sets:

Explore more endpoints

List all keys in the log:
List storage segments:

Next steps

  • Explore the full API in the API reference section in the sidebar.
  • Learn how segments and compaction work in Storage design.