# VanillaCore

Build Status Apache 2.0 License Maven Central

VanillaCore is a single node, multi-threaded relational database engine that partially supports the SQL-92 standard and offers connectivity via JDBC, embedding, or (Java-based) stored procedures.

Required Tools

You will need the following tools to compile and run this project:

Getting Started

This tutorial will teach you how to start up a database server and interact with it.

Compiling the source and package them to a jar

This project is a maven project. You can compile the source and package the classes to a jar file via a single command using Maven:

(Note that this command also triggers testing phase, which will run all test cases in this project. You can skip testing phase using the next command.)

> mvn package

Running the test cases may take very long time (about 3 minutes in our case). If you want to skip the testing phase, use the this command instead:

> mvn package -Dmaven.test.skip=true

The jar file will be named as core-0.4.0.jar and in the target folder of the project.

Starting up a VanillaCore server

To start up a VanillaCore server, use the following command:

(Please replace {DB Name} with your database name, which will be the name of the folder of your database files)

> java -classpath core-0.4.0.jar org.vanilladb.core.server.StartUp {DB Name}

If it works correctly, you should see database server ready like this:

Aug 09, 2016 3:27:55 PM org.vanilladb.core.server.StartUp main
INFO: database server ready

After starting up, VanillaCore creates a directory named as {DB Name} for the databases under your home directory (which is C:/Users/{Your Username} in Windows, /home/{Your Username} in Mac or most Linux distribution).

Using SQL Interpreter

Let’s try to connect to your database server.

The server provides a JDBC interface, which you can connect to with any JDBC client. Or, you can use our simple interpreter to send the SQL commands to the server.

To start up a SQL interpreter, use the following command:

> java -classpath core-0.4.0.jar org.vanilladb.core.util.ConsoleSQLInterpreter

Now you should see a console prompt like:

SQL> _

After you enter the SQL console, you may start to give some SQL commands for interaction with the server. VanillaCore supports basic commands defined in SQL-92 standard. To see what exactly commands you can use, please check out VanillaDB SQL document.

System Configurations

VanillaCore provides some configurable settings. These settings can be found in properties file vanilladb.properties which located in src\main\resources\org\vanilladb\core. After you compile and package the classes using Maven, the properties file will be copied to target\properties\org\vanilladb\core. When a VanillaCore server starts up, it will search the properties file in properties\org\vanilladb\core under the same directory. Therefore, if you want to adjust the settings after packaging the classes, you have to modify the one in the target\properties\org\vanilladb\core.

We assume that the jar file and the properties files are always in the same directory. If they are not, VanillaCore will use the default values for all settings.

You can also put the properties file at other location. To make VanillaCore know where the file is, you need to specify the path as an argument of the JVM while starting up a server:

> java -Dorg.vanilladb.core.config.file={path to vanilladb.properties} -classpath core-0.4.0.jar org.vanilladb.core.server.StartUp {DB Name}

Remember to replace {path to vanilladb.properties} to the path of the file.

Modifying Configurations

First, find an editor to open properties file vanilladb.properties. Each line in the file is a key-value pair for a configuration. To modify a configuration, just update the value behind =.

Commonly Used Configurations

Here are some commonly used configurations:

VanillaCore stores records in files. To adjust the size of physical blocks used by the database (default: 4096 bytes):

org.vanilladb.core.storage.file.Page.BLOCK_SIZE=4096

To adjust the location of the database files (default: the home directory of the current user):

org.vanilladb.core.storage.file.FileMgr.DB_FILES_DIR=

To adjust the number of the buffers which cache the blocks of the files in the memory (default: 1024):

org.vanilladb.core.storage.buffer.BufferMgr.BUFFER_POOL_SIZE=1024

To enable the periodically checkpointing (default: true):

org.vanilladb.core.server.VanillaDb.DO_CHECKPOINT=true

You can find more available configurations and corresponding descriptions in vanilladb.properties.

Supported Syntax

Please checkout our VanillaDB SQL document.

Architecture Tutorials

We have a series of educational slides to make the people who are not familiar with database internal architecture understand how a database works. Here is the outline of the our slides:

Linking via Maven

<dependency>
  <groupId>org.vanilladb</groupId>
  <artifactId>core</artifactId>
  <version>0.4.0</version>
</dependency>

Contributing

To contribute to VanillaCore, please see CONTRIBUTING.

Contact Information

If you have any question, you can either open an issue here or contact [email protected] directly.

License

Copyright 2016-2020 vanilladb.org contributors

Licensed under the Apache License 2.0