Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/msdeep14/deepdatabase
A relational database engine using B+ tree indexing
https://github.com/msdeep14/deepdatabase
algorithms b-plus-tree bplus-tree bplustree btree-indexes cpp data-storage database development indexing mysql-database relational-databases search-algorithm
Last synced: 2 months ago
JSON representation
A relational database engine using B+ tree indexing
- Host: GitHub
- URL: https://github.com/msdeep14/deepdatabase
- Owner: msdeep14
- License: gpl-3.0
- Created: 2017-04-08T19:41:43.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-08-08T05:49:44.000Z (over 3 years ago)
- Last Synced: 2024-10-11T06:05:31.251Z (2 months ago)
- Topics: algorithms, b-plus-tree, bplus-tree, bplustree, btree-indexes, cpp, data-storage, database, development, indexing, mysql-database, relational-databases, search-algorithm
- Language: C++
- Homepage: https://msdeep14.github.io/projects/deepdatabase.html
- Size: 6.96 MB
- Stars: 42
- Watchers: 4
- Forks: 11
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DeepDataBase
#### A Relational database model, data storage based on B+ tree indexing
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
*initial development* : [MiniDataBase](https://github.com/msdeep14/MiniDataBase)
References from - https://github.com/Bug-Assassins/DFC_query_builder
## QUERIES SUPPORTED BY SYSTEM
1. SHOW Tables
2. CREATE Table
3. INSERT INTO Table
4. DISPLAY Table contents
5. SEARCH INTO Table
6. DROP Table## SYSTEM DESIGN
The Database System is designed using C++ programming language.
It stores the data on physical disk using files.Features of system include:
#### 1. Custom Blocks for each table:
The data is stored in blocks.Benefits of block storage: [here](https://en.wikipedia.org/wiki/Block_(data_storage))
All the separate row data of a particular table is stored in different file creating blocks of data. System reads as well as writes data back to files in blocks.
#### 2. B+ Tree Indexing:
A separate multilevel B+ tree is created for each table. Each node contains maximum of 50 entries. Right now data storage is based only on primary key, primary key can be INTEGER or VARCHAR. By default, first column is choosen as primary key.#### 3. Storing Meta Data of Tables:
Meta Data of the tables are stored separately which provides quick access to several information like current number of records, table name, etc.
#### 4. Search:##### 1. B+ Indexed Search
For searching a record in file for particular table, B+ tree indexed search is implemented. B+ indexed search is based on primary key
##### 2. Brute Force Search
For searching records without providing primary key from table, brute force search algorithm is implemented. You can display selected number of columns and limit results based on where clause(see section In Development below).
Advantages of B+ Tree Indexing [here](https://www.tutorialcup.com/dbms/b-plus-tree.htm)
System also calculates the time taken by the search algorithm.
## DEVELOPMENT:
The whole project is initially done on eclipse platform(C/C++ perspective)-> in repo [MiniDataBase](https://github.com/msdeep14/MiniDataBase)Further modifications are done on Ubuntu System, [Atom](https://atom.io/) editor. Recent project is compiled on MacOS X.
For execution: Open directory DeepDatabase(branch:master) and on terminal
1. Type **make clean** to clean all binary files.
2. Type **make**, it will compile the project.
3. Type **./deepdb -u user -p** for running project. Password is `pass`## IN DEVELOPMENT:
For displaying the table contents, you have to select option 5 from menu and the queries supported by it are, do care about syntax, since complete parser is not implemented.select * from table_name;
select id,name from table_name;
select id,name from table_name where id = 1;
## CONTRIBUTE:
You can contribute in following modules:1. parser implementation
2. AES encryption of data, in branch dev-aes
3. Suggestion for more efficient implementation