Skip to content

Commit

Permalink
Reduce number of indexed fields in index pattern saved object (#74817)
Browse files Browse the repository at this point in the history
* reduce number of indexed fields in index pattern saved object
  • Loading branch information
mattkime authored Aug 12, 2020
1 parent 0eee111 commit 981fdda
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/plugins/data/server/saved_objects/index_patterns.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 981fdda

Please sign in to comment.