Skip to main content

elasticsearch-store / index-manager / IndexManager

Class: IndexManager

Defined in: elasticsearch-store/src/index-manager.ts:18

Manage Elasticsearch Indices

Constructors

new IndexManager()

new IndexManager(client, enableIndexMutations): IndexManager

Defined in: elasticsearch-store/src/index-manager.ts:24

Parameters

ParameterTypeDefault value
clientClientundefined
enableIndexMutationsbooleanisTest

Returns

IndexManager

Properties

PropertyModifierTypeDefined in
clientreadonlyClientelasticsearch-store/src/index-manager.ts:19
clientMetadatareadonlyClientMetadataelasticsearch-store/src/index-manager.ts:20
enableIndexMutationspublicbooleanelasticsearch-store/src/index-manager.ts:22

Methods

exists()

exists(index): Promise<boolean>

Defined in: elasticsearch-store/src/index-manager.ts:46

Verify the index exists

Parameters

ParameterType
indexstring

Returns

Promise<boolean>


formatIndexName()

formatIndexName<T>(config, useWildcard): string

Defined in: elasticsearch-store/src/index-manager.ts:57

Format the current index name.

Type Parameters

Type Parameter
T extends Record<string, any>

Parameters

ParameterTypeDefault valueDescription
configIndexConfig<T>undefined-
useWildcardbooleantrueif true a wildcard is added to the end of the end the index name

Returns

string


formatTemplateName()

formatTemplateName<T>(config): string

Defined in: elasticsearch-store/src/index-manager.ts:85

Format the template name, similar to formatIndexName except it excludes template wildcards and the time series parts of the index name.

Type Parameters

Type Parameter
T extends Record<string, any>

Parameters

ParameterType
configIndexConfig<T>

Returns

string


getMapping()

getMapping(index): Promise<IndicesGetMappingResponse>

Defined in: elasticsearch-store/src/index-manager.ts:290

Parameters

ParameterType
indexstring

Returns

Promise<IndicesGetMappingResponse>


getTemplate()

getTemplate(name, flat_settings): Promise<IndicesGetTemplateResponse>

Defined in: elasticsearch-store/src/index-manager.ts:381

Parameters

ParameterType
namestring
flat_settingsboolean

Returns

Promise<IndicesGetTemplateResponse>


indexSetup()

indexSetup<T>(config): Promise<boolean>

Defined in: elasticsearch-store/src/index-manager.ts:102

Safely setup a versioned Index, its template and any other required resources

Type Parameters

Type Parameter
T extends Record<string, any>

Parameters

ParameterType
configIndexConfig<T>

Returns

Promise<boolean>

a boolean that indicates whether the index was created or not


isIndexActive()

isIndexActive(index): Promise<boolean>

Defined in: elasticsearch-store/src/index-manager.ts:195

Parameters

ParameterType
indexstring

Returns

Promise<boolean>


migrateIndex()

migrateIndex<T>(options): Promise<boolean | ReindexResponse>

Defined in: elasticsearch-store/src/index-manager.ts:215

Perform an Index Migration

IMPORTANT This is a potentially dangerous operation and should only when the cluster is properly shutdown.

Type Parameters

Type Parameter
T extends Record<string, any>

Parameters

ParameterType
optionsMigrateIndexOptions<T>

Returns

Promise<boolean | ReindexResponse>

Todo

add support for timeseries and templated indexes

Todo

add support for complicated re-indexing behaviors


putMapping()

putMapping(index, type, properties): Promise<IndicesPutMappingResponse>

Defined in: elasticsearch-store/src/index-manager.ts:296

Parameters

ParameterType
indexstring
typestring
propertiesRecord<string, any>

Returns

Promise<IndicesPutMappingResponse>


updateMapping()

updateMapping(index, type, mapping, logger): Promise<void>

Defined in: elasticsearch-store/src/index-manager.ts:315

Safely update a mapping

WARNING: This only updates the mapping if it exists

Parameters

ParameterType
indexstring
typestring
mappingRecord<string, any>
loggerLogger

Returns

Promise<void>


upsertTemplate()

upsertTemplate(template, logger?): Promise<void>

Defined in: elasticsearch-store/src/index-manager.ts:395

Safely create or update a template

Parameters

ParameterType
templateESMapping
logger?Logger

Returns

Promise<void>


waitForIndexAvailability()

protected waitForIndexAvailability(index): Promise<void>

Defined in: elasticsearch-store/src/index-manager.ts:426

Parameters

ParameterType
indexstring

Returns

Promise<void>