- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在后端使用 Elasticsearch 构建一个 cms,我的团队决定使用 Elasticsearch 。我是新手。我主要在以前的项目中使用 mongoose 和 mongodb。在 mongodb 中,如果我错误地分配了一个字段或完全跳过了一个必填字段,mongodb 会抛出错误。
有没有办法在 elasticsearch 中强制执行必填字段?
最佳答案
没有内置功能,这将允许您在映射中定义必填/必填字段。许多人会建议您在客户端进行检查。
但是,在 Elasticsearch 5.x 中,您可以使用 Ingest 节点来实现这一点。
You can use ingest node to pre-process documents before the actual indexing takes place. This pre-processing happens by an ingest node that intercepts bulk and index requests, applies the transformations, and then passes the documents back to the index or bulk APIs.
To pre-process documents before indexing, you define a pipeline that specifies a series of processors. Each processor transforms the document in some way.
POST _ingest/pipeline/_simulate
{
"pipeline": {
"processors": [
{
"script": {
"lang": "painless",
"inline": "if (ctx.title == null) { throw new Exception('Document does not have the *title* field') }"
}
}
]
},
"docs": [
{
"_index": "index",
"_type": "type",
"_id": "1",
"_source": {
"title": "Elasticsearch 101"
}
},
{
"_index": "index",
"_type": "type",
"_id": "2",
"_source": {
"company": "Elastic"
}
}
]
}
关于elasticsearch - 如何在 Elasticsearch 中强制执行必填字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42928101/
在使用网站、加载内容等一段时间后,此消息显示“Fill:SelectCommand.Connection 属性尚未初始化”!我认为这是因为 sql 连接,但不确定......我想知道我能做些什么来防止
我是一名优秀的程序员,十分优秀!