我正在使用logstash来管理我的应用程序日志。我想存储一些上下文数据以及日志条目。这些上下文数据不必索引。但它可以具有不同的结构/数据类型,具体取决于应用程序上下文。例如,上下文可以采用以下任何格式
{
error: "This is a sample error message"
}
{
error: [
"This is an error message",
"This is another message",
"This is the final message"
]
}
{
error: {
user_name: "Username cannot be empty",
user_email: "Email address is already in use",
user_password: "Passwords do not match"
}
}
ElasticSearch中是否可以有这样的字段?该字段不必编入索引,只需要存储即可。
答案 0 :(得分:3)
我认为不可能完全按照你的要求行事。但是,您可以免费获得前两个示例,因为任何字段都可以是列表:
curl -XDELETE "http://localhost:9200/test_index"
curl -XPUT "http://localhost:9200/test_index" -d'
{
"mappings": {
"doc": {
"properties": {
"error": {
"type": "string",
"index": "not_analyzed"
}
}
}
}
}'
curl -XPUT "http://localhost:9200/test_index/doc/1" -d'
{
"error": "This is a sample error message"
}'
curl -XPUT "http://localhost:9200/test_index/doc/2" -d'
{
"error": [
"This is an error message",
"This is another message",
"This is the final message"
]
}'
curl -XPOST "http://localhost:9200/test_index/_search"
...
{
"took": 2,
"timed_out": false,
"_shards": {
"total": 5,
"successful": 5,
"failed": 0
},
"hits": {
"total": 2,
"max_score": 1,
"hits": [
{
"_index": "test_index",
"_type": "doc",
"_id": "1",
"_score": 1,
"_source": {
"error": "This is a sample error message"
}
},
{
"_index": "test_index",
"_type": "doc",
"_id": "2",
"_score": 1,
"_source": {
"error": [
"This is an error message",
"This is another message",
"This is the final message"
]
}
}
]
}
}
或者,您可以根据第三个示例设置映射,然后只使用每个文档所需的字段(大概应用程序代码复杂化):
curl -XDELETE "http://localhost:9200/test_index"
curl -XPUT "http://localhost:9200/test_index"
curl -XPUT "http://localhost:9200/test_index/doc/3" -d'
{
"error": {
"user_name": "Username cannot be empty",
"user_email": "Email address is already in use",
"user_password": "Passwords do not match"
}
}'
curl -XGET "http://localhost:9200/test_index/_mapping"
...
{
"test_index": {
"mappings": {
"doc": {
"properties": {
"error": {
"properties": {
"user_email": {
"type": "string"
},
"user_name": {
"type": "string"
},
"user_password": {
"type": "string"
}
}
}
}
}
}
}
}
所以基本上你的问题的直接答案是" No",除非我遗漏了某些东西(很可能)。
以下是我使用的代码:
http://sense.qbox.io/gist/18476aa6c2ad2fa554b472d09934559c884bec33