码迷,mamicode.com
首页 >  
搜索关键字:elk logstash kibana elasticsearch    ( 6357个结果
canal实时同步mysql表到es
方案说明 canal是阿里云开源的解析binlog组件,同步到ES需要deployer和adapter两部分: deployer解析MySQL binlog,adapter将数据写入到ES 优点 开源成熟稳定 简单易用 缺点 不支持全量数据初始化 部署 logstash进行全量 /etc/hosts ...
分类:数据库   时间:2021-06-28 17:36:08    阅读次数:0
Elasticsearch-文档查询
Elasticsearch-文档查询 数据准备 查询 简单查询 mall/goods/1 条件查询 GET mall/goods/_search?q=b_name: "如何" 复杂查询 匹配查询 GET mall/goods/_search { "query": { "match": { "b_na ...
分类:其他好文   时间:2021-06-22 18:01:13    阅读次数:0
Elasticsearch-文档精确查询(term)
Elasticsearch-文档精确查询(term) match & term match:匹配查询 term:精准查询 term&match + text&keyword term&match 区别 term:精确查询,对查询的值不分词,直接进倒排索引去匹配。 match:模糊查询,对查询的值分词 ...
分类:其他好文   时间:2021-06-22 17:59:57    阅读次数:0
elasticSearch基本操作
1、查看所有索引 GET _cat/indices 2、创建一个新的索引 PUT /test { "mappings": { "_doc": { "properties": { "id": {"type": "keyword"}, "title": {"type": "keyword"}, "esD ...
分类:其他好文   时间:2021-06-21 21:11:29    阅读次数:0
Docker安装Elasticsearch
1.在docker hub中搜索和查看对应的版本 https://hub.docker.com 2.在docker中获取对应的镜像 docker pull elasticsearch:7.13.2 3.运行镜像 docker run --name elasticsearch -d -e ES_JAV ...
分类:其他好文   时间:2021-06-19 19:21:45    阅读次数:0
centos安装kibana
1.下载安装 wget https://artifacts.elastic.co/downloads/kibana/kibana-7.0.0-x86_64.rpm yum install -y kibana-7.0.0-x86_64.rpm 2.修改配置文件 vim /etc/kibana/kiba ...
分类:其他好文   时间:2021-06-16 18:25:40    阅读次数:0
Elasticsearch之-文档操作
一 新增文档 #新增一个id为1的书籍(POST和PUT都可以) POST lqz/_doc/1/_create #POST lqz/_doc/1 #POST lqz/_doc 会自动创建id,必须用Post { "title":"红楼梦", "price":12, "publish_addr":{ ...
分类:其他好文   时间:2021-06-16 17:39:04    阅读次数:0
Elasticsearch之-查询
1 match和term查询 # 并且和或者的条件 #并且 GET t3/doc/_search { "query": { "bool": { "must": [ { "match": { "title": "beautiful" } }, { "match": { "desc": "beautif ...
分类:其他好文   时间:2021-06-16 17:37:02    阅读次数:0
Python中集成es两种方式
1、原生集成 # https://github.com/elastic/elasticsearch-py # https://github.com/elastic/elasticsearch-dsl-py # Official low-level client for Elasticsearch # ...
分类:编程语言   时间:2021-06-16 17:36:10    阅读次数:0
springboot 使用elasticsearch-rest-high-level-client操作 es
https://mp.weixin.qq.com/s/fgi6Xd1Xbs4RJSDGBRcZxQ es7.x以上的版本引用了6.8的elasticsearch-rest-client包会出现java.lang.ClassNotFoundException: org.elasticsearch.cl ...
分类:编程语言   时间:2021-06-16 17:31:43    阅读次数:0
6357条   上一页 1 2 3 4 ... 636 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!