The BangDB stack is as below, some of these will be covered in the subsequent sections. The entire stack is built from ground up. Every layer, component has been designed and implemented from scratch with the same set of goals in mind. If you view it from the bottom one to top one, there are several sets of components seem stacked over others, which may not be completely accurate and most of these are intertwined as well and cuts across several layer. For ex, security is common layer which wraps all other components. Similarly, the data fabric wraps the entire stack for distributing it in p2p manner.

The BangDB Stack

One of the major issues with the other databases in the market is the way they restrict the access to file system for majority of their run time to meet the performance requirement. In-memory only concept is just to enforce the same. Since the data is always in the memory or we deal with only that much of data that can fit in the memory, so we will have to not so much focus on IO part of the process. But the data grows at much higher rate than the availability of RAM for the same cost. Which means cost spirals quite fast to the point that it becomes the central point for the data processing, which is insane.

  • In memory computing is a bug and not a feature
  • Data size is increasingly outpacing available memory.
  • In memory is costly, brittle, doesn't scale and isn't feasible anymore.
The BangDB Stack Volume

But BangDB is a persistent database which handles data lot more than available memory on the server. Which means it overflows the data from memory to disk and brings in from disk to memory as and when required. This it does while maintaining the performance of the database. This is quite hard, and it requires lots of things to be done for the implementation. But once implemented, then the benefits are also quite impressive.

  • This reduces the cost by a huge margin, by reducing amount of memory needed by the database. So, to handle 100GB of data, like other database we won't need 100GB of RAM, we could handle it with 16 or 32 GB of RAM in high performance manner.
  • The database doesn't stop accepting more data once the RAM is full like many databases in the market, instead BangDB simply overflows some data to disk in intelligent manner to handle more data at run time.
  • Scaling of the system is quite flexible and supple, instead of being brittle with other databases, which brings the system down until the scaling is handled.
  • BangDB leverages available resources in much better way, this reduces the cost, avoid upfront bloating of resources etc.

IO Layer

Therefore, BangDB implements its own IO Layer, which is part of BangDB stack and manages the data flow in bi-directional manner. BangDB further innovates and implements a unique approach of treating SSD as extension of virtual memory rather than a replacement of filesystem, logically. This allows us to overflow to from memory to disk in much efficient manner which keeps the performance of the database in an acceptable bound thereby enabling applications to ingest and process data in an unbounded manner.

  • SSD has 0 seek time but it's still a block device.
  • TPS SSD is close to the TPS of HDD in sequential case.
  • Random writes deteriorate the device, could get slower as well, 3 step process.
  • Best performance gain is in few factors range.
  • Cost may go high significantly to achieve decent performance gain.
  • BangDB uses SSD as logical extension of Memory and not as replacement of Filesystem.
  • Software is written for logical fusion of MEM + SSD.
  • Advantage is huge compared to typical usage of SSD.
  • Significant gains in Elasticity, cost, speed, performance
  • Adding SSD could seem partial addition of memory in terms of performance.

IO-layer for high performance data processing beyond memory

  • SSD as logical extension of memory
  • Provides elasticity when it comes to deal with huge volume of data.
  • Makes it cost efficient by reducing pressure on RAM all the time.
The BangDB Stack 2

Buffer Pool and Page Cache

But this may not work if we don't have control on each byte that gets written into and read from the database. Hence BangDB also implements its own Buffer pool and Page cache. These give undue advantages to the database when it comes to data handling in an efficient manner. Like operating system, BangDB implements its own buffer pool to get the full control of the data. This is to avoid delegation of this ownership to operating system which may not have full information about the data that BangDB has, therefore may impact the performance and efficiency of the system.

The BangDB Stack 3

BangDB may be the only database to have implemented IO-Layer with SSD as RAM+ for high performance with Out-of-memory option.

The BangDB Stack 3

Memory Management

  • Buffer pool, page cache
  • Adaptive page prefetch, flush
  • SlabAlloc, memory budget
  • Very few DB has this
  • Total control of the data within db

Memory handling - Slab Allocator

The other important factor in high performance systems is the ability to handle memory well. It would be best if we don't have to deal with creating memory on heap and deleting it after the use. Also, it would be amazing if we don't copy data but copy the reference to the data, etc. For such purposes, BangDB implements its own Slab Allocator for better memory handling at run time.

WAL, Durability

To avoid syncing data all the time to the file system for every read, BangDB implements write ahead logging (WAL). Random read and writes are costly, but sequential is fine as far as HDD is considered. Therefore, instead of writing randomly on filesystem, database writes the operation log into a sequential every increasing file, called write ahead log file. This allows database page cache or buffer pool to simply not bother about the data in-memory to be synced with the disk all the time for every operation.

BangDB write ahead log is based on Aries algorithm, but it extends it to improve the performance and scope. This also allows us to recover from any crash, process, server, or any other kind of crash of the system. The crash recovery in BangDB is automated, DB checks if it needs to recover any data and it simply recovers it as required. Checkpointing further limits the amount of data to be recovered in case of any eventuality.

Hardware utilization with true concurrency

To leverage the machine or vm well, we need to leverage the resources available on the machine well. This is a known case that users and organizations can cut down the expense on the infra cost by over 50% if they have software and systems that leverage the available resource well within the machine, before demanding another server for scale. This for database, comes down to a few simple facts. Is the database concurrent? Is it concurrent for both read and write.

By concurrency, it doesn't mean if the operations are synchronized or not. It means is the database using all cores/cpus/threads available on the server in concurrent manner. It means is the code written for multiple threads to enter and execute in parallel as much as possible. It means is the algorithm implemented inside database fully capable of running in parallel. It means are the operations running in sequential mode or parallel mode wherever it can. And these are hard questions. Hard because it's extremely hard to write such code, especially within database at the core level. And that's why many databases, including very popular ones, don't do this properly. In fact, a majority of these don't have writes fully concurrent. This limits the optimal use of the server. It also limits the performance, and it bloats the cost in the end.

BangDB is fully concurrent, for both read and write, for all operations at the core of the database. The entire algorithm and constructs are fully multithreaded and concurrent.

Transaction

BangDB implements database transaction. It uses OCC (Optimistic Concurrency Control) to provide the transaction support. The user can set configuration to switch it On or Off as per their need. Also, the buffer size allocation for the same is configurable too. ACID support for read write is provided with the help of familiar transaction constructs. OCC transaction is known to have better performance and throughputs.

Index

The searchability and quotability of data depends on how the keys are arranged withing the database. There are primary and secondary keys predominantly. And then there are free text search that indexes all the tokens. BangDB supports all.

For primary and secondary keys, we can have two different arrangements, ExtHASH (extensible hash+) and B+linkTree (BTREE with links). Most of the time, BTREE works well as this supports range queries too. But in some cases when we don't have range query requirements then EHASH is works better. Secondary keys are properties in the document or events or node/relation that we are storing, and we would like to use these properties values for query. These indexes can also be arranged using BTREE or EHASH (default is BTREE). The free text search is enabled using the stemming, tokenization and indexing these tokens. The query using these secondary indexes are all abstracted and DB takes care of these implicitly.

B+LinkTree - BangDB

B+LinkTree

Ext+Hash - BangDB

Ext+Hash

Each of these indexes can be simple or composite. Simple index uses just the token as complete index key, whereas for composite index, several tokens come together to form a key. This can be used for enhanced performance in many cases if used properly. In fact, BangDB uses composite indexes extensively for building several features and apps as required.

Index

Primary & secondary indexes
Simple, composite, nested index
Reverse index, geospatial index
No limit on number of indexes
Primary:      pk
Secondary:    name, place, group, etc…
Composite:    name:group:country
Nested: 	    {players:{cricket:{team:{ …
Reverse: 	    "text that will be rev indexed…"
Geospatial:   {lat:, lon:, distance: }
Vector: 	    [1,0,2,…]

Scan & search

Scan of data using primary, secondary indexes
Join tables using any indexes, any algebra
Recursive scan - powerful concept, for any index combination scan
•	Scan(pk1, pk2, query);
•	Scan(name:group:*);
•	Arithmetic on resultset [ Add, append, intersect]
•	While(true)
  o	Scan();

Further BangDB also implements and support Nested index and Geospatial index. Nested index is for the documents where the key is nested somewhere in the document. The key could be repeated as well, in fact BangDB supports repeated elements within the JSON doc (although the JSON doc doesn't support this but in real world, we see such data). The geospatial index is for search based on location, boundary, distance in the real world.