0.0.13 • Published 4 years ago

@lastcallmedia/elasticsearch-migrate v0.0.13

Weekly downloads
6
License
MIT
Repository
github
Last release
4 years ago

Elasticsearch Migrate

This is a schema migration framework for Elasticsearch (7+).

To use it: 1. npm install @lastcall/elasticsearch-migrate 2. Configure it.

Configuration:

To configure migrations, create a new entry in your project's package.json with the key elasticsearch-migrate. Example:

{
...
  "elasticsearch-migrate": {
    "root": ".",
    "migrations": ["./dist/migrations/*.js"],
    "elasticsearch": "http://localhost:9200",
    "index": "migrations"
  }
}

Each configuration option is optional, with a good default provided. Options are described below:

  • root: The root directory to use when resolving the migrations pattern (defaults to the current working directory).
  • migrations: Glob patterns pointing to migration files, which must be in .js format. Defaults to ./migrations/*.js.
  • elasticsearch: Configuration options for the Elasticsearch client. May be a string URI, a relative path pointing to a javascript file that exports a fully configured @elastic/elasticsearch Client object, or an object specifying the Elasticsearch configuration.
  • index: The Elasticsearch index to use for tracking migration status. Defaults to migrations.
0.0.13

4 years ago

0.0.11

4 years ago

0.0.12

4 years ago

0.0.10

4 years ago

0.0.9

4 years ago

0.0.6

4 years ago