Merge branch 'mysql-0.3.0' into 'branch-0.3.0'

MS-105 - Add MySQL

See merge request megasearch/vecwise_engine!138

Former-commit-id: f4c914178920f93a5136065b2ea19340be3d20d8
pull/191/head
jinhai 2019-06-30 16:09:43 +08:00
commit 80ccdf18e7
1 changed files with 6 additions and 1 deletions

View File

@ -6,7 +6,12 @@ server_config:
db_config:
db_path: @MILVUS_DB_PATH@ # milvus data storage path
db_backend_url: http://127.0.0.1 # meta database uri
# URI format: dialect://username:password@host:port/database
# All parts except dialect are optional, but you MUST include the delimiters
# Currently dialect supports mysql or sqlite
db_backend_url: dialect://username:password@host:port/database # meta database uri
index_building_threshold: 1024 # index building trigger threshold, default: 1024, unit: MB
archive_disk_threshold: 512 # triger archive action if storage size exceed this value, unit: GB
archive_days_threshold: 30 # files older than x days will be archived, unit: day