Wiki

Clone wiki

bitsy / WriteAlgorithms

Write Algorithms

Bitsy is a durable in-memory database. The vertices and edges in the graph are maintained in various Java Map data structures. Changes made to the database are logged to files. These files are routinely compacted and re-organized to remove obsolete information. The rest of this section describes the various algorithms involved in writing transactions to files. The following illustration describes the various buffers and processes.

Bitsy Write Algorithms

Transaction commit algorithm

A transactional context is tied to every thread that operates on Bitsy. When the vertices and edges are queried in a transaction, the elements are copied to the transaction context along with the version number.

When a transaction is committed, the database performs the following steps:

  1. Serialize all updated vertices and edges using the Jackson JSON processor, after incrementing the version number
  2. Grab an exclusive lock on the graph
  3. Check to see if all updated vertices and edges have the same version number at time of the commit operation
  4. Apply the changes to the in-memory database
  5. Release the exclusive lock on the graph
  6. Enqueue the transaction details to a transaction buffer
  7. Wait till the transaction buffer is flushed to the file

The commit algorithm tries to minimize the time for which the exclusive write lock is held. It also ensures that the method does not return till the commits are written (and forced) to disk.

Transaction buffer flush algorithm

There are two transaction buffers (A/B) which are in-memory queue implementations. One of them is the enqueue buffer to which transaction details are enqueued. The other buffer is called the flush buffer.

A transaction-buffer flusher thread, named MemToTxLogWriter-<id>, runs in the background performing the following steps in an infinite loop:

  1. Wait till the enqueue buffer has more than one transaction
  2. Swap the enqueue/flush buffers (A -> B or B -> A)
  3. Pick up transactions from the flush buffer and write them to a transaction log (see next section)
  4. Force the updates to disk
  5. Notify all the processed transactions (see step 7 in the previous section)

The idea behind the dual queue system is to:

  • avoid the file write operations from blocking the transaction commit operations,
  • reduce rotational latency by writing as much as possible at once and then forcing the updates to disk, and
  • maximize the throughput when there are a lot of queued-up transactions.

The write throughput in the benchmarks page shows the decreasing impact of rotational latency as the number of concurrently writing threads increases.

Transaction log flush algorithm

The transaction logs are organized in a similar fashion to the transaction buffers. There are two files (txA.txt and txB.txt). One of them is the enqueue log and the other one is flush log.

When the enqueue transaction log exceeds the transaction log threshold (configurable with a default of 4MB), the transaction-log flusher thread, named TxFlusher-<id>, wakes up and performs the following steps:

  1. Swap the enqueue/flush transaction logs: This is not a file rename operation. It simply instructs the transaction-log flusher to use the other log file.
  2. Read records from the flush transaction log and write the up-to-date vertices and edges to the vertex and edge logs. The obsolete vertices and edges are ignored.

Vertex and edge log reorganization algorithm

The vertex and edge logs are organized in a similar fashion to the transaction logs. There are two sets of vertex and edge files, named vA.txt and vB.txt, and eA.txt and eB.txt. One of the sets of logs is the enqueue logs to which the transaction logs are flushed.

When the total number of vertices and edges in the vertex/edge logs exceeds the previously known size (say N) by the reorganization factor times N, a thread named the VEReorg-<id> wakes up and performs the following steps:

  1. Block all further transaction log flushes
  2. Read all vertices from the enqueue vertex log and write the up-to-date records to the flush vertex log
  3. Perform a similar copy operation on the edge logs
  4. Delete the old enqueue logs
  5. Swap the enqueue/flush status of the V/E logs so that future transaction log flushes will go to the correct file

Unlike the previous two dual-queue systems, a re-organization of the vertex and edge logs will block flushes from the transaction logs. However, this doesn't adversely affect performance as long as the file operations catch up with the updates

Online backup algorithm

When an online backup operation is triggered through the JMX console, the database performs the following steps:

  1. Trigger a transaction flush and wait for it to complete
  2. Copy the "enqueue" vertex and edge logs to the given backup directory

This algorithm ensures that a valid snapshot of the database is copied to the given backup directory. All transaction log flush operations will wait till step 2 is complete. To restore the database, you simply have to delete the contents of the database directory and overwrite it with the contents of the backup directory.

Asynchronous commits (future)

The first two algorithms (transaction commit and transaction buffer flush) can easily modified to support asynchronous commits for asynchronous server applications. Specifically, the commit method can return after step 6 in the transaction commit algorithm, and step 5 in the transaction buffer flush algorithm can invoke callbacks to the asynchronous application. If you are building an asynchronous server with Bitsy and would like to have this feature, please create an issue.

Note: Asynchronous commits are currently not available in the Blueprints API. However, the API supports the notion of a ThreadedTransactionalGraph which could implement a method such as commit(CallbackInterface).

Updated