-
Bug report criteria
What happened?Hi, Example: {'timestamp':'2023-06-07T17:33:12.218Z','level':'warn','caller':'etcdserver/v3_server.go:840','sent-request-id':12752936093112128921,'retry-timeout':'500ms','ts':'2023-06-07T17:33:12.218Z','@Version':'1','msg':'waiting for ReadIndex response took too long, retrying','metadata':{'pod_uid':'5c313bfb-4ec5-46f7-971e-cd4ac8b12767','node_name':'node-1','container_name':'ab','namespace':'ns','pod_name':'abc'} What did you expect to happen?We expect the value of 'sent-request-id' to be in the range of uint64, and not exceed the same. How can we reproduce it (as minimally and precisely as possible)?Just by performing normal installation and parsing the mentioned JSON field. Anything else we need to know?No response Etcd version (please run commands below)$ etcd --version
etcd Version: 3.5.5
Git SHA: 19002cfc6
Go Version: go1.16.15
Go OS/Arch: linux/amd64
$ etcdctl version
etcdctl version: 3.5.5
API version: 3.5
Etcd configuration (command line flags or environment variables)paste your configuration hereEtcd debug information (please run commands below, feel free to obfuscate the IP address or FQDN in the output)$ etcdctl member list -w table
# paste output here
$ etcdctl --endpoints=<member list> endpoint status -w table
# paste output here Relevant log output{'timestamp':'2023-06-07T17:33:12.218Z','level':'warn','caller':'etcdserver/v3_server.go:840','sent-request-id':12752936093112128921,'retry-timeout':'500ms','ts':'2023-06-07T17:33:12.218Z','@version':'1','msg':'waiting for ReadIndex response took too long, retrying','metadata':{'pod_uid':'5c313bfb-4ec5-46f7-971e-cd4ac8b12767','node_name':'node-1','container_name':'ab','namespace':'ns','pod_name':'abc'} |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @ankitg-03 - Thanks for raising this question. I might be missing something but The example you have provided, |
Beta Was this translation helpful? Give feedback.
Hi @ankitg-03 - Thanks for raising this question.
I might be missing something but
uint64
is the set of all unsigned 64-bit integers (0
to18446744073709551615
). Refer to https://go.dev/ref/spec#Numeric_types.The example you have provided,
12752936093112128921
is ~5 quintillion less than18446744073709551615
?