-
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
Delete duplicated OTLP Exporter tests, move them to the mixin unit test. Fix broken shutdown unit test. #4504
Conversation
underlying behavior in the mixin to the mixin unit tests, instead of having them specified multiple times in the Metric/Log/Trace exporters. Fix the shutdown tests which were flaky, so that they just test whether a pending export call completes or not. Update shutdown so it doesn't release the lock -- in cases where an export call is pending, export then also releases the lock causing a Runtime Error: https://docs.python.org/3/library/threading.html#threading.Lock.release.
...pentelemetry-exporter-otlp-proto-grpc/src/opentelemetry/exporter/otlp/proto/grpc/exporter.py
Outdated
Show resolved
Hide resolved
...pentelemetry-exporter-otlp-proto-grpc/src/opentelemetry/exporter/otlp/proto/grpc/exporter.py
Outdated
Show resolved
Hide resolved
...pentelemetry-exporter-otlp-proto-grpc/src/opentelemetry/exporter/otlp/proto/grpc/exporter.py
Outdated
Show resolved
Hide resolved
@DylanRussell have you seen #4490? |
export RPC is occuring, so that shutdown waits for export RPC to finish. Use threading.Event() to communicate when shutdown is occuring, so that sleep is interrupted if a shutdown is occuring.
Ah I had not seen that ! Seems like a couple of us noticed the same thing. It sounds like the behavior that what we want is for I'm thinking we can use threading events (https://docs.python.org/3/library/threading.html#event-objects) to accomplish all these things. We use one event for Check out my latest commit and let me know what you think ! |
separate PR for those.
I reverted all changes to the exporter shutdown logic from this PR. So this PR only touches tests now, and is just about deleting duplicate tests and fixing the existing broken shutdown test. I moved my proposed shutdown changes to a new pr: #4511 |
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.
Did you mostly rewrite the tests in exporter/opentelemetry-exporter-otlp-proto-grpc/tests/test_otlp_exporter_mixin
or does it copy from the old tests that were deleted here?
exporter/opentelemetry-exporter-otlp-proto-grpc/tests/test_otlp_exporter_mixin.py
Outdated
Show resolved
Hide resolved
exporter/opentelemetry-exporter-otlp-proto-grpc/tests/test_otlp_exporter_mixin.py
Outdated
Show resolved
Hide resolved
exporter/opentelemetry-exporter-otlp-proto-grpc/tests/test_otlp_exporter_mixin.py
Outdated
Show resolved
Hide resolved
exporter/opentelemetry-exporter-otlp-proto-grpc/tests/test_otlp_exporter_mixin.py
Show resolved
Hide resolved
I copied the existing tests. The only tests I changed were the shutdown tests ( |
exporter/opentelemetry-exporter-otlp-proto-grpc/tests/test_otlp_exporter_mixin.py
Outdated
Show resolved
Hide resolved
exporter/opentelemetry-exporter-otlp-proto-grpc/tests/test_otlp_exporter_mixin.py
Show resolved
Hide resolved
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.
If you can make the tests work without sleeping, it would be nice. If not, can you try to shorten the sleep durations a bit?
exporter/opentelemetry-exporter-otlp-proto-grpc/tests/test_otlp_exporter_mixin.py
Outdated
Show resolved
Hide resolved
exporter/opentelemetry-exporter-otlp-proto-grpc/tests/test_otlp_exporter_mixin.py
Outdated
Show resolved
Hide resolved
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.
I like the reduction of work done, hopefully we are still confident that the exporters behave like the mixin 😅 A couple of nits but LGTM.
exporter/opentelemetry-exporter-otlp-proto-grpc/tests/test_otlp_exporter_mixin.py
Outdated
Show resolved
Hide resolved
...porter-otlp-proto-grpc/src/opentelemetry/exporter/otlp/proto/grpc/trace_exporter/__init__.py
Outdated
Show resolved
Hide resolved
@jomcgi care to take a look at this too please? |
falls through to mixin.
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.
Looks good to me! left some small nits.
exporter/opentelemetry-exporter-otlp-proto-grpc/tests/test_otlp_exporter_mixin.py
Outdated
Show resolved
Hide resolved
exporter/opentelemetry-exporter-otlp-proto-grpc/tests/test_otlp_exporter_mixin.py
Outdated
Show resolved
Hide resolved
exporter/opentelemetry-exporter-otlp-proto-grpc/tests/test_otlp_exporter_mixin.py
Outdated
Show resolved
Hide resolved
exporter/opentelemetry-exporter-otlp-proto-grpc/tests/logs/test_otlp_logs_exporter.py
Show resolved
Hide resolved
...pentelemetry-exporter-otlp-proto-grpc/src/opentelemetry/exporter/otlp/proto/grpc/exporter.py
Outdated
Show resolved
Hide resolved
I think I need someone to add the Skip Changelog label |
Description
Move all OTLP exporter tests that are testing the underlying behavior in the mixin to the mixin unit tests,
instead of having them specified multiple times in the Metric/Log/Trace exporters.
Fix the shutdown tests which were flaky, so that they just test whether a pending export call completes or not.
Type of change
Please delete options that are not relevant.
How Has This Been Tested?
This change is just a refactor of the unit tests, to delete duplicate tests and fix a broken test.. No functionality is changing.
Does This PR Require a Contrib Repo Change?
Checklist: