原文链接 : http://zeppelin.apache.org/docs/0.7.2/interpreter/elasticsearch.html

译文链接 : http://cwiki.apachecn.org/pages/viewpage.action?pageId=10030782

贡献者 : 片刻 ApacheCN Apache中文网

概述

Elasticsearch是一个高度可扩展的开源全文搜索和分析引擎。它允许您快速,实时地存储,搜索和分析大量数据。它通常用作为具有复杂的搜索功能和要求的应用程序提供的底层引擎/技术。

配置

属性默认描述
elasticsearch.cluster.nameelasticsearch群集名称
elasticsearch.hostlocalhost集群中节点的主机
elasticsearch.port9300连接端口(重要提示:它取决于客户端类型,传输或http)
elasticsearch.client.typetransportElasticsearch(transport或http)的客户端类型(Important:端口取决于此值)
elasticsearch.basicauth.username 基本认证用户名(http)
elasticsearch.basicauth.password 基本认证密码(http)
elasticsearch.result.size10搜索查询结果集的大小

Elasticsearch 解释器 - 图1

注意#1:您可以添加更多属性来配置Elasticsearch客户端。

注意#2:如果使用Shield,您可以添加一个名称为shield.user包含名称和密码(格式:)的值的属性username:password。有关Shield配置的更多详细信息,请参阅Shield参考指南。不要忘记,在解释器目录(ZEPPELIN_HOME/interpreters/elasticsearch)中复制屏蔽客户端jar 。

启用弹性搜索解释器

在笔记本中,要启用弹性搜索解释器,请单击齿轮图标,然后选择弹性搜索

使用弹性搜索解释器

在段落中,用于%elasticsearch选择Elasticsearch解释器,然后输入所有命令。要获取可用命令的列表,请使用help

  1. %elasticsearch
  2. help
  3.  
  4. Elasticsearch interpreter:
  5. General format: <command> /<indices>/<types>/<id> <option> <JSON>
  6. - indices: list of indices separated by commas (depends on the command)
  7. - types: list of document types separated by commas (depends on the command)
  8. Commands:
  9. - search /indices/types <query>
  10. . indices and types can be omitted (at least, you have to provide '/')
  11. . a query is either a JSON-formatted query, nor a lucene query
  12. - size <value>
  13. . defines the size of the result set (default value is in the config)
  14. . if used, this command must be declared before a search command
  15. - count /indices/types <query>
  16. . same comments as for the search
  17. - get /index/type/id
  18. - delete /index/type/id
  19. - index /index/type/id <json-formatted document>
  20. . the id can be omitted, elasticsearch will generate one

提示:使用(Ctrl +。)进行自动完成。

得到

使用get命令,您可以通过ID查找文档。结果是一个JSON文档。

  1. %elasticsearch
  2. get /index/type/id

例:

Elasticsearch 解释器 - 图2

搜索

使用该search命令,您可以向Elasticsearch发送搜索查询。有两种查询格式:

  • 您可以提供JSON格式的查询,这正是您在使用Elasticsearch的REST API时提供的。
  • 您还可以提供a的内容query_string
  1. %elasticsearch
  2. search /index1,index2,.../type1,type2,... <JSON document containing the query or query_string elements>

如果要修改结果集的大小,可以在搜索命令之前添加一个设置大小的行。

  1. %elasticsearch
  2. size 50
  3. search /index1,index2,.../type1,type2,... <JSON document containing the query or query_string elements>

搜索查询还可以包含聚合。如果至少有一个聚合,则显示第一个聚合的结果,否则显示搜索命中。

例子:

  • 使用JSON查询:
  1. %elasticsearch
  2. search / { "query": { "match_all": { } } }
  3.  
  4. %elasticsearch
  5. search /logs { "query": { "query_string": { "query": "request.method:GET AND status:200" } } }
  6.  
  7. %elasticsearch
  8. search /logs { "aggs": {
  9. "content_length_stats": {
  10. "extended_stats": {
  11. "field": "content_length"
  12. }
  13. }
  14. } }
  • 使用query_string元素:
  1. %elasticsearch
  2. search /logs request.method:GET AND status:200
  3.  
  4. %elasticsearch
  5. search /logs (404 AND (POST OR DELETE))

重要提示:Elasticsearch中的文档是一个JSON文档,因此它是层次结构的,而不是SQL表中的一行。对于弹性解释器,搜索查询的结果是平坦的。

假设我们有一个JSON文档:

  1. {
  2. "date": "2015-12-08T21:03:13.588Z",
  3. "request": {
  4. "method": "GET",
  5. "url": "/zeppelin/4cd001cd-c517-4fa9-b8e5-a06b8f4056c4",
  6. "headers": [ "Accept: *.*", "Host: apache.org"]
  7. },
  8. "status": "403",
  9. "content_length": 1234
  10. }

数据将如下所示:

CONTENT_LENGTH日期request.headers [0]request.headers [1]request.methodrequest.url状态
12342015-12-08T21:03:13.588ZAccept: .Host: apache.orgGET/zeppelin/4cd001cd-c517-4fa9-b8e5-a06b8f4056c4403

例子:

  • 包含结果的表格:Elasticsearch 解释器 - 图3

  • 您还可以使用预定义的图表: Elasticsearch 解释器 - 图4

  • 使用JSON查询:Elasticsearch 解释器 - 图5
  • 使用包含fields参数(用于过滤响应中的字段)的JSON查询:在这种情况下,响应中的所有字段值都是数组,因此,在平坦化结果之后,所有字段名称的格式为field_name[x] Elasticsearch 解释器 - 图6
  • 使用查询字符串: Elasticsearch 解释器 - 图7
  • 使用包含多值度量聚合的查询:Elasticsearch 解释器 - 图8
  • 使用包含多桶聚合的查询:Elasticsearch 解释器 - 图9

计数

使用该count命令,您可以对某些索引和类型中可用的文档进行计数。您还可以提供查询。

  1. %elasticsearch
  2. count /index1,index2,.../type1,type2,... <JSON document containing the query OR a query string>

例子:

  • 没有查询:

Elasticsearch 解释器 - 图10

  • 有一个查询: Elasticsearch 解释器 - 图11

指数

使用该index命令,您可以在Elasticsearch中插入/更新文档。

  1. %elasticsearch
  2. index /index/type/id <JSON document>
  3.  
  4. %elasticsearch
  5. index /index/type <JSON document>

删除

使用该delete命令,您可以删除文档。

  1. %elasticsearch
  2. delete /index/type/id

应用Zeppelin动态表单

您可以在查询内使用Zeppelin 动态表单。您可以同时使用text inputselect form参数化功能。

  1. %elasticsearch
  2. size ${limit=10}
  3. search /index/type { "query": { "match_all": { } } }