Skip to content

tool for moving elasticsearch data written in golang

License

Notifications You must be signed in to change notification settings

tsaikd/golasticdump

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

golasticdump

tool for moving elasticsearch data written in golang

Build Status

Install

  • with source code and golang
go get github.com/tsaikd/golasticdump/v7@latest

Examples

  • Copy an index from production to staging
golasticdump \
	--input="http://production.es.com:9200/my_index" \
	--output="http://staging.es.com:9200/my_index"
  • Copy an index from production to file
golasticdump \
	--input="http://production.es.com:9200/my_index" \
	--output="my_index.dump"
  • Copy indices
golasticdump \
	--input="http://production.es.com:9200/my_index-*" \
	--output="http://staging.es.com:9200"
  • Move indices
golasticdump --delete \
	--input="http://production.es.com:9200/my_index-*" \
	--output="http://staging.es.com:9200"
  • Merge indices
golasticdump --delete \
	--input="http://production.es.com:9200/my_index-*" \
	--output="http://staging.es.com:9200/merged_index"

Reference

inspired by taskrabbit/elasticsearch-dump

About

tool for moving elasticsearch data written in golang

Resources

License

Stars

Watchers

Forks

Packages

No packages published