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

[index patterns] improve index pattern cache #83368

Merged
merged 5 commits into from
Nov 19, 2020
Merged
Show file tree
Hide file tree
Changes from all 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
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
import { IndexPattern } from './index_pattern';

export interface PatternCache {
get: (id: string) => IndexPattern;
set: (id: string, value: IndexPattern) => IndexPattern;
get: (id: string) => Promise<IndexPattern> | undefined;
set: (id: string, value: Promise<IndexPattern>) => Promise<IndexPattern>;
clear: (id: string) => void;
clearAll: () => void;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ function setDocsourcePayload(id: string | null, providedPayload: any) {
describe('IndexPatterns', () => {
let indexPatterns: IndexPatternsService;
let savedObjectsClient: SavedObjectsClientCommon;
let SOClientGetDelay = 0;

beforeEach(() => {
const indexPatternObj = { id: 'id', version: 'a', attributes: { title: 'title' } };
Expand All @@ -49,11 +50,14 @@ describe('IndexPatterns', () => {
);
savedObjectsClient.delete = jest.fn(() => Promise.resolve({}) as Promise<any>);
savedObjectsClient.create = jest.fn();
savedObjectsClient.get = jest.fn().mockImplementation(async (type, id) => ({
id: object.id,
version: object.version,
attributes: object.attributes,
}));
savedObjectsClient.get = jest.fn().mockImplementation(async (type, id) => {
await new Promise((resolve) => setTimeout(resolve, SOClientGetDelay));
return {
id: object.id,
version: object.version,
attributes: object.attributes,
};
});
savedObjectsClient.update = jest
.fn()
.mockImplementation(async (type, id, body, { version }) => {
Expand Down Expand Up @@ -87,6 +91,7 @@ describe('IndexPatterns', () => {
});

test('does cache gets for the same id', async () => {
SOClientGetDelay = 1000;
const id = '1';
setDocsourcePayload(id, {
id: 'foo',
Expand All @@ -96,10 +101,17 @@ describe('IndexPatterns', () => {
},
});

const indexPattern = await indexPatterns.get(id);
// make two requests before first can complete
const indexPatternPromise = indexPatterns.get(id);
indexPatterns.get(id);

expect(indexPattern).toBeDefined();
expect(indexPattern).toBe(await indexPatterns.get(id));
indexPatternPromise.then((indexPattern) => {
expect(savedObjectsClient.get).toBeCalledTimes(1);
expect(indexPattern).toBeDefined();
});

expect(await indexPatternPromise).toBe(await indexPatterns.get(id));
SOClientGetDelay = 0;
});

test('savedObjectCache pre-fetches only title', async () => {
Expand Down Expand Up @@ -211,4 +223,25 @@ describe('IndexPatterns', () => {

expect(indexPatterns.savedObjectToSpec(savedObject)).toMatchSnapshot();
});

test('failed requests are not cached', async () => {
savedObjectsClient.get = jest
.fn()
.mockImplementation(async (type, id) => {
return {
id: object.id,
version: object.version,
attributes: object.attributes,
};
})
.mockRejectedValueOnce({});

const id = '1';

// failed request!
expect(indexPatterns.get(id)).rejects.toBeDefined();

// successful subsequent request
expect(async () => await indexPatterns.get(id)).toBeDefined();
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -356,17 +356,7 @@ export class IndexPatternsService {
};
};

/**
* Get an index pattern by id. Cache optimized
* @param id
*/

get = async (id: string): Promise<IndexPattern> => {
const cache = indexPatternCache.get(id);
if (cache) {
return cache;
}

private getSavedObjectAndInit = async (id: string): Promise<IndexPattern> => {
const savedObject = await this.savedObjectsClient.get<IndexPatternAttributes>(
savedObjectType,
id
Expand Down Expand Up @@ -422,7 +412,6 @@ export class IndexPatternsService {
: {};

const indexPattern = await this.create(spec, true);
indexPatternCache.set(id, indexPattern);
if (isSaveRequired) {
try {
this.updateSavedObject(indexPattern);
Expand All @@ -444,6 +433,23 @@ export class IndexPatternsService {
return indexPattern;
};

/**
* Get an index pattern by id. Cache optimized
* @param id
*/

get = async (id: string): Promise<IndexPattern> => {
const indexPatternPromise =
indexPatternCache.get(id) || indexPatternCache.set(id, this.getSavedObjectAndInit(id));

// don't cache failed requests
indexPatternPromise.catch(() => {
indexPatternCache.clear(id);
});

return indexPatternPromise;
};

/**
* Create a new index pattern instance
* @param spec
Expand Down Expand Up @@ -502,7 +508,7 @@ export class IndexPatternsService {
id: indexPattern.id,
});
indexPattern.id = response.id;
indexPatternCache.set(indexPattern.id, indexPattern);
indexPatternCache.set(indexPattern.id, Promise.resolve(indexPattern));
return indexPattern;
}

Expand Down