Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add note to migration docs on silent batch mode #29365

Merged
merged 4 commits into from
Apr 5, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion docs/reference/migration/migrate_6_3.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,15 @@ See {plugins}/repository-gcs-client.html#repository-gcs-client[Google Cloud Stor
save disk space. As a consequence, database files had to be loaded in memory. Now the default database files
that are stored uncompressed as `.mmdb` files which allows to memory-map them and save heap memory. Any
custom database files must also be stored uncompressed. Consequently, the `database_file` property in any
ingest pipelines that use the Geoip Processor must refer to the uncompressed database files as well.
ingest pipelines that use the Geoip Processor must refer to the uncompressed database files as well.

==== Using the plugin installer without a TTY

The Elasticsearch plugin installer (`elasticsearch-plugin install`) would
previously silently accept additional security permissions required by a plugin
if standard input was closed or there was no TTY attached (e.g., `docker exec
<container ID> elasticsearch-plugin install`). This silent accepting of
additional security permissions has been removed. Now, a user must deliberately
accept these permissions either by keeping standard input open and attaching a
TTY (i.e., using interactive mode to accept the permissions), or by passing the
`--batch` flag.