Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: LiveQueryClient.resubscribe with Parse Server 7 causes many open connections #2184

Merged
merged 6 commits into from
Jun 24, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions integration/test/ParseLiveQueryTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,35 @@ describe('Parse LiveQuery', () => {
await promise;
});

it('can resubscribe', async () => {
const client = new Parse.LiveQueryClient({
applicationId: 'integration',
serverURL: 'ws://localhost:1337',
javascriptKey: null,
masterKey: null,
sessionToken: null,
});
client.open();
const resubscribeSpy = spyOn(client, 'resubscribe').and.callThrough();
const subscribeRequest = {
op: 'subscribe',
requestId: 1,
query: {
className: 'TestObject',
where: { objectId: 'HEXkuHFm0D' },
keys: ['foo', 'objectId'],
watch: undefined,
unknownField: 'throws Additional properties not allowed error',
},
sessionToken: undefined,
};
await client.connectPromise;
client.socket.send(JSON.stringify(subscribeRequest));
await sleep(1000);
expect(resubscribeSpy).toHaveBeenCalled();
await client.close();
});

it('can subscribe to multiple queries', async () => {
const objectA = new TestObject();
const objectB = new TestObject();
Expand Down
12 changes: 6 additions & 6 deletions src/LiveQueryClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ const SUBSCRIPTION_EMMITER_TYPES = {
DELETE: 'delete',
};

// Exponentially-growing random delay
const generateInterval = k => {
return Math.random() * Math.min(30, Math.pow(2, k) - 1) * 1000;
};
Expand Down Expand Up @@ -291,7 +292,8 @@ class LiveQueryClient {
const query = subscription.query;
const queryJSON = query.toJSON();
const where = queryJSON.where;
const fields = queryJSON.keys ? queryJSON.keys.split(',') : undefined;
const keys = queryJSON.keys?.split(',');
const watch = queryJSON.watch?.split(',');
const className = query.className;
const sessionToken = subscription.sessionToken;
const subscribeRequest = {
Expand All @@ -300,7 +302,8 @@ class LiveQueryClient {
query: {
className,
where,
fields,
keys,
watch,
},
sessionToken: undefined as string | undefined,
};
Expand Down Expand Up @@ -347,7 +350,6 @@ class LiveQueryClient {
}

_handleWebSocketOpen() {
this.attempts = 1;
const connectRequest = {
op: OP_TYPES.CONNECT,
applicationId: this.applicationId,
Expand Down Expand Up @@ -387,6 +389,7 @@ class LiveQueryClient {
break;
case OP_EVENTS.SUBSCRIBED:
if (subscription) {
this.attempts = 1;
subscription.subscribed = true;
subscription.subscribePromise.resolve();
setTimeout(() => subscription.emit(SUBSCRIPTION_EMMITER_TYPES.OPEN, response), 200);
Expand Down Expand Up @@ -485,19 +488,16 @@ class LiveQueryClient {
if (this.state === CLIENT_STATE.DISCONNECTED) {
return;
}

this.state = CLIENT_STATE.RECONNECTING;
const time = generateInterval(this.attempts);

// handle case when both close/error occur at frequent rates we ensure we do not reconnect unnecessarily.
// we're unable to distinguish different between close/error when we're unable to reconnect therefore
// we try to reconnect in both cases
// server side ws and browser WebSocket behave differently in when close/error get triggered

if (this.reconnectHandle) {
clearTimeout(this.reconnectHandle);
}

this.reconnectHandle = setTimeout(
(() => {
this.attempts++;
Expand Down
8 changes: 8 additions & 0 deletions src/__tests__/LiveQueryClient-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -944,6 +944,8 @@ describe('LiveQueryClient', () => {
};
const query = new ParseQuery('Test');
query.equalTo('key', 'value');
query.select(['key']);
query.watch(['key']);
liveQueryClient.subscribe(query);
liveQueryClient.connectPromise.resolve();

Expand All @@ -961,6 +963,8 @@ describe('LiveQueryClient', () => {
where: {
key: 'value',
},
keys: ['key'],
watch: ['key'],
},
});
});
Expand All @@ -978,6 +982,8 @@ describe('LiveQueryClient', () => {
};
const query = new ParseQuery('Test');
query.equalTo('key', 'value');
query.select(['key']);
query.watch(['key']);
liveQueryClient.subscribe(query, 'mySessionToken');
liveQueryClient.connectPromise.resolve();

Expand All @@ -996,6 +1002,8 @@ describe('LiveQueryClient', () => {
where: {
key: 'value',
},
keys: ['key'],
watch: ['key'],
},
});
});
Expand Down
Loading