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 20, 2023
1 parent 1df5e9f commit 638c6de
Show file tree
Hide file tree
Showing 4 changed files with 117 additions and 12 deletions.
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.retryFailures
),
// Whether pageViewId should be regenerated after each trackPageView. Affect web_page context
preservePageViewId = false,
Expand Down
20 changes: 14 additions & 6 deletions libraries/browser-tracker-core/src/tracker/out_queue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ export function OutQueueManager(
withCredentials: boolean,
retryStatusCodes: number[],
dontRetryStatusCodes: number[],
idService?: string
idService?: string,
retryFailures: boolean = true
): OutQueue {
type PostEvent = {
evt: Record<string, unknown>;
Expand Down Expand Up @@ -351,7 +352,14 @@ export function OutQueueManager(
// Time out POST requests after connectionTimeout
const xhrTimeout = setTimeout(function () {
xhr.abort();
executingQueue = false;

if (retryFailures) {
LOG.warn(`Request failed, will retry.`);
} else {
LOG.error(`Request failed, will not retry.`);
removeEventsFromQueue(numberToSend);
executingQueue = false;
}
}, connectionTimeout);

const removeEventsFromQueue = (numberToSend: number): void => {
Expand All @@ -371,17 +379,17 @@ export function OutQueueManager(
};

xhr.onreadystatechange = function () {
if (xhr.readyState === 4 && xhr.status >= 200) {
clearTimeout(xhrTimeout);
if (xhr.status < 300) {
if (xhr.readyState === 4) {
if (xhr.status >= 200 && xhr.status < 300) {
clearTimeout(xhrTimeout);
onPostSuccess(numberToSend);
} else {
if (!shouldRetryForStatusCode(xhr.status)) {
LOG.error(`Status ${xhr.status}, will not retry.`);
removeEventsFromQueue(numberToSend);
}
executingQueue = false;
}
executingQueue = false;
}
};

Expand Down
12 changes: 12 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,18 @@ 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
*/
retryFailures?: 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);
});
});
});

0 comments on commit 638c6de

Please sign in to comment.