1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-08-04 21:42:57 +02:00
Commit Graph

3859 Commits

Author SHA1 Message Date
1599d717af Add option to enable TCP check with Consul registry
One disadvantage of using TTL based health check is the high network
traffic between Consul agent (either between servers, or between server
and client).

In order for the services considered alive by Consul, microservices must
send an update TTL to Consul every n seconds (currently 30 seconds).

Here is the explanation about TTL check from Consul documentation [1]

    Time to Live (TTL) - These checks retain their last known state for a
    given TTL. The state of the check must be updated periodically over
    the HTTP interface. If an external system fails to update the status
    within a given TTL, the check is set to the failed state. This
    mechanism, conceptually similar to a dead man's switch, relies on the
    application to directly report its health. For example, a healthy app
    can periodically PUT a status update to the HTTP endpoint; if the app
    fails, the TTL will expire and the health check enters a critical
    state. The endpoints used to update health information for a given
    check are the pass endpoint and the fail endpoint. TTL checks also
    persist their last known status to disk. This allows the Consul agent
    to restore the last known status of the check across restarts.
    Persisted check status is valid through the end of the TTL from the
    time of the last check.


Hint:

    TTL checks also persist their last known status to disk. This allows
    the Consul agent to restore the last known status of the check
    across restarts.

When microservices update the TTL, Consul will write to disk. Writing to
disk means all other slaves need to replicate it, which means master need
to inform other standby Consul to pull the new catalog. Hence, the
increased traffic.

More information about this issue can be viewed at Consul mailing list [2].

[1] https://www.consul.io/docs/agent/checks.html
[2] https://groups.google.com/forum/#!topic/consul-tool/84h7qmCCpjg
2018-03-14 19:40:59 +07:00
a941a4772b parallel test causes deadlock 2018-03-13 18:50:58 +00:00
dca078f30b Merge pull request #235 from shuLhan/dev-shulhan
Fix warnings from linter output
2018-03-13 18:25:37 +00:00
cbbf9f7e3b [test] service.TestService: run subtest in parallel
Reason: the t.Fatalf and t.Fatal must be invoked by test routine, not by
other routine, or the the test will not stopped [1].

[1] megacheck SA2002
2018-03-13 18:12:42 +07:00
a54dee31de [lint] service.Init: ignore error by assigning it to blank identifier 2018-03-13 17:51:33 +07:00
1bd541b69e service.Run: replace signal SIGKILL with SIGQUIT
According to "os/signal" documentation [1] and libc manual [2], SIGKILL
may not be caught by a program.

[1] https://godoc.org/os/signal
[2] https://www.gnu.org/software/libc/manual/html_node/Termination-Signals.html
2018-03-13 17:45:34 +07:00
e769802939 service.Run: simplify return statement 2018-03-13 17:40:13 +07:00
a3741f8a11 strip namespace from readme 2018-03-09 19:11:42 +00:00
6246fa2bcb Merge pull request #233 from micro/context
switch to stdlib context
v0.5.0
2018-03-04 09:15:25 +00:00
c9b40cb33b switch to stdlib context 2018-03-03 11:53:52 +00:00
982e6068cf support services without version 2018-03-01 17:35:13 +00:00
e8b050ffd5 update travis 2018-03-01 10:07:48 +00:00
13f8e4fef7 nitpick 2018-02-28 15:40:41 +00:00
1fe528c411 update readme 2018-02-28 15:38:50 +00:00
d0d9582b81 Merge pull request #206 from darren-west/master
Added Options() to registry interface
v0.4.0
2018-02-19 20:52:28 +00:00
42bdca63da Merge pull request #230 from micro/watch
Add watch options
2018-02-19 20:29:17 +00:00
02260dcaa3 Add watch options 2018-02-19 17:12:37 +00:00
eb7788ce25 Merge pull request #229 from tudurom/add_conflict_error
errors: Added 409 Conflict helper function
2018-02-13 08:33:22 +00:00
3b6f38a45c errors: Added 409 Conflict helper function 2018-02-11 15:51:33 +02:00
94ea766c9e syntax highlight 2018-02-01 13:54:37 +00:00
ff9ad875af update readme 2018-01-30 16:18:11 +00:00
45420d8413 Merge pull request #224 from dh1tw/rpc-server-subscribe-deadlock
fix possible deadlock since code can return without unlocking the Mutex
v0.3.0
2018-01-02 10:22:13 +00:00
0dcea05fb8 fix possible deadlock since code can return without unlocking the Mutex 2018-01-01 19:57:13 +01:00
b0b0338128 add option to set selector 2017-12-20 21:43:24 +00:00
11d75dae1b remove version from example 2017-11-30 12:28:20 +00:00
fc0bbcd339 change the blurb 2017-11-30 09:16:54 +00:00
c82dadfa55 Merge pull request #221 from gaxxx/master
add https support for consul
2017-11-28 07:11:48 +00:00
7c8d6087de add https support for consul
using enviroment variables

for example:
export CONSUL_HTTP_SSL=1
export CONSUL_HTTP_ADDR="https://example.com"
export CONSUL_CLIENT_CERT="/Users/foo/.ssh/consul/consul.cert"
export CONSUL_CLIENT_KEY="/Users/foo/.ssh/consul/consul.key"
export CONSUL_CACERT="/Users/foo/.ssh/consul/ca.cert"
2017-11-20 15:34:52 +08:00
1f03681d82 set test to use localhost 2017-11-09 14:21:26 +00:00
1c1d46e1ac Add some test logging 2017-11-09 14:16:35 +00:00
a545091c36 update go versions for travis build 2017-11-09 13:52:51 +00:00
ada9ef48cf Remove whitespace 2017-11-09 13:51:40 +00:00
a7c4afac54 Merge pull request #213 from weisd/master
add log when register err
2017-11-09 13:50:38 +00:00
043e4aa979 please stack overflow 2017-11-03 17:30:16 +00:00
78da1fde94 Merge pull request #217 from micro/perf
Performance upgrades
v0.2.0
2017-10-29 14:48:23 +00:00
e7104d609a return the not found error 2017-10-28 16:21:32 +01:00
1890ec7044 rc is not used 2017-10-28 13:55:59 +01:00
d48735793d remove ticker 2017-10-26 21:12:48 +01:00
6fb652f78a lazily start watcher 2017-10-26 20:55:52 +01:00
bd46e60c13 optimise http broker with rcache 2017-10-26 20:48:11 +01:00
42235bc973 Merge branch 'master' into perf 2017-10-26 13:47:09 +01:00
c07b3636c0 update readme 2017-10-26 12:19:42 +01:00
2f09d5830c update readme 2017-10-26 12:18:14 +01:00
48513c78b6 further readme culling 2017-10-26 12:16:17 +01:00
bd34d39401 update readme 2017-10-26 12:02:52 +01:00
59685a4ff9 update readme 2017-10-26 12:02:10 +01:00
6385bf743c add log when register err 2017-10-25 14:23:58 +08:00
8fd8d9bd35 Enable connection pooling and selector caching by default 2017-10-24 15:35:25 +01:00
53554d98cd Merge pull request #209 from uffy/master
use sync.Once instead of chan
2017-10-09 14:09:56 +01:00
f6165f35c0 import sorting 2017-10-09 20:55:03 +08:00