2015-05-05 17:07:32 -04:00
---
layout: doc_page
---
# Metadata Storage
2015-08-21 16:17:01 -04:00
The Metadata Storage is an external dependency of Druid. Druid uses it to store
various metadata about the system, but not to store the actual data. There are
a number of tables used for various purposes described below.
2015-05-05 17:07:32 -04:00
2015-08-21 16:17:01 -04:00
## Supported Metadata Storages
2015-05-05 17:07:32 -04:00
2015-08-21 16:17:01 -04:00
The following metadata storage engines are supported:
2015-05-05 17:07:32 -04:00
2016-01-20 21:46:26 -05:00
* Derby (default, but not suitable for production)
* MySQL
* PostgreSQL
Even though Derby is the default, it works only if you have all Druid
processes running on the same host, and should be used only for experimentation.
For production, MySQL or PostgreSQL should be used.
To choose the metadata storage type, set `druid.metadata.storage.type` to
`mysql` , `postgres` or `derby` .
Set other `druid.metadata.storage` configuration
keywords as shown below to give Druid information about how to connect to
the database.
As discussed in [Including Extensions ](../operations/including-extensions.html ),
there are two ways for giving Druid the extension files it needs for the
database you are using.
The first is to put the extension files in the classpath. The second is to
put the extension files in a subdirectory of
`druid.extensions.directory` (by default `extensions` under the Druid working directory) and list the subdirectory name in
`druid.extensions.loadList` . The example properties below show the second
way.
2015-07-28 14:36:48 -04:00
2015-08-21 16:17:01 -04:00
## Setting up MySQL
2015-07-28 14:36:48 -04:00
2015-08-21 16:17:01 -04:00
1. Install MySQL
2015-07-28 14:36:48 -04:00
2015-08-21 16:17:01 -04:00
Use your favorite package manager to install mysql, e.g.:
- on Ubuntu/Debian using apt `apt-get install mysql-server`
- on OS X, using [Homebrew ](http://brew.sh/ ) `brew install mysql`
2015-07-28 14:36:48 -04:00
2015-08-21 16:17:01 -04:00
Alternatively, download and follow installation instructions for MySQL
Community Server here:
[http://dev.mysql.com/downloads/mysql/ ](http://dev.mysql.com/downloads/mysql/ )
2. Create a druid database and user
Connect to MySQL from the machine where it is installed.
```bash
> mysql -u root
```
Paste the following snippet into the mysql prompt:
```sql
-- create a druid database, make sure to use utf8 as encoding
CREATE DATABASE druid DEFAULT CHARACTER SET utf8;
-- create a druid user, and grant it all permission on the database we just created
GRANT ALL ON druid.* TO 'druid'@'localhost' IDENTIFIED BY 'diurd';
```
3. Configure your Druid metadata storage extension:
Add the following parameters to your Druid configuration, replacing `<host>`
2016-01-20 21:46:26 -05:00
with the location (host name and port) of the database.
2015-08-21 16:17:01 -04:00
```properties
2015-07-07 23:51:44 -04:00
druid.extensions.loadList=["mysql-metadata-storage"]
2015-08-21 16:17:01 -04:00
druid.metadata.storage.type=mysql
2016-01-20 21:46:26 -05:00
druid.metadata.storage.connector.connectURI=jdbc:mysql://< host > /druid
2015-08-21 16:17:01 -04:00
druid.metadata.storage.connector.user=druid
druid.metadata.storage.connector.password=diurd
```
2016-01-20 21:46:26 -05:00
Note: the metadata storage extension is not packaged within the main Druid tarball; it is
2015-07-07 23:51:44 -04:00
packaged in a separate tarball that can be downloaded from [here ](http://druid.io/downloads.html ).
2016-01-20 21:46:26 -05:00
You can also get it using [pull-deps ](../pull-deps.html ), or you can build
it from source code; see [Build from Source ](../development/build.html ).
2015-07-07 23:51:44 -04:00
2015-08-21 16:17:01 -04:00
## Setting up PostgreSQL
1. Install PostgreSQL
Use your favorite package manager to install PostgreSQL, e.g.:
- on Ubuntu/Debian using apt `apt-get install postgresql`
- on OS X, using [Homebrew ](http://brew.sh/ ) `brew install postgresql`
2. Create a druid database and user
On the machine where PostgreSQL is installed, using an account with proper
postgresql permissions:
Create a druid user, enter `diurd` when prompted for the password.
```bash
createuser druid -P
```
Create a druid database owned by the user we just created
```bash
createdb druid -O druid
```
*Note:* On Ubuntu / Debian you may have to prefix the `createuser` and
`createdb` commands with `sudo -u postgres` in order to gain proper
permissions.
3. Configure your Druid metadata storage extension:
Add the following parameters to your Druid configuration, replacing `<host>`
2016-01-20 21:46:26 -05:00
with the location (host name and port) of the database.
2015-08-21 16:17:01 -04:00
```properties
2015-07-07 23:51:44 -04:00
druid.extensions.loadList=["postgresql-metadata-storage"]
2015-08-21 16:17:01 -04:00
druid.metadata.storage.type=postgresql
2016-01-20 21:46:26 -05:00
druid.metadata.storage.connector.connectURI=jdbc:postgresql://< host > /druid
2015-08-21 16:17:01 -04:00
druid.metadata.storage.connector.user=druid
druid.metadata.storage.connector.password=diurd
```
2016-01-20 21:46:26 -05:00
## Using derby
Add the following to your Druid configuration.
```properties
druid.metadata.storage.type=derby
druid.metadata.storage.connector.connectURI=jdbc:derby://localhost:1527//home/y/var/druid_state/derby;create=true
```
2015-08-21 16:17:01 -04:00
## Metadata Storage Tables
2015-07-28 14:36:48 -04:00
2015-08-21 16:17:01 -04:00
### Segments Table
2015-05-05 17:07:32 -04:00
This is dictated by the `druid.metadata.storage.tables.segments` property.
2015-08-21 16:17:01 -04:00
This table stores metadata about the segments that are available in the system.
The table is polled by the [Coordinator ](../design/coordinator.html ) to
determine the set of segments that should be available for querying in the
system. The table has two main functional columns, the other columns are for
indexing purposes.
2015-05-05 17:07:32 -04:00
2015-08-21 16:17:01 -04:00
The `used` column is a boolean "tombstone". A 1 means that the segment should
be "used" by the cluster (i.e. it should be loaded and available for requests).
A 0 means that the segment should not be actively loaded into the cluster. We
do this as a means of removing segments from the cluster without actually
removing their metadata (which allows for simpler rolling back if that is ever
an issue).
2015-05-05 17:07:32 -04:00
The `payload` column stores a JSON blob that has all of the metadata for the segment (some of the data stored in this payload is redundant with some of the columns in the table, that is intentional). This looks something like
```
{
"dataSource":"wikipedia",
"interval":"2012-05-23T00:00:00.000Z/2012-05-24T00:00:00.000Z",
"version":"2012-05-24T00:10:00.046Z",
"loadSpec":{"type":"s3_zip",
"bucket":"bucket_for_segment",
"key":"path/to/segment/on/s3"},
"dimensions":"comma-delimited-list-of-dimension-names",
"metrics":"comma-delimited-list-of-metric-names",
"shardSpec":{"type":"none"},
"binaryVersion":9,
"size":size_of_segment,
"identifier":"wikipedia_2012-05-23T00:00:00.000Z_2012-05-24T00:00:00.000Z_2012-05-23T00:10:00.046Z"
}
```
Note that the format of this blob can and will change from time-to-time.
2015-08-21 16:17:01 -04:00
### Rule Table
2015-05-05 17:07:32 -04:00
2015-08-21 16:17:01 -04:00
The rule table is used to store the various rules about where segments should
land. These rules are used by the [Coordinator ](../design/coordinator.html )
when making segment (re-)allocation decisions about the cluster.
2015-05-05 17:07:32 -04:00
2015-08-21 16:17:01 -04:00
### Config Table
2015-05-05 17:07:32 -04:00
2015-08-21 16:17:01 -04:00
The config table is used to store runtime configuration objects. We do not have
many of these yet and we are not sure if we will keep this mechanism going
forward, but it is the beginnings of a method of changing some configuration
parameters across the cluster at runtime.
2015-05-05 17:07:32 -04:00
2015-08-21 16:17:01 -04:00
### Task-related Tables
2015-05-05 17:07:32 -04:00
2015-08-21 16:17:01 -04:00
There are also a number of tables created and used by the [Indexing
Service](../design/indexing-service.html) in the course of its work.
2015-05-05 17:07:32 -04:00
2015-08-21 16:17:01 -04:00
### Audit Table
2015-05-05 17:07:32 -04:00
2015-08-21 16:17:01 -04:00
The Audit table is used to store the audit history for configuration changes
e.g rule changes done by [Coordinator ](../design/coordinator.html ) and other
config changes.
2015-12-27 17:25:17 -05:00
+
+##Accessed By: ##
+
+The Metadata Storage is accessed only by:
+
+1. Realtime Nodes
2. Indexing Service Nodes (if any)
+3. Coordinator Nodes
+
+Thus you need to give permissions (eg in AWS Security Groups) only for these machines to access the Metadata storage.