mingyitianxia/elastic-certified-engineer

0011_zhenti的一些疑问

Opened this issue · 1 comments

1)cat & dog那道问题,用mapping char filter把cat and dog和cat & dog都映射成一个特殊字符,例如_catdog_,也能实现,不过适用范围很窄。。
2)04聚合实现,是不是对应the month and average magnitude of the month with the lagest average magnitude?
是否也可以用bucket_sort,对avg_mags进行desc排序,size:1来实现?
3)05,index_a reindex到index_b,是否少了一个管道?
题目是增加一个数组字段,a_pipeline里是把title变成了数组类型
PUT _ingest/pipeline/new_pipeline
{
"description": "",
"processors": [
{
"script": {
"lang": "painless",
"source": "ctx.length=ctx.title.length()"
}
},
{
"set": {
"field": "split_title",
"value": "{{title}}"
}
},
{
"split": {
"field": "split_title",
"separator": " "
}
}
]
}

1) 考试的时候,侧重能解决问题,按结果评分。 但,不要太偏门,不具备普适性。
2)如果能实现相同结果,也是可以的。
3)您提的非常对,感谢。我修复一下这个bug!