Skip to content

Instantly share code, notes, and snippets.

@sergibondarenko
Created July 13, 2016 14:44
Show Gist options
  • Save sergibondarenko/3d251ba29054b7df3f6f8aea1a81e57f to your computer and use it in GitHub Desktop.
Save sergibondarenko/3d251ba29054b7df3f6f8aea1a81e57f to your computer and use it in GitHub Desktop.
Reindex data via Logstash
input {
elasticsearch {
hosts => ["es0.dev.ukcris"]
index => "carenotes_etl"
}
}
output {
stdout {
codec => rubydebug
}
elasticsearch {
hosts => ["es0.dev.ukcris"]
manage_template => false
index => "carenotes_etl_enhsearch"
workers => 5
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment