Skip to content

Commit 456c607

Browse files
author
Yong Hoon Shin
committed
Send healthcheck to maintain ALB connection
1 parent f7a9867 commit 456c607

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

src/sidebar/models/Party.ts

+17
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import { User, OwnUser, OtherUser } from "./User";
1313
import { formatTime } from "@/util/formatTime";
1414

1515
const SEND_TIME_UPDATE_INTERVAL = 500;
16+
const SEND_HEALTH_CHECK_INTERVAL = 1000 * 60; // 60 seconds
1617

1718
export class Party extends EventEmitter<PartyEvent> {
1819
wsUrl: string;
@@ -23,6 +24,7 @@ export class Party extends EventEmitter<PartyEvent> {
2324
ownUser!: OwnUser;
2425
showToast: boolean;
2526
periodicUpdateIntervalID: number;
27+
serverHealthCheckSendIntervalID: number;
2628

2729
constructor(
2830
wsUrl: string,
@@ -37,6 +39,7 @@ export class Party extends EventEmitter<PartyEvent> {
3739
parentCommunicator.setParty(this);
3840
this.parentCommunicator = parentCommunicator;
3941
this.periodicUpdateIntervalID = -1;
42+
this.serverHealthCheckSendIntervalID = -1;
4043

4144
// cleanup if we lose connection with Websocket server by tab/window/browser closing
4245
window.addEventListener("beforeunload", event => {
@@ -196,6 +199,7 @@ export class Party extends EventEmitter<PartyEvent> {
196199
this.socket.onopen = () => {
197200
this.emit(PartyEvent.CONNECTED);
198201
this.socket.onmessage = this.handleMessage.bind(this);
202+
this.sendHealthCheckToServer();
199203
};
200204

201205
this.socket.onclose = () => {
@@ -211,6 +215,19 @@ export class Party extends EventEmitter<PartyEvent> {
211215
};
212216
}
213217

218+
sendHealthCheckToServer() {
219+
// AWS ALB closes idle connections after 200s (for now)
220+
// we send health update every minute
221+
this.serverHealthCheckSendIntervalID = window.setInterval(async () => {
222+
this.socket.send(
223+
JSON.stringify({
224+
type: SocketSendMsgType.HEALTH_CHECK,
225+
payload: {}
226+
})
227+
);
228+
}, SEND_HEALTH_CHECK_INTERVAL);
229+
}
230+
214231
checkIfPeriodicallySendVideoTime() {
215232
if (this.periodicUpdateIntervalID === -1) {
216233
// CHECK IF WE NEED TO START SENDING UPDATES

src/sidebar/models/types.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ export enum SocketSendMsgType {
4444
NEW_SIGNAL = "newSignal",
4545
BROADCAST_MESSAGE = "broadcastMessage",
4646
SET_USER_MUTE = "setUserMute",
47-
SET_ADMIN_CONTROLS = "setAdminControls"
47+
SET_ADMIN_CONTROLS = "setAdminControls",
48+
HEALTH_CHECK = "healthCheck"
4849
}
4950

5051
export enum RTCMsgType {

0 commit comments

Comments
 (0)