Reduce number of indexed fields in index pattern saved object (#74817)

* reduce number of indexed fields in index pattern saved object
This commit is contained in:
Matthew Kime 2020-08-12 18:31:30 -05:00 committed by GitHub
parent 0eee111cf3
commit 981fdda966
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,16 +42,10 @@ export const indexPatternSavedObjectType: SavedObjectsType = {
},
},
mappings: {
dynamic: false,
properties: {
fieldFormatMap: { type: 'text' },
fields: { type: 'text' },
intervalName: { type: 'keyword' },
notExpandable: { type: 'boolean' },
sourceFilters: { type: 'text' },
timeFieldName: { type: 'keyword' },
title: { type: 'text' },
type: { type: 'keyword' },
typeMeta: { type: 'keyword' },
},
},
migrations: indexPatternSavedObjectTypeMigrations as any,