You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What happened: We are experiencing an issue with log rotation where lengthy log messages are being split between two different log files. This results in fragmented and incomplete log entries.
What you expected to happen: Log messages should be complete and not split between log files
How to reproduce it (as minimally and precisely as possible):
For testing, I just run the following python-script on EKS:
import time
message = "0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 "
i = 1
while i < 10000000:
i += 1
print(message)
time.sleep(3600)
What happened: We are experiencing an issue with log rotation where lengthy log messages are being split between two different log files. This results in fragmented and incomplete log entries.
What you expected to happen: Log messages should be complete and not split between log files
How to reproduce it (as minimally and precisely as possible):
For testing, I just run the following python-script on EKS:
And changed containerLogMaxFiles to 10.
That's what I see in the logs:
Environment:
The text was updated successfully, but these errors were encountered: