1.0.0 • Published 6 years ago

es-bulk-update-builder v1.0.0

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

es-bulk-update-builder

Bulk update request body builder for Elasticsearch

npm version Codeship Status for stevejay/es-bulk-update-builder Coverage Status license

NPM

Install

$ npm install --save es-bulk-update-builder

Usage

Usage is basically as follows:

const BulkUpdateBuilder = require('es-bulk-update-builder');

const body = new BulkUpdateBuilder()
    .index({ name: 'my-doc' }, 'some-index', 'some-type', 'some-id', 3)
    .update({ name: 'other-doc' }, 'other-index', 'other-type', 'other-id', 4)
    .delete('another-index', 'another-type', 'another-id', 5)
    .build();

// The body variable can now be passed to the JavaScript elasticsearch client, e.g.:
// client.bulk({ body: body });

The index method is for adding a document, the update method is for updating a document, and the delete method is for deleting a document.

For each action you can specify a version number, for example 3 in the following example:

const body = new BulkUpdateBuilder()
    .index({ name: 'my-doc' }, 'some-index', 'some-type', 'some-id', 3);

If you do specify a version, the version type is set to external. You can override that by specifying the desired version type, which in the following example is external_gte:

const body = new BulkUpdateBuilder()
    .index({ name: 'my-doc' }, 'some-index', 'some-type', 'some-id', 3, 'external_gte');

To specify no versioning information, simply omit it:

const body = new BulkUpdateBuilder()
    .index({ name: 'my-doc' }, 'some-index', 'some-type', 'some-id');

License

MIT

1.0.0

6 years ago

0.2.2

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.3

6 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago