Orphaned Requests Logging
- how-to
In addition to request tracing and metrics reporting, logging orphaned requests provides additional insight into why an operation might have timed out (or got cancelled for a different reason).
While tracing and metrics can also be consumed through external interfaces, getting information about orphaned requests only works through the built-in mechanisms.
The way it works is that every time a response is in the process of being completed, when the SDK detects that the original caller is not listening anymore (likely because of a timeout), it will send this "orphaned" response to a reporting utility which aggregates all responses and in regular intervals logs them in a specific format.
When you spot an ErrTimeout
in your log file, you can look for the output of the OrphanReporter
and correlate the information.
Output Format
The OrphanReporter
detects orphaned requests and creates a log entry for each, which in turn are going to be logged alongside all other SDK logs.
Since orphans usually indicate a state that is not desirable, the log level for those events is WARN
.
By default, they will be aggregated and logged every 10 seconds, but the event will be skipped if there are no orphans to report.
This makes sure that the log line will appear close to the corresponding ErrTimeout
in the logs, while not spamming the log file if there is nothing to report.
See the next section on how to customize this behavior.
In the Go SDK OrphanReporter
is only applicable to the key-value service, other services use HTTP which is a blocking operation and cannot create orphaned requests.
The actual body of the message consists of the text Orphaned responses observed
, followed by a compact JSON representation of the aggregated orphans.
The following code snippet shows a prettified version of such a JSON blob:
{
"kv": {
"total_count": 3,
"top_requests": [
{
"last_local_id": "6fc84f6b1e27f9ec/1264152ff6b5299a",
"operation_id": "0x7",
"last_remote_socket": "10.112.230.102:11210",
"last_local_socket": "10.112.230.1:63747",
"last_server_duration_us": 243,
"operation_name": "CMD_SET"
},
{
"last_local_id": "6fc84f6b1e27f9ec/1264152ff6b5299a",
"operation_id": "0x8",
"last_remote_socket": "10.112.230.102:11210",
"last_local_socket": "10.112.230.1:63747",
"last_server_duration_us": 300,
"operation_name": "CMD_SET"
},
{
"last_local_id": "6fc84f6b1e27f9ec/1264152ff6b5299a",
"operation_id": "0x9",
"last_remote_socket": "10.112.230.102:11210",
"last_local_socket": "10.112.230.1:63747",
"last_server_duration_us": 210,
"operation_name": "CMD_SET"
}
]
}
}
Please note that we do not provide any stability guarantees on the logging output format and it might change between minor versions.
Property | Description |
---|---|
|
The server duration, if present. |
|
The name of the operation. |
|
The connection id. |
|
The operation id (this can be used to match up to logged requests using their |
|
The local address, if present. |
|
The remote address, if present. |
If a field is not available, it will not be included in the output.
Configuration
The orphan logger can be configured through the OrphanReporterConfig
.
The following properties can be configured:
Property | Default | Description |
---|---|---|
|
10 seconds |
The interval where found orphans are emitted. |
|
10 |
The number of samples to store per service. |
|
false |
Whether to disable the |