Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/incrediblesound/DiamondDB

Node.js Database
https://github.com/incrediblesound/DiamondDB

Last synced: about 2 months ago
JSON representation

Node.js Database

Awesome Lists containing this project

README

        

DiamondDB
=========
DiamondDB is a zero dependency modular database system for Node.js. It consists of three parts: the API, the cache, and the persistence layer. The API (which I usually just call the "database") is the controller of the system: the client interacts directly with this module which in turn communicates with the cache and the persistence layer via a [standard set of messages](https://github.com/incrediblesound/DiamondDB/blob/master/src/common/operations.js). This makes it easy to switch out the cache or persistence layer with a module of your own. The cache and persistence modules can interface with any other library so long as they implement the message interface. Below is an overview of the included modules.

Database
------------
The DiamondDB database uses schemas that specify the character length of each field in a record. There's one schema per table, and the database validates records for incorrect keys and record size. The database currently has three basic methods: fetchRecord saveRecord and makeTable.

**Make Table**
Make table takes a table name and a schema. The table object is stored on the database module and a blocking message is sent to the persistence layer to save the table metadata to disk. That the persistence of tables is blocking and not asynchronous was a relatively arbitrary decision and may be changed in the future.

**Save Record**
Save record first validates the record to be saved, sends a storeRecord message to the cache and then a storeRecord message to the persistence layer. Saving records is asynchronous but the record with its generated id is returned irrespective of what happens with the persistence layer.

**Fetch Record**
Fetch record takes a table name and an id and returns the record with that id or null if not found. The database returns an error if the id is out of range for the table. The fetchRecord method first sends a fetchRecord message to the cache module. If the cache module returns a success message with data, then that message is returned. If not, a fetchRecord message is sent to the persistence module, a storeRecord message is sent to the cache, and finally the return value from the message sent to the persistence module is returned.

Cache
------
The cache module included with DiamondDB is pretty rudimentary and provides a basic way to limit reads from the file system. Basically it is just a map where each database table points to a tree-PLRU data structure.

Store
-----
The persistence module included with DiamondDB is a simple Node.js implementation that saves records in a single string in paged files. Because schemas are fixed size and there is a fixed number of records per page it just takes is a little bit of math to find the page, load the file into memory, and extract the data corresponding to a given record.

How to Use
----------
DiamondDB takes advantage of features in the most current version of Node. The main interface is `src/main.js` but if you are using an earlier version of Node or want to use the minified version, you can run `npm install` and `webpack` to build the package which will be located in `dist/diamond.js`.

Before starting the database run `mkdir data` to make the folder for storing records. Here is an example of how to configure DiamondDB:
```javascript
const diamond = require('./src/main')
const server = require('./server')

/* use the included store module */
const store = new diamond.Store()

/* use the included cache module */
const cache = new diamond.Cache({ size: 8 }) // size must be a power of 2

/* create a database instance with our cache and store modules */
const db = new diamond.Database({
store,
cache /* this is optional */
})

/* initialize the db and configure it to write to disk every five seconds */
/* set persist to false to turn off intermittent batch persistence */
db.init({
persist: 5000
})

/* use server (included with repo) to send requests to the database */
server(db)
```
The server included with this repo accepts the following POST requests for testing purposes. Here are some example queries for using that server:

This query creates a new table called "people" that has a schema with a fifteen character long name field and a three character long age field. If it succeeds, you'll get a `1` back. The number one means "I did it!" in computer speak:
```javascript
{
"operation":"TABLE_CREATE",
"data": {
"name": "people",
"schema": {
"name": ["string", 15],
"age": ["number", 3]
}
}
}
```

This query saves the record contained in the "body" field of the post to the "people" table. It will return the ID of the saved record:
```javascript
{
"operation":"SAVE",
"data": {
"table": "people",
"body": {
"name": "Abby",
"age": 29
}
}
}
```

This query fetches and returns the record from the "people" table with the ID of 6:
```javascript
{
"operation":"FETCH",
"data": {
"table": "people",
"id": 6
}
}
```
Message Interface
----------------
For now the cache layer implements a very simple message interface:
```javascript
class Cache {
/* the cache module must implement a method called message to receive messages */
message(message){
switch(message.operation){
case STORE_RECORD:
/* the cache should have a method for storing data */
this.storeRecord(message.data)
/* the STORE_RECORD message simply expects an empty success message */
return Promise.resolve(success())
case FETCH_RECORD:
/* the cache should have a method for fetching data */
const result = this.fetchRecord(message.data)
/* it should return a success message with the result, even if the result is null */
return Promise.resolve(success(result))
}
}
}
```
The store interface is slightly more involved:
```javascript
class Store {
message(message){
switch(message.operation){
case UPDATE_META:
/* the database sends the tables meta-data to the store to be persisted
* since all tables are sent with the message, it might be wise to only store
* the most recent payload and persist on some interval
* this message does not expect a response
*/
return Promise.resolve()
case STORE_RECORD:
/* this message should either persist a record or store it for later batch persistence */
return Promise.resolve()
case FETCH_RECORD:
/* this message is sent if a record is not in the cache, it should fetch from the disk */
return this.fetch(message.data)
case MAKE_TABLE:
/* persists a table and expects a success or fail message */
return this.makeTable(message.data)
case INITIALIZE_PERSISTANCE:
/* a store should be able to fetch the tables meta-data */
const tables = this.initialize()
/* tables should be returned in a success message */
return Promise.resolve(success(tables))
case PERSIST_ALL:
/* this is message is sent on intervals if intermittent batch-persistence is configured */
const result = this.persist()
/* the result should be either a success or failure message */
return Promise.resolve(result)
}
}
}
```