kibana/packages/kbn-es
Spencer 30efb21112
[7.x] [kbn/pm] throw an error if package doesn't have a script (#89438) (#89462)
Co-authored-by: spalger <spalger@users.noreply.github.com>
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2021-01-29 11:48:28 -07:00
..
scripts [7.x] Updating the License (#88343) (#88745) 2021-01-19 17:54:11 -08:00
src [kbn-es] Always use bundled JDK when starting Elasticsearch (#89437) (#89491) 2021-01-29 12:01:49 -05:00
jest.config.js [7.x] Updating the License (#88343) (#88745) 2021-01-19 17:54:11 -08:00
package.json [7.x] [kbn/pm] throw an error if package doesn't have a script (#89438) (#89462) 2021-01-29 11:48:28 -07:00
README.md
tsconfig.json

@kbn/es

A command line utility for running elasticsearch from source or archive.

Getting started

If running elasticsearch from source, elasticsearch needs to be cloned to a sibling directory of Kibana.

To run, go to the Kibana root and run node scripts/es --help to get the latest command line options.

Examples

Run a snapshot install with a trial license

node scripts/es snapshot --license=trial

Run from source with a configured data directory

node scripts/es source --Epath.data=/home/me/es_data

API

run

Start a cluster

var es = require('@kbn/es');
es.run({
  license: 'basic',
  version: 7.0,
})
.catch(function (e) {
  console.error(e);
  process.exitCode = 1;
});

Options

options.license

Type: String

License type, one of: trial, basic, gold, platinum

options.version

Type: String

Desired elasticsearch version

options['source-path']

Type: String

Cloned location of elasticsearch repository, used when running from source

options['base-path']

Type: String

Location where snapshots are cached