MillenniumDB is a graph oriented database management system developed by the Millennium Institute for Foundational Research on Data (IMFD).
MillenniumDB was created because we though the existent graph models were not enough to represent efficiently the real world data as a graph.
Our main objective with this project is to be a fully functional, easy-to-extend system that serves as the basis for testing new techniques and algorithms related to databases and graphs.
- A flexible and more expressive graph data mode.
- Efficient property paths solving.
- Worst case optimal join algorithm.
This project is in an early stage of development and is not production ready yet, as it may contain bugs. Also, there are some features we think are important for a graph database and are not supported yet. However we want them to be supported in the future:
- A database can't be modified after its created.
- Only well-designed patterns are supported when using the
OPTIONAL
operator. - More datatypes for properties values, e.g: dates, points and lists.
- Filters only support basic operations (<, <=, ==, != >=, >). We would like to support pattern matching and functions.
MillenniumDB should be able to be built in any x86-64 linux distribution. If you work on windows, you can use Windows Subsystem for Linux (WSL).
-
Install prerequisites to compile:
- Boost Library version 1.71.0 or newer
- Gcc version 8.1 or newer
- Cmake version 3.10 or newer
For distributions based on Ubuntu 20.04 or newer this can be done by running:
sudo apt update
sudo apt install bzip2 git g++ cmake libboost-all-dev gdb
Other linux distributions may need to install the prerequisites differenlty. Some distributions might have repositories with too old versions and the project won't compile, in that case you'll need to manually install the appropiate versions.
-
Clone this repository and enter to the 'MillenniumDB' folder:
-
Build the project:
cmake -Bbuild/Release -DCMAKE_BUILD_TYPE=Release && cmake --build build/Release/
The command to create a new database looks like this:
build/Release/bin/create_db [path/to/import_file] [path/to/new_database_folder]
For instance, if you want to create a database into the folder tests/dbs/snb
using the example we provide in tests/dbs/snb.txt
you need to run:
bzip2 -k -d tests/dbs/snb.txt.bz2
(to decompress the example file)build/Release/bin/create_db tests/dbs/snb.txt tests/dbs/snb -b 1048576
To delete a database just manually delete the created folder: rm -r [path/to/database_folder]
.
We implement the typical a client/server model, so in order to query a database, you need to have a server running and then send queries to it.
build/Release/bin/server [path/to/database_folder]
build/Release/bin/query < [path/to/query_file]