170GB log file: flooded with warnings WebRTC Publisher Cannot find RTP history for wide_seq_no #2162
|
after pulling
also how can i docker pull the previous releases, I have several time had issues with new releases - just like this one, so how can I easily revert to older versions. additionally your should consider adding max log file size and trim the log files. to avoid simular future issues causing server crash |
Replies: 1 comment 1 reply
|
This log spam comes from the transport-cc BWE introduced in v0.20.5. It has already been fixed on master (commit a1f8599, PR #2072) by demoting the message from warning to debug. The fix isn't in a tagged release yet, so for now you have two options: Build from master to pick up the fix immediately.
As a side note, OvenMediaEngine Enterprise has a much shorter release cycle, so fixes like this land in a tagged release very quickly. If faster turnaround on patches matters to your operation, it may be worth a look: https://ovenmedialabs.com/docs/ome-enterprise/about/release-notes |
This log spam comes from the transport-cc BWE introduced in v0.20.5. It has already been fixed on master (commit a1f8599, PR #2072) by demoting the message from warning to debug. The fix isn't in a tagged release yet, so for now you have two options:
Build from master to pick up the fix immediately.
Roll back to v0.20.0, which is the last release before transport-cc BWE was added.
For pinning to a specific version with Docker, every release is tagged on Docker Hub. Note that the official image has moved to a new repo:
docker pull ovenmedialabs/ovenmediaengine:0.20.0All released tags: https://hub.docker.com/r/ovenmedialabs/ovenmediaengine/tags
As a side note, OvenMediaEngine Enterprise ha…