Opensearch 使用字符串和对象索引键

问题描述 投票:0回答:1

我有两个应用程序,一个发送响应:“somestring”,另一个发送对象响应:“{statusCode:200}”

我的索引如下

  response:
    dynamic: true
    properties:
      statusCode:
        type: integer

通过上面的映射,我遇到了以下错误

#”,

我希望接收任何值和索引(如果对象并且具有状态代码),这可能吗?

elasticsearch logging opensearch
1个回答
0
投票

Tldr;

不确定 opensearch 是否支持它。但从 8.3 版本开始,elasticsearch 添加了对“子对象”的支持。 演示

PUT 79180603/ { "mappings":{ "subobjects": false } } POST _bulk {"index":{"_index":"79180603"}} {"response": "somhting string"} {"index":{"_index":"79180603"}} {"response.statusCode": 200} GET 79180603/_search

	
© www.soinside.com 2019 - 2024. All rights reserved.