elasticsearch-jdbc 从 mysql导入N个表,10T左右的数据,有没有好的方法?(欢迎讨论)
Elasticsearch | 作者 laoyang360 | 发布于2016年06月17日 | 阅读数:5600
1、只能类似官网对逐个表格,建立索引,如下形式:
{
"type" : "jdbc",
"jdbc" : {
"url" : "jdbc:mysql://localhost:3306/test",
"user" : "",
"password" : "",
"sql" : "select * from orders",
"index" : "myindex",
"type" : "mytype",
...
}
}
2.表与表之间的索引关联如何体现?
{
"type" : "jdbc",
"jdbc" : {
"url" : "jdbc:mysql://localhost:3306/test",
"user" : "",
"password" : "",
"sql" : "select * from orders",
"index" : "myindex",
"type" : "mytype",
...
}
}
2.表与表之间的索引关联如何体现?
2 个回复
qq123 - 90后IT精英
赞同来自:
sunyizhen
赞同来自: