Fix: Support for max event size limit#50
Merged
maxbanton merged 1 commit intomaxbanton:masterfrom May 9, 2018
Merged
Conversation
Owner
|
Hi @amandas-sukionis. Thanks for your pull request. Could you please explain use cases when you need to put 524256 bytes of log message? |
Contributor
Author
|
Sure, we are relying on a 3rd party XML api to manage user bookings and on the error cases we log the full request/response information. Due to the nature of these requests they are pretty large. This is not a very common case for us, but it still happens. It seemed that it would be easier to implement this on the library level (as it's an AWS limit, similar to batch size) instead of managing log sizes and error handling on our part. |
Owner
|
Thanks @amandas-sukionis. Merged and new version published https://packagist.org/packages/maxbanton/cwh#v1.1.9 |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What kind of change does this PR introduce? (Bug fix, feature, docs update, ...)
Fix/Feature: Adds handling of max event size of 256 KB https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/cloudwatch_limits_cwl.html
What is the current behavior? (You can also link to an open issue here)
Currently, if a large message (256 KB or larger) is being logged, there is a
Aws\CloudWatchLogs\Exception\CloudWatchLogsExceptionruntime exception thrown with a message similar to "Log event too large: 524256 bytes exceeds limit of 262144"}" which if unhandled breaks code execution.What is the new behavior (if this is a feature change)?
With the new behavior the message is split into smaller chunks and logged as separate events. It does simply cut the string at the limit size.
Does this PR introduce a breaking change? (What changes might users need to make in their application due to this PR?)
No.
Other information:
None.