Skip to content

Commit

Permalink
[index patterns] improve index pattern cache (#83368) (#83795)
Browse files Browse the repository at this point in the history
* cache index pattern promise, not index pattern
  • Loading branch information
mattkime authored Nov 19, 2020
1 parent 3004ac9 commit 1c5a49a
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 23 deletions.
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 @@ -88,6 +92,7 @@ describe('IndexPatterns', () => {
});

test('does cache gets for the same id', async () => {
SOClientGetDelay = 1000;
const id = '1';
setDocsourcePayload(id, {
id: 'foo',
Expand All @@ -97,10 +102,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 @@ -212,4 +224,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 @@ -361,17 +361,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 @@ -427,7 +417,6 @@ export class IndexPatternsService {
: {};

const indexPattern = await this.create(spec, true);
indexPatternCache.set(id, indexPattern);
if (isSaveRequired) {
try {
this.updateSavedObject(indexPattern);
Expand Down Expand Up @@ -477,6 +466,23 @@ export class IndexPatternsService {
.then(() => this);
}

/**
* 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 @@ -535,7 +541,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

0 comments on commit 1c5a49a

Please sign in to comment.