Very low frame rate (about a few per sec!) with GPU in Meeting SDK for web version=2.5.0

Description
frame rate of participants video is about a few per sec with GKE node n1-standard-4 with nvidia tesla t4.

Browser Console Error
i didnt get any error.

Which Web Meeting SDK version?
2.5.0

Meeting SDK Code Snippets
The code snippets that are causing the error / issue so we can reproduce.

function join() {
      ZoomMtg.join({
        sdkKey: meetingConfig.sdkKey,
        signature: meetingConfig.signature,
        meetingNumber: meetingConfig.meetingNumber,
        userName: meetingConfig.userName,
        userEmail: meetingConfig.userEmail,
        passWord: meetingConfig.passWord,
        success: function (data) {
          console.log(
            JSON.stringify({
              type: 'join',
              data,
            })
          );
          getAttendeeslist();
          getCurrentUser();
        },
        error: function (data) {
          console.log(
            JSON.stringify({
              type: 'join',
              data,
            })
          );
        },
      });
    }
    window.zoomJoin = join;

    ZoomMtg.init({
      debug: true,
      leaveUrl: meetingConfig.leaveUrl,
      webEndpoint: meetingConfig.webEndpoint,
      disableCORP: false,
      disablePreview: true,
      success: function () {
        ZoomMtg.i18n.load(meetingConfig.lang);
        ZoomMtg.i18n.reload(meetingConfig.lang);
        join();
      },
      error: function (res) {
        console.log(res);
      },
    });

To Reproduce(If applicable)
Steps to reproduce the behavior:

  1. join any Zoom meeting (sometimes successful in this step :thinking:)
  2. leave in a few minutes
  3. join another meeting in about 30 minutes with the same device
  4. reproduce the event

Screenshots
If applicable, add screenshots to help explain your problem.

Troubleshooting Routes
The troubleshooting attempt types you’ve already exhausted, including testing with the appropriate sample app (found on Zoom · GitHub).
i checked that canvas DOM existed in chrome dev tool.

Device (please complete the following information):

  • Device: Linux (n1-standard-4 with nvidia tesla t4 and time-shraring in Google Kubernetes Engine)
  • OS: ubuntu 22.04
  • Browser: Chrome
  • Browser Version: 108.0.5359.124-1

Additional context
Add any other context about the problem here.

  • reproduced also in (nvidia driver version, GKE cluster version)=(470.141.03, 1.24.9-gke.2000), (470.161.03, 1.24.9-gke.3200), (510.47.03, 1.24.9-gke.2000)

hi @kanata.koyama ,

are you running the web meeting sdk on a container environment?

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.