博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
利用elasticsearch-dump实现es索引数据迁移附脚本
阅读量:5140 次
发布时间:2019-06-13

本文共 1305 字,大约阅读时间需要 4 分钟。

1、安装环境

CentOS Linux release 7.5.1804 (Core)
  • 1

2、安装nodejs

yum install -y nodejs
  • 1

3、验证nodejs

[root@localhost yum.repos.d]# node -vv8.12.0[root@localhost yum.repos.d]# npm -v 6.4.1
  • 1
  • 2
  • 3
  • 4

4、安装elasticsearch-dump

npm install elasticdump
  • 1

5、验证安装

进入elasticdump/bin目录下

cd node_modules/elasticdump/bin/
  • 1

执行

./elasticdump
  • 1

出现

Fri, 19 Oct 2018 07:03:15 GMT | Error Emitted => {
"errors":["`input` is a required input","`output` is a required input"]}
  • 1

报错是因为没有输入参数

6、使用dump迁移索引

#拷贝索引

elasticdump 	--input=http://production.es.com:9200/my_index 	--output=http://staging.es.com:9200/my_index 	--type=mapping
  • 1
  • 2
  • 3
  • 4

#拷贝数据

elasticdump 	--input=http://production.es.com:9200/my_index 	--output=http://staging.es.com:9200/my_index 	--type=data
  • 1
  • 2
  • 3
  • 4

#拷贝所有索引

elasticdump  	--input=http://production.es.com:9200/ 	--output=http://staging.es.com:9200/ 	--all=true
  • 1
  • 2
  • 3
  • 4

7、迁移实战

为了方便操作写了一个脚本,仅供参考。

#!/bin/bashecho -n "源ES地址: "read oldecho -n "目标ES地址: " read new echo -n "源索引名: " read old_index echo -n "目标索引名: " read new_index cd /root/node_modules/elasticdump/bin/ ./elasticdump --input=$old/$old_index --output=$new/$new_index --type=mapping &>> /root/dump.log ./elasticdump --input=$old/$old_index --output=$new/$new_index --type=data &>> /root/dump.log

转载于:https://www.cnblogs.com/agang-php/p/11611769.html

你可能感兴趣的文章
提炼游戏引擎系列:第一次迭代
查看>>
Django 学习
查看>>
Android的事件处理机制详解(二)-----基于监听的事件处理机制
查看>>
s5-12 RIP
查看>>
Linux-以指定用户运行redis
查看>>
Linux-socket的close和shutdown区别及应用场景
查看>>
初探Oracle全栈虚拟机---GraalVM
查看>>
移动端的点击滚动逻辑实现。
查看>>
xpath
查看>>
parted分区
查看>>
抛出错误
查看>>
Can't play local SWF file in Media Player
查看>>
图片标签img
查看>>
JavaScript语言中文参考手册.chm
查看>>
表哥的Access入门++以Excel视角快速学习数据库知识pdf
查看>>
day29 jq
查看>>
TC 配置插件
查看>>
关于异步reset
查看>>
索引优先队列的工作原理与简易实现
查看>>
SPOJ - DISUBSTR Distinct Substrings (后缀数组)
查看>>