jvgutierrez / godan

A distributed and scalable service discovery tool

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

godan-dist

WIP

godanserver backends

Right now godanserver support the following backends:

  • MySQL
  • ElasticSearch

To switch between backends you need to modify the godanserver config file (godanserver.toml) and set the right Type value ### MySQL config

[DB]
Type = "mysql"
Host = "db"
Port = "3306"
Username = "godan"
Password = "change_this_pwd!"
Name = "godan"

### ElasticSearch config

[DB]
Type = "elasticsearch"
Host = "db"
Port = "9200"
Username = "godan"
Password = "change_this_pwd!"
Name = "godan"

Note: ElasticSearch currently ignores Username & Password parameters

About

A distributed and scalable service discovery tool

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Go 52.5%Language:JavaScript 22.3%Language:HTML 19.9%Language:CSS 2.9%Language:Makefile 1.0%Language:Shell 0.8%Language:Erlang 0.6%