Skip to content

Commit

Permalink
Provide option not to retry on event send failure (close #1248)
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-el committed Oct 23, 2023
1 parent c7ec1d7 commit ebe9f47
Show file tree
Hide file tree
Showing 7 changed files with 148 additions and 14 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@snowplow/browser-tracker",
"comment": "Update API docs with retryFailedRequests",
"type": "none"
}
],
"packageName": "@snowplow/browser-tracker"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@snowplow/browser-tracker",
"comment": "Add retryFailedRequests",
"type": "none"
}
],
"packageName": "@snowplow/browser-tracker"
}
3 changes: 2 additions & 1 deletion libraries/browser-tracker-core/src/tracker/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,8 @@ export function Tracker(
trackerConfiguration.withCredentials ?? true,
trackerConfiguration.retryStatusCodes ?? [],
(trackerConfiguration.dontRetryStatusCodes ?? []).concat([400, 401, 403, 410, 422]),
trackerConfiguration.idService
trackerConfiguration.idService,
trackerConfiguration.retryFailedRequests
),
// Whether pageViewId should be regenerated after each trackPageView. Affect web_page context
preservePageViewId = false,
Expand Down
33 changes: 25 additions & 8 deletions libraries/browser-tracker-core/src/tracker/out_queue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ export interface OutQueue {
* @param retryStatusCodes – Failure HTTP response status codes from Collector for which sending events should be retried (they can override the `dontRetryStatusCodes`)
* @param dontRetryStatusCodes – Failure HTTP response status codes from Collector for which sending events should not be retried
* @param idService - Id service full URL. This URL will be added to the queue and will be called using a GET method.
* @param retryFailedRequests - Whether to retry failed requests
* @returns object OutQueueManager instance
*/
export function OutQueueManager(
Expand All @@ -83,7 +84,8 @@ export function OutQueueManager(
withCredentials: boolean,
retryStatusCodes: number[],
dontRetryStatusCodes: number[],
idService?: string
idService?: string,
retryFailedRequests: boolean = true
): OutQueue {
type PostEvent = {
evt: Record<string, unknown>;
Expand Down Expand Up @@ -348,10 +350,18 @@ export function OutQueueManager(
numberToSend = 1;
}

const checkRetryFailedRequests = () => {
if (!retryFailedRequests) {
removeEventsFromQueue(numberToSend);
}
executingQueue = false;
};

// Time out POST requests after connectionTimeout
const xhrTimeout = setTimeout(function () {
xhr.abort();
executingQueue = false;

checkRetryFailedRequests();
}, connectionTimeout);

const removeEventsFromQueue = (numberToSend: number): void => {
Expand All @@ -375,13 +385,19 @@ export function OutQueueManager(
clearTimeout(xhrTimeout);
if (xhr.status >= 200 && xhr.status < 300) {
onPostSuccess(numberToSend);
} else {
if (!shouldRetryForStatusCode(xhr.status)) {
LOG.error(`Status ${xhr.status}, will not retry.`);
removeEventsFromQueue(numberToSend);
}
executingQueue = false;
return;
}

if (xhr.status === 0) {
checkRetryFailedRequests();
return;
}

if (!shouldRetryForStatusCode(xhr.status)) {
LOG.error(`Status ${xhr.status}, will not retry.`);
removeEventsFromQueue(numberToSend);
}
executingQueue = false;
}
};

Expand Down Expand Up @@ -490,6 +506,7 @@ export function OutQueueManager(
xhr.setRequestHeader(header, customHeaders[header]);
}
}

return xhr;
}

Expand Down
11 changes: 11 additions & 0 deletions libraries/browser-tracker-core/src/tracker/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,17 @@ export type TrackerConfiguration = {
* The request respects the `anonymousTracking` option, including the SP-Anonymous header if needed, and any additional custom headers from the customHeaders option.
*/
idService?: string;
/**
* Whether to retry failed requests to the collector.
*
* Failed requests are requests that failed due to
* [timeouts](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/timeout_event),
* [network errors](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/error_event),
* and [abort events](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/abort_event).
*
* @defaultValue true
*/
retryFailedRequests?: boolean;
};

/**
Expand Down
94 changes: 89 additions & 5 deletions libraries/browser-tracker-core/test/out_queue.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@
import { OutQueueManager, OutQueue } from '../src/tracker/out_queue';
import { SharedState } from '../src/state';

const readPostQueue = () => {
return JSON.parse(
window.localStorage.getItem('snowplowOutQueue_sp_post2') ?? fail('Unable to find local storage queue')
);
};

describe('OutQueueManager', () => {
const maxQueueSize = 2;

Expand All @@ -45,6 +51,7 @@ describe('OutQueueManager', () => {
send: jest.fn(),
setRequestHeader: jest.fn(),
withCredentials: true,
abort: jest.fn(),
};

jest.spyOn(window, 'XMLHttpRequest').mockImplementation(() => xhrMock as XMLHttpRequest);
Expand Down Expand Up @@ -219,11 +226,6 @@ describe('OutQueueManager', () => {

describe('idService requests', () => {
const idServiceEndpoint = 'http://example.com/id';
const readPostQueue = () => {
return JSON.parse(
window.localStorage.getItem('snowplowOutQueue_sp_post2') ?? fail('Unable to find local storage queue')
);
};

const readGetQueue = () =>
JSON.parse(window.localStorage.getItem('snowplowOutQueue_sp_get') ?? fail('Unable to find local storage queue'));
Expand Down Expand Up @@ -337,4 +339,86 @@ describe('OutQueueManager', () => {
});
});
});

describe('retryFailures = true', () => {
const request = { e: 'pv', eid: '65cb78de-470c-4764-8c10-02bd79477a3a' };
let createOutQueue = () =>
OutQueueManager(
'sp',
new SharedState(),
true,
'post',
'/com.snowplowanalytics.snowplow/tp2',
1,
40000,
0,
false,
maxQueueSize,
10,
false,
{},
true,
[],
[],
'',
true
);

it('should remain in queue on failure', (done) => {
let outQueue = createOutQueue();
outQueue.enqueueRequest(request, 'http://example.com');

let retrievedQueue = readPostQueue();
expect(retrievedQueue).toHaveLength(1);

respondMockRequest(0);

setTimeout(() => {
retrievedQueue = readPostQueue();
expect(retrievedQueue).toHaveLength(1);
done();
}, 20);
});
});

describe('retryFailures = false', () => {
const request = { e: 'pv', eid: '65cb78de-470c-4764-8c10-02bd79477a3a' };
let createOutQueue = () =>
OutQueueManager(
'sp',
new SharedState(),
true,
'post',
'/com.snowplowanalytics.snowplow/tp2',
1,
40000,
0,
false,
maxQueueSize,
0,
false,
{},
true,
[],
[],
'',
false
);

it('should remove from queue on failure', (done) => {
let outQueue = createOutQueue();
outQueue.enqueueRequest(request, 'http://example.com');

let retrievedQueue = readPostQueue();
expect(retrievedQueue).toHaveLength(1);

respondMockRequest(0);

setTimeout(() => {
retrievedQueue = readPostQueue();
expect(retrievedQueue).toHaveLength(0);
done();
}, 20);
});
});
});
1 change: 1 addition & 0 deletions trackers/browser-tracker/docs/browser-tracker.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,7 @@ export type TrackerConfiguration = {
dontRetryStatusCodes?: number[];
onSessionUpdateCallback?: (updatedSession: ClientSession) => void;
idService?: string;
retryFailedRequests?: boolean;
};

// @public
Expand Down

0 comments on commit ebe9f47

Please sign in to comment.