-
Notifications
You must be signed in to change notification settings - Fork 691
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bugfix(exporter): ensure response is closed #4477
base: main
Are you sure you want to change the base?
bugfix(exporter): ensure response is closed #4477
Conversation
Fix open-telemetry#4476 Signed-off-by: Alex Boten <[email protected]>
The metrics failure looks like a double close or something in case the response is a 200? |
Signed-off-by: Alex Boten <[email protected]>
Turns out the |
Signed-off-by: Alex Boten <[email protected]>
...xporter-otlp-proto-http/src/opentelemetry/exporter/otlp/proto/http/_log_exporter/__init__.py
Outdated
Show resolved
Hide resolved
Signed-off-by: Alex Boten <[email protected]>
Signed-off-by: Alex Boten <[email protected]>
After further testing, the problem is caused by the Session object sending a Instead, I added a try/except around the post, to catch the ConnectionError and try to post another time (which causes the connection to be re-established successfully in this case). PTAL |
Signed-off-by: Alex Boten <[email protected]>
Signed-off-by: Alex Boten <[email protected]>
@@ -175,13 +176,27 @@ def _export(self, serialized_data: bytes): | |||
elif self._compression == Compression.Deflate: | |||
data = zlib.compress(serialized_data) | |||
|
|||
return self._session.post( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey 👋
Got here from #4476 affecting us at $workplace.
Would using requests
support for urllib3-based1 automatic retries be acceptable here?
For example, to declare that the first connection error2 will be retried
from requests.adapters import HTTPAdapter
from urllib3.util import Retry
class OTLPMetricExporter(MetricExporter, OTLPMetricExporterMixin):
def __init__():
...
self._session = session or requests.Session()
self._session.mount("https://", HTTPAdapter(max_retries=Retry(connect=1)))
Footnotes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That looks like a nice cleanup
Description
I was experiencing connection aborted when using the OTLP exporters to emit metrics. After reading the documentation for the requests library, it appears that if the body is not read, it is not necessarily returned to the connection pool.
Fix #4476
Type of change
Please delete options that are not relevant.
How Has This Been Tested?
Manually tested to validate that the connection aborted errors no longer happen.
Does This PR Require a Contrib Repo Change?
Checklist: