Merge pull request #1571 from druid-io/add-md

Add setup to metadata store page
This commit is contained in:
Charles Allen 2015-07-28 11:38:02 -07:00
commit 5086490620
1 changed files with 16 additions and 0 deletions

View File

@ -16,6 +16,22 @@ The following metadata storages are supported:
To choose a metadata storage to use, set the `druid.extensions` config to include the module for the metadata storage.
## Set up MySQL
1. If you don't already have it, download MySQL Community Server here: [http://dev.mysql.com/downloads/mysql/](http://dev.mysql.com/downloads/mysql/).
2. Install MySQL.
3. Create a druid user and database.
```bash
mysql -u root
```
```sql
GRANT ALL ON druid.* TO 'druid'@'localhost' IDENTIFIED BY 'diurd';
CREATE DATABASE druid DEFAULT CHARACTER SET utf8;
```
Segments Table
--------------