-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
awss3exporter: Add Protocol Buf storage format #30681
Comments
Pinging code owners:
See Adding Labels via Comments if you do not have permissions to add labels yourself. |
It looks like a code owner has recently filed an issue to separate encodings from this exporter (here). I think it makes sense to add support for sending data encoded in the protobuf format, but the proper implementation would be to rely on the encoding extension rather than the exporter itself implementing this logic. |
**Description:** Add ProtoBuf output format to the AWS S3 exporter **Link to tracking Issue:** #30681 **Testing:** Additional unit tests have been added for the new format type and I've also exported data to an S3 bucket in Protobuf format and read it back to confirm that it's working end to end. **Documentation:** Added details of the new marshaler format to the README.md --------- Co-authored-by: Antoine Toulme <[email protected]>
**Description:** Add ProtoBuf output format to the AWS S3 exporter **Link to tracking Issue:** open-telemetry#30681 **Testing:** Additional unit tests have been added for the new format type and I've also exported data to an S3 bucket in Protobuf format and read it back to confirm that it's working end to end. **Documentation:** Added details of the new marshaler format to the README.md --------- Co-authored-by: Antoine Toulme <[email protected]>
Please take a look at #31801, any review helps, thanks! |
Component(s)
exporter/awss3
Is your feature request related to a problem? Please describe.
Currently the only supported format for writing trace data to an S3 bucket is JSON which is not very concise. As a result this use more space than necessary in the S3 bucket and more CPU and network resources.
Describe the solution you'd like
Add support for writing all OpenTelemetry data in ProtoBuf format.
ProtoBuf output is approximately half the size of JSON formatted data.
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: