Skip to content

Releases: miku/esbulk

esbulk 0.7.0

25 Mar 21:59
Compare
Choose a tag to compare
  • set the default docType -type to the empty string

ES7 removes types (https://www.elastic.co/guide/en/elasticsearch/reference/current/removal-of-types.html), so when no -type is set, we should be good with ES7. Otherwise, ES6 and earlier require a type, so it needs to be supplied explicitly (but that was most likely the case before, too).

Since this version, we have a testcontainers-go based test setup and run basic tests on ES 5, 6, 7 (see cast).

asciicast

esbulk 0.6.2

02 Nov 11:36
Compare
Choose a tag to compare
  • add -skipbroken flag to skip broken json, thanks @gsocgsoc!

esbulk 0.6.1

07 Sep 18:45
Compare
Choose a tag to compare

esbulk 0.6.0

19 Sep 21:34
Compare
Choose a tag to compare

esbulk 0.5.2

18 May 13:24
Compare
Choose a tag to compare
  • add -r flag for configurable refresh interval, #28.

esbulk 0.5.1

11 Jul 20:12
Compare
Choose a tag to compare

esbulk 0.5.0

19 Jun 09:36
Compare
Choose a tag to compare

Get rid of -host and -port flags, see #21.

These missing two flags make this release BACKWARDS INCOMPATIBLE.

Instead of:

$ esbulk -host 10.20.1.2 -port 9201 -index x file.ldj

Use:

$ esbulk -server 10.20.1.2:9201 -index x file.ldj

esbulk 0.4.14

26 Apr 19:17
Compare
Choose a tag to compare
  • Includes fixes for multi-server support and x-pack, via #19.

Thanks mumoshu!

esbulk 0.4.13

18 Apr 14:34
Compare
Choose a tag to compare
  • add flag to set replicas to zero during indexing (number of replicas is restored to old value on wrap-up)
  • updated docs
  • the -server flag can now be repeated, and the requests will be uniformly distributed among the given servers (there is no failover yet, which means, that if one server fails the indexing will stop)

esbulk 0.4.10

11 Feb 14:49
Compare
Choose a tag to compare

Fail, if -mapping is given, but cannot be applied.