Elastic Certified Engineer 认证考点介绍

1. ECE考试介绍

ECE指elastic公司于2018年6月29号推出的elastic certified engineer认证考试。

报考方式及考试注意事项:

  1. 考试版本自2021年7月1日起,由7.2升级为7.13
  2. 官网注册报名 ,缴费
  3. PSI系统预约时间考试(注意选择时区),远程在线考试
  4. 提前15分钟进PSI系统配合监考官检查环境
  5. 和监考官打字聊天,需要共享桌面语音和摄像头
  6. 可以使用google翻译,和监考官商量,进去桌面直接浏览器输入谷歌翻译网址即可,也建议使用chrome自带的翻译工具
谷歌浏览器自带翻译插件
  1. 考试系统web界面上有一排按钮,需要全部点绿进行声音,摄像头,桌面分享,按监考人员指挥缓慢操作
  2. 有些题目只需要保存是环境即可,有些题目需要复制json到答题框,不要复制url(跨集群检索需要复制url)
  3. Youtube两期官方考试介绍研讨会的视频要看一下,是es官方人员对考试的两次介绍,非常有用

2. 官网英文考纲

2.1. Installation and Configuration

  • Deploy and start an Elasticsearch cluster that satisfies a given set of requirements
  • Configure the nodes of a cluster to satisfy a given set of requirements
  • Secure a cluster using Elasticsearch Security
  • Define role-based access control using Elasticsearch Security

2.2. Indexing Data

  • Define an index that satisfies a given set of requirements
  • Perform index, create, read, update, and delete operations on the documents of an index
  • Define and use index aliases
  • Define and use an index template for a given pattern that satisfies a given set of requirements
  • Define and use a dynamic template that satisfies a given set of requirements
  • Use the Reindex API and Update By Query API to reindex and/or update documents
  • Define and use an ingest pipeline that satisfies a given set of requirements, including the use of Painless to modify documents

2.3. Queries

  • Write and execute a search query for terms and/or phrases in one or more fields of an index
  • Write and execute a search query that is a Boolean combination of multiple queries and filters
  • Highlight the search terms in the response of a query
  • Sort the results of a query by a given set of requirements
    Implement pagination of the results of a search query
  • Apply fuzzy matching to a query
  • Define and use a search template
  • Write and execute a query that searches across multiple clusters

2.4. Aggregations

  • Write and execute metric and bucket aggregations
  • Write and execute aggregations that contain sub-aggregations

2.5. Mappings and Text Analysis

  • Define a mapping that satisfies a given set of requirements
  • Define and use a custom analyzer that satisfies a given set of requirements
  • Define and use multi-fields with different data types and/or analyzers
  • Configure an index so that it properly maintains the relationships of nested arrays of objects

2.6. Cluster Administration

  • Allocate the shards of an index to specific nodes based on a given set of requirements
  • Configure shard allocation awareness and forced awareness for an index
  • Diagnose shard issues and repair a cluster's health
  • Backup and restore a cluster and/or specific indices
  • Configure a cluster for use with a hot/warm architecture
  • Configure a cluster for cross cluster search

3. 对应中文考纲

3.1 安装与配置

  • 部署启动集群满足给定的要求
  • 配置集群的节点满足给定要求
  • 使用security保护集群
  • 使用基于role的security访问控制
    可以参考以下知识点:
//节点属性
node.name: sinan04
node.master: true
node.data: true
node.ingest: true
node.ml: false
cluster.remote.connect: false
//allocate
node.attr.zone: zone2
node.attr.type: warm
//快照
path.repo: ["/home/caster/repo"]
//禁止内存交换/锁内存
swapoff -a
vim /etc/security/limits.conf
* hard memlock unlimited
* soft memlock unlimited
bootstrap.memory_lock: true
action.destructive_requires_name: true
//开启安全,考试集群有白金权限无需配置SSL
xpack.security.enabled: true

3.2 索引数据

  • 定义满足需求的索引
  • 在索引上操作index,create,read,update和delete
  • 定义使用别名
  • 定义并使用满足需求的索引模板
search template
  • 定义并使用满足需求的动态模板
match_mapping_type: 匹配类型
match/unmatch:匹配字段名
match_pattern:正则匹配
  • 使用reindex和update by query操作文档
  • 定义并使用满足需求的ingest pipeline(包括用painless)修改文档

3.3 查询

  • 一个或者多个字段进行terms/phrases检索
  • bool检索
  • 高亮
  • 排序
  • 分页(3种)
  • fuzzy匹配检索。
  • search template
  • 跨集群检索

3.4 聚合

  • 定义使用metric bucket聚合
  • 定义使用子聚合

3.5 映射和文本分析

  • 定义mapping
  • 自定义分词器
    参考以下分词器配置:
PUT myindex
{
  "settings": {
    "number_of_replicas": 1,
    "analysis": {
      "analyzer": {//分词器配置
        "my_analyzer": {//自定义分词器名称,含有a,b,c三部分
          "type": "custom",
          "tokenizer": "standard",
          "filter": [
            "my_synonym",
            "my_low",
            "my_filter"
          ],
          "char_filter": [
            "my_char_filter"
          ]
        }
      },
      "tokenizer": {},//a
      "filter": {//b
        "my_synonym": {//设置同义词
          "type": "synonym",
          "synonyms": [
            "foo,bar"
          ]
        },
        "my_low": {//转小写
          "type": "lowercase"
        },
        "my_filter": {//过滤长度5以下token
          "type": "length",
          "min": "5"
        }
      },
      "char_filter": {//c
        "my_char_filter": {//去掉单引号
          "type": "mapping",
          "mappings": [
            "'=>"
          ]
        }
      }
    }
  },
  "mappings": {
    "properties": {
      "text": {
        "type": "text",
        "analyzer": "my_analyzer"
      }
    }
  }
}
  • 多类型字段及不同分词器
  • Nested arrays类型使用

3.6 集群管理

  • 分配分片到指定节点
  • 分片感知/强制感知
  • 诊断解决分片问题
  • 备份恢复集群索引
  • 使用hot/warm架构
  • 跨集群查询
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 218,204评论 6 506
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 93,091评论 3 395
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 164,548评论 0 354
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,657评论 1 293
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,689评论 6 392
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,554评论 1 305
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,302评论 3 418
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 39,216评论 0 276
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,661评论 1 314
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,851评论 3 336
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,977评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,697评论 5 347
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 41,306评论 3 330
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,898评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 33,019评论 1 270
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 48,138评论 3 370
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,927评论 2 355

推荐阅读更多精彩内容

  • 久违的晴天,家长会。 家长大会开好到教室时,离放学已经没多少时间了。班主任说已经安排了三个家长分享经验。 放学铃声...
    飘雪儿5阅读 7,523评论 16 22
  • 创业是很多人的梦想,多少人为了理想和不甘选择了创业来实现自我价值,我就是其中一个。 创业后,我由女人变成了超人,什...
    亦宝宝阅读 1,811评论 4 1
  • 今天感恩节哎,感谢一直在我身边的亲朋好友。感恩相遇!感恩不离不弃。 中午开了第一次的党会,身份的转变要...
    迷月闪星情阅读 10,566评论 0 11
  • 可爱进取,孤独成精。努力飞翔,天堂翱翔。战争美好,孤独进取。胆大飞翔,成就辉煌。努力进取,遥望,和谐家园。可爱游走...
    赵原野阅读 2,727评论 1 1