jitsi / docker-jitsi-meet

Jitsi Meet on Docker
https://hub.docker.com/u/jitsi/
Apache License 2.0
3.06k stars 1.36k forks source link

"Invalid message received" in JVB since v7001 #1238

Open normen opened 2 years ago

normen commented 2 years ago

Since updating to v7001 I am getting a lot of these messages:

13:13:50 7ad0f164649e[21430]: JVB 2022-03-13 12:13:50.684 WARNING: [42] [confId=ab704a09e87d69db epId=9705dce6 gid=85935 stats_id=Floyd-dQD conf_name=megalith@muc.meet.jitsi] AbstractEndpointMessageTransport.onMessage#67: Invalid message received (Parameter specified as non-null is null: method org.jitsi.videobridge.message.EndpointStats.put, parameter value (through reference chain: org.jitsi.videobridge.message.EndpointStats["connectionQuality"]): {"colibriClass":"EndpointStats","bitrate":{"upload":838,"download":846,"audio":{"upload":14,"download":0},"video":{"upload":126,"download":846}},"packetLoss":{"total":0,"download":0,"upload":0},"connectionQuality":null,"jvbRTT":16,"maxEnabledResolution":360}

The server is running on docker behind a nginx server that is running on the actual machine.

saghul commented 2 years ago

I'd suggest opening an issue on the JVB bug tracker.

saghul commented 2 years ago

@bgrozev any idea what this could be?

somzoli commented 2 years ago

Hi, I think i was able to manage this problem with this config lines in ".jitsi-meet-cfg/web/custom-config.js":

config.videoQuality.maxBitratesVideo.H264 = { low: 200000, standard: 500000, high: 1500000 }; config.videoQuality.maxBitratesVideo.VP8 = { low: 200000, standard: 500000, high: 1500000 }; config.videoQuality.maxBitratesVideo.VP9 = { low: 100000, standard: 300000, high: 1200000 };

Based on: https://community.jitsi.org/t/jvb-error-invalid-message-received-parameter-specified-as-non-null-is-null/106505

Z