-
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
Bump github.com/goccy/go-json from v0.10.3 to v0.10.4 #36807
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
toddtreece
requested review from
a team,
djaglowski,
andrzej-stencel,
dmitryax,
crobert-1,
atoulme,
jmacd,
TylerHelmuth,
bogdandrutu,
evan-bradley,
jpkrohling,
mx-psi,
songy23 and
mwear
as code owners
December 12, 2024 15:51
github-actions
bot
added
connector/count
connector/datadog
connector/routing
connector/sum
exporter/datadog
Datadog components
exporter/elasticsearch
exporter/honeycombmarker
exporter/otelarrow
exporter/splunkhec
extension/encoding
internal/filter
internal/otelarrow
pkg/ottl
pkg/stanza
labels
Dec 12, 2024
github-actions
bot
requested review from
fchikwekwe,
greatestusername,
jade-guiton-dd,
JaredTan95,
kentquirk,
lahsivjar,
liustanley,
lquerel,
mackjmr,
MikeGoldsmith,
moh-osman3,
MovieStoreGuy,
pjanotti,
schmikei,
shalper2,
sinkingpoint,
sumo-drosiek and
VihasMakwana
December 12, 2024 15:52
songy23
added
dependencies
Pull requests that update a dependency file
Skip Changelog
PRs that do not require a CHANGELOG.md entry
labels
Dec 12, 2024
mx-psi
approved these changes
Dec 12, 2024
mx-psi
added
the
ready to merge
Code review completed; ready to merge by maintainers
label
Dec 12, 2024
songy23
approved these changes
Dec 12, 2024
atoulme
approved these changes
Dec 12, 2024
TylerHelmuth
approved these changes
Dec 12, 2024
sbylica-splunk
pushed a commit
to sbylica-splunk/opentelemetry-collector-contrib
that referenced
this pull request
Dec 17, 2024
…#36807) <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description Updates `github.com/goccy/go-json` with fix from goccy/go-json#490 Additional details via open-telemetry#36765: > The github.com/goccy/go-json module contains an init() function which warms up a cache even if the module is never used. I believe this causes around 20 MB of memory per Collector instance. This is an issue for users who run many instances of the Collector. If you run hundreds of instances, 20 MB per instance adds up to a lot. > > Currently, github.com/goccy/go-json seems to be used only by the Splunk HEC Exporter, Stanza, and OTTL. I suppose all other functionality doesn't need the cache. > > There is a goccy/go-json#490 opened upstream to improve the cache so that it is loaded lazily - only if goccy/go-json is used. <!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. --> #### Link to tracking issue Fixes open-telemetry#36765
mterhar
pushed a commit
to mterhar/opentelemetry-collector-contrib
that referenced
this pull request
Dec 19, 2024
…#36807) <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description Updates `github.com/goccy/go-json` with fix from goccy/go-json#490 Additional details via open-telemetry#36765: > The github.com/goccy/go-json module contains an init() function which warms up a cache even if the module is never used. I believe this causes around 20 MB of memory per Collector instance. This is an issue for users who run many instances of the Collector. If you run hundreds of instances, 20 MB per instance adds up to a lot. > > Currently, github.com/goccy/go-json seems to be used only by the Splunk HEC Exporter, Stanza, and OTTL. I suppose all other functionality doesn't need the cache. > > There is a goccy/go-json#490 opened upstream to improve the cache so that it is loaded lazily - only if goccy/go-json is used. <!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. --> #### Link to tracking issue Fixes open-telemetry#36765
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
connector/count
connector/datadog
connector/routing
connector/sum
dependencies
Pull requests that update a dependency file
exporter/datadog
Datadog components
exporter/elasticsearch
exporter/honeycombmarker
exporter/otelarrow
exporter/splunkhec
extension/encoding
internal/filter
internal/otelarrow
pkg/ottl
pkg/stanza
processor/attributes
Attributes processor
processor/filter
Filter processor
processor/logdedup
processor/logstransform
Logs Transform processor
processor/routing
Routing processor
processor/span
processor/tailsampling
Tail sampling processor
processor/transform
Transform processor
ready to merge
Code review completed; ready to merge by maintainers
receiver/azureeventhub
receiver/filelog
receiver/journald
receiver/mongodbatlas
receiver/namedpipe
receiver/otelarrow
receiver/otlpjsonfile
receiver/splunkhec
receiver/sqlquery
SQL query receiver
receiver/syslog
receiver/tcplog
receiver/udplog
receiver/windowseventlog
Skip Changelog
PRs that do not require a CHANGELOG.md entry
testbed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Updates
github.com/goccy/go-json
with fix from goccy/go-json#490Additional details via #36765:
Link to tracking issue
Fixes #36765