vulcand
vulcand copied to clipboard
Programmatic load balancer backed by Etcd
`-etcd=[] # etcd - list of etcd discovery service API servers` The aktual syntax to provide a list is uncelar, I tried - `[xxx yyy]` --> fail - `xxx,yyy` -->...
Right with only one etcd instanced defined in vulcand, if that instance goes down, the etcd cluster is fine, yet all my load balancers will not be operational. I have...
We ran into situation there we need to release resources allocated by middleware handler. In details we create [sql.DB](http://golang.org/pkg/database/sql/#DB) object in NewHandler. Simplistically DB is a connection pool which must...
I run Vulcand in a docker container, controlled by systemd. I've noticed it panics sometimes when Systemd shuts it down. The following is an example log showing an unclean shutdown:...
It'd be great to see a smaller docker image. vulcand image is roughly 2x the size of my other containers. I notice that the Go build environment is bundled with...
Now I use this rule: ``` {"Type": "http", "BackendId": "www_test", "Route": "Host(`example.com`) && PathRegexp(`/.*`)"} ``` I want to restrict access from external addresses through the remote_addr variable ``` {"Type": "http",...
I have a use case for vulcand as a consistent hashing proxy, where each request needs to be routed among multiple backends on a hashring. The hashring is dynamic and...
Here is my use case: I have two point route: one is configured manual(about dozens, use regexp), the other is stored by mysql(about thousands, full matching). So I just want...
Hello, does vulcand support SSL client authentication towards a backend server? Thanks for your answer. Regards, Michael Stephan
Hi, It says in the documentation that vulcand can transparently decrypt data stored in the backend, however it's not clear to me how this can be used to serve arbitrary...