From f985e5172a58fa948d2195f8308f320f0e91e4ba Mon Sep 17 00:00:00 2001 From: Gyuho Lee Date: Mon, 11 Jun 2018 12:23:10 -0700 Subject: [PATCH] CHANGELOG: highlight response size information in slow request Signed-off-by: Gyuho Lee --- CHANGELOG-3.2.md | 3 ++- CHANGELOG-3.3.md | 3 ++- CHANGELOG-3.4.md | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG-3.2.md b/CHANGELOG-3.2.md index acd919445..585227e41 100644 --- a/CHANGELOG-3.2.md +++ b/CHANGELOG-3.2.md @@ -10,8 +10,9 @@ See [code changes](https://github.com/coreos/etcd/compare/v3.2.22...v3.2.23) and ### Improved - Improve [slow request apply warning log](https://github.com/coreos/etcd/pull/9288). - - e.g. `request "header: put:" took too long (59.798µs) to execute`. + - e.g. `read-only range request "key:\"/a\" range_end:\"/b\" " with result "range_response_count:3 size:96" took too long (97.966µs) to execute`. - Redact [request value field](https://github.com/coreos/etcd/pull/9822). + - Provide [response size](https://github.com/coreos/etcd/pull/9826). ### Go diff --git a/CHANGELOG-3.3.md b/CHANGELOG-3.3.md index 28727014a..1ea1976fb 100644 --- a/CHANGELOG-3.3.md +++ b/CHANGELOG-3.3.md @@ -10,8 +10,9 @@ See [code changes](https://github.com/coreos/etcd/compare/v3.3.6...v3.3.8) and [ ### Improved - Improve [slow request apply warning log](https://github.com/coreos/etcd/pull/9288). - - e.g. `request "header: put:" took too long (59.798µs) to execute`. + - e.g. `read-only range request "key:\"/a\" range_end:\"/b\" " with result "range_response_count:3 size:96" took too long (97.966µs) to execute`. - Redact [request value field](https://github.com/coreos/etcd/pull/9822). + - Provide [response size](https://github.com/coreos/etcd/pull/9826). ### Go diff --git a/CHANGELOG-3.4.md b/CHANGELOG-3.4.md index 8ae55c597..c2cd6a17f 100644 --- a/CHANGELOG-3.4.md +++ b/CHANGELOG-3.4.md @@ -12,8 +12,9 @@ See [code changes](https://github.com/coreos/etcd/compare/v3.3.0...v3.4.0) and [ - Rewrite [client balancer](TODO) with [new gRPC balancer interface](TODO). - Add [jitter to watch progress notify](https://github.com/coreos/etcd/pull/9278) to prevent [spikes in `etcd_network_client_grpc_sent_bytes_total`](https://github.com/coreos/etcd/issues/9246). - Improve [slow request apply warning log](https://github.com/coreos/etcd/pull/9288). - - e.g. `request "header: put:" took too long (59.798µs) to execute`. + - e.g. `read-only range request "key:\"/a\" range_end:\"/b\" " with result "range_response_count:3 size:96" took too long (97.966µs) to execute`. - Redact [request value field](https://github.com/coreos/etcd/pull/9822). + - Provide [response size](https://github.com/coreos/etcd/pull/9826). - Improve [TLS setup error logging](https://github.com/coreos/etcd/pull/9518) to help debug [TLS-enabled cluster configuring issues](https://github.com/coreos/etcd/issues/9400). - Improve [long-running concurrent read transactions under light write workloads](https://github.com/coreos/etcd/pull/9296). - Previously, periodic commit on pending writes blocks incoming read transactions, even if there is no pending write.