摘要:
geoDistanceRangeQuery 圆形查询 geoBoundingBoxQuery 矩形查询 geoPolygonQuery 多边形查询 1、创建mapping //https://blog.csdn.net/wuzhiwei549/article/details/80537753 @Te 阅读全文
摘要:
1、AdminAPI.java package es; import org.elasticsearch.action.admin.indices.create.CreateIndexRequestBuilder; import org.elasticsearch.client.AdminClien 阅读全文
摘要:
1、es是基于lucene开发的一个分布式全文索引框架。往ES中存储和从ES中查询,格式为Json 索引:Index 相当于数据库中的database 类型:type 相当于数据库中的table 主键:id 相当于数据库中的主键 往ES中存储数据,其实就是往ES中的index下的type存储Json 阅读全文
摘要:
1、当单台ES的status为yellowd的时候 curl -XPUT "http://localhost:9200/_settings" -d '{ "number_of_replicas" : 0 }' 记住:这个是将副本碎片删了,但是也会导致这台机器脱离集群,等这台机器status为gree 阅读全文
摘要:
1、并集: a和b所有元素的集合 -- 全连接 并集: a和b所有元素的集合 SELECT a.id id , a.user_name ausername, a.score ascore , b.user_name busername ,b.score bscore FROM cj a LEFT J 阅读全文
摘要:
1、隐式方法 package base /** * @author yangwj * @date 2020/8/7 17:41 */ object ImplicitDemo { // implicit class Caculate(x:Int) { // // def add(y:Int):Int= 阅读全文
摘要:
1、查看sql插件github https://github.com/NLPchina/elasticsearch-sql 2、安装 1、cd elasticsearch #进入目录 2、./bin/elasticsearch-plugin install https://github.com/NL 阅读全文
摘要:
1、下载分词器包 https://github.com/medcl/elasticsearch-analysis-ik/releases/tag/v5.4.3 2、将分词器解压并放入plugins目录下。(一定要在plugins下面创建一个ik文件,然后将解压的elasticsearch-analy 阅读全文
摘要:
1、更新centos7的库 sudo yum update -y 2、安装一系列文件(已安装可以不安装) sudo rpm -ivh http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm sudo rpm -ivh 阅读全文
摘要:
1、es是基于lucene开发的一个分布式全文索引框架。往ES中存储和从ES中查询,格式为Json 索引:Index 相当于数据库中的database类型:type 相当于数据库中的table主键:id 相当于数据库中的主键往ES中存储数据,其实就是往ES中的index下的type存储Json数据R 阅读全文