
数据迁移
ES6.5.0数据迁移至ES7.6.2
Elasticsearch • kaiser1992 回复了问题 • 6 人关注 • 5 个回复 • 1315 次浏览 • 2021-03-02 21:35
elasticsearch 数据迁移 源集群不停止写服务
Elasticsearch • rochy 回复了问题 • 3 人关注 • 1 个回复 • 1027 次浏览 • 2019-01-22 17:06
求跨集群迁移数据的方案
Elasticsearch • laoyang360 回复了问题 • 3 人关注 • 1 个回复 • 2326 次浏览 • 2018-06-07 23:41
es数据迁移
Elasticsearch • JackGe 回复了问题 • 6 人关注 • 3 个回复 • 5670 次浏览 • 2018-04-25 09:47
elasticsearch做es整体数据迁移怎么做的
Elasticsearch • medcl 回复了问题 • 4 人关注 • 2 个回复 • 2767 次浏览 • 2017-12-05 09:38
请问如何将ES5的数据按照自定义需求导入到ES6的集群中!
Elasticsearch • kennywu76 回复了问题 • 2 人关注 • 1 个回复 • 1262 次浏览 • 2017-11-30 16:39
各位大神,你们在ELK迁移的时候,要先把原来的elk服务停掉吗?那这段时间数据没有写进elk怎么办?
Elasticsearch • kennywu76 回复了问题 • 3 人关注 • 1 个回复 • 2466 次浏览 • 2017-09-14 21:06
数据迁移问题
Elasticsearch • laoyang360 回复了问题 • 5 人关注 • 3 个回复 • 1933 次浏览 • 2017-08-14 18:26
Elasticsearch数据迁移问题, 从2.x到5.x?
Elasticsearch • BrickXu 回复了问题 • 3 人关注 • 2 个回复 • 2943 次浏览 • 2017-07-21 11:21
es0.9升级es5.1.2数据迁移的方法,求大神,在线等
Elasticsearch • yiyezhiqiu425 回复了问题 • 3 人关注 • 2 个回复 • 3144 次浏览 • 2017-06-13 17:54
发布个es迁移工具:elasticsearch-migration
Elasticsearch • medcl 发表了文章 • 133 个评论 • 23428 次浏览 • 2016-05-23 17:09
#copy index index_name from 192.168.1.x to 192.168.1.y:9200
./bin/esm -s http://192.168.1.x:9200 -d http://192.168.1.y:9200 -x index_name -w=5 -b=10 -c 10000
#copy index src_index from 192.168.1.x to 192.168.1.y:9200 and save with dest_index
./bin/esm -s http://localhost:9200 -d http://localhost:9200 -x src_index -y dest_index -w=5 -b=100
#support Basic-Auth
./bin/esm -s http://localhost:9200/ -x "src_index" -y "dest_index" -d http://localhost:9201 -n admin:111111
#copy settings and override shard size
./bin/esm -s http://localhost:9200/ -x "src_index" -y "dest_index" -d http://localhost:9201 -m admin:111111 -c 10000 --shards=50 --copy_settings
#copy settings and mapping, recreate target index, add query to source fetch, refresh after migration
./bin/esm -s http://localhost:9200/ -x "src_index" -q=query:phone -y "dest_index" -d http://localhost:9201 -c 10000 --shards=5 --copy_settings --copy_mapping --force --refresh
#dump elasticsearch documents into local file
./bin/esm -s http://localhost:9200 -x "src_index" -m admin:111111 -c 5000 -b -q=query:mixer --refresh -o=dump.bin
#loading data from dump files, bulk insert to another es instance
./bin/esm -d http://localhost:9200 -y "dest_index" -n admin:111111 -c 5000 -b 5 --refresh -i=dump.bin
ES6.5.0数据迁移至ES7.6.2
回复Elasticsearch • kaiser1992 回复了问题 • 6 人关注 • 5 个回复 • 1315 次浏览 • 2021-03-02 21:35
elasticsearch 数据迁移 源集群不停止写服务
回复Elasticsearch • rochy 回复了问题 • 3 人关注 • 1 个回复 • 1027 次浏览 • 2019-01-22 17:06
elasticsearch做es整体数据迁移怎么做的
回复Elasticsearch • medcl 回复了问题 • 4 人关注 • 2 个回复 • 2767 次浏览 • 2017-12-05 09:38
请问如何将ES5的数据按照自定义需求导入到ES6的集群中!
回复Elasticsearch • kennywu76 回复了问题 • 2 人关注 • 1 个回复 • 1262 次浏览 • 2017-11-30 16:39
各位大神,你们在ELK迁移的时候,要先把原来的elk服务停掉吗?那这段时间数据没有写进elk怎么办?
回复Elasticsearch • kennywu76 回复了问题 • 3 人关注 • 1 个回复 • 2466 次浏览 • 2017-09-14 21:06
Elasticsearch数据迁移问题, 从2.x到5.x?
回复Elasticsearch • BrickXu 回复了问题 • 3 人关注 • 2 个回复 • 2943 次浏览 • 2017-07-21 11:21
es0.9升级es5.1.2数据迁移的方法,求大神,在线等
回复Elasticsearch • yiyezhiqiu425 回复了问题 • 3 人关注 • 2 个回复 • 3144 次浏览 • 2017-06-13 17:54
发布个es迁移工具:elasticsearch-migration
Elasticsearch • medcl 发表了文章 • 133 个评论 • 23428 次浏览 • 2016-05-23 17:09
#copy index index_name from 192.168.1.x to 192.168.1.y:9200
./bin/esm -s http://192.168.1.x:9200 -d http://192.168.1.y:9200 -x index_name -w=5 -b=10 -c 10000
#copy index src_index from 192.168.1.x to 192.168.1.y:9200 and save with dest_index
./bin/esm -s http://localhost:9200 -d http://localhost:9200 -x src_index -y dest_index -w=5 -b=100
#support Basic-Auth
./bin/esm -s http://localhost:9200/ -x "src_index" -y "dest_index" -d http://localhost:9201 -n admin:111111
#copy settings and override shard size
./bin/esm -s http://localhost:9200/ -x "src_index" -y "dest_index" -d http://localhost:9201 -m admin:111111 -c 10000 --shards=50 --copy_settings
#copy settings and mapping, recreate target index, add query to source fetch, refresh after migration
./bin/esm -s http://localhost:9200/ -x "src_index" -q=query:phone -y "dest_index" -d http://localhost:9201 -c 10000 --shards=5 --copy_settings --copy_mapping --force --refresh
#dump elasticsearch documents into local file
./bin/esm -s http://localhost:9200 -x "src_index" -m admin:111111 -c 5000 -b -q=query:mixer --refresh -o=dump.bin
#loading data from dump files, bulk insert to another es instance
./bin/esm -d http://localhost:9200 -y "dest_index" -n admin:111111 -c 5000 -b 5 --refresh -i=dump.bin