Giter VIP home page Giter VIP logo

pumpkindb's Introduction

Gitter chat Build Status

PumpkinDB

PumpkinDB is a compact event sourcing database, featuring fast on-disk storage, flexible approach to event structure and encoding, sophisticated event indexing and querying.

The core ideas behind PumpkinDB stem from the so called lazy event sourcing approach which is based on storing and indexing events while delaying domain binding for as long as possible. That said, the intention of this database is to be a building block for different kinds of event sourcing systems, ranging from the classic one (using it as an event store) all the way to the lazy one (using indices) and anywhere in between. It's also possible to implement different approaches within a single database for different parts of the domain.

In previous incarnations (or, rather, inspirations) of PumpkinDB much more rigid structures, formats and encoding were established as a prerequisite for using it, unnecessarily limiting the applicability and appeal of the technology and ideas behind it. For example, one had to buy into ELF, UUID-based event identification and HLC-based timestamps.

So it was deemed to be important to lift this kind of restrictions in PumpkinDB. But how do we support all the formats without knowing what they are? What if there was a way to describe how data should be processed, for example, for indexing — in a compact, unambiguous and composable form? Or even for recording data itself?

Well, that's where the idea to use something like a Forth-like language was born.

Instead of devising custom protocols for talking to PumpkinDB, the protocol of communication has become a pipeline to a script executor. This offers us enormous extension and flexibility capabilities.

To name a few:

  • Low-level imperative querying (as a foundation for declarative queries)
  • Indexing filters
  • Subscription filters

PumpkinDB is in the process of active development and is not suitable for anything beyond experimentation. The interfaces, guarantees and concepts will evolve over time. You can read up on some of the ideas and progress in this repository's tlog ("gitlog"). Simply run git log and find commits with a lot of text in the message and no diffs.

So what is PumpkinDB?

  • Fast file-based storage (thanks to LMDB)
  • PumpkinScript (Forth-like) language for data manipulation
  • Library of building primitives: encoding, indexing, subscriptions, etc.
  • Query language that compiles to PumpkinScript

Trying it out

There are no releases at this time. You are welcome to clone the repository and run

$ cargo run
   ...
    Finished dev [unoptimized + debuginfo] target(s) in 4.25 secs
     Running `target/debug/pumpkindb`
Listening (text form) on 0.0.0.0:9981

When you connect to 0.0.0.0:9981 you can communicate with the server using a text form of PumpkinScript. Try something simple first:

✗ telnet localhost 9981
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
["Test" "passed" ASSOC COMMIT] WRITE ["Test" RETR] READ
0x706173736564
"passed"
0x706173736564

(The above example stores key/value pair of "Test" and "passed" and then retrieves the value associated with that key.)

You can change some of the server's parameters by creating pumpkindb.toml:

[storage]
path = "path/to/db"

[text-server]
port = 9981

Contributing

This project is its very early days and we will always be welcoming contributors.

Our goal is to encourage frictionless contributions to the project. In order to achieve that, we use Unprotocols C4 process. Please read it, it will answer a lot of questions. Our goal is to merge pull requests as quickly as possible and make new stable releases regularly.

In a nutshell, this means:

  • We merge pull requests rapidly (try!)
  • We are open to diverse ideas
  • We prefer code now over consensus later

To learn more, read our contribution guidelines

pumpkindb's People

Contributors

yrashk avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.