Ошибка запроса Elasticsearch в перколятном запросе в ES

Я использую запрос percolate в ES. Но я не объединяю запрос bool и не сортирую запрос:

Моя цель: сортировать цены на добавленную продукцию сегодня.

Мой существующий индекс

        PUT /product-alert
        {
            "mappings": {
                "doctype": {
                    "properties": {
                        "product_name":    { "type": "text"  }, 
                        "price": { "type": "double"},
                        "user_id":      { "type": "integer" },
                        "date" : { "type": "date" }
                    }
                },
                "queries": {
                    "properties": {
                        "query": {
                            "type": "percolator"
                        }
                    }
                }
            }
        }

У меня есть следующая ошибка.

  {
    "error": {
      "root_cause": [
        {
          "type": "illegal_argument_exception",
          "reason": "mapper [sort] of different type, current_type [text], merged_type [ObjectMapper]"
        }
      ],
      "type": "illegal_argument_exception",
      "reason": "mapper [sort] of different type, current_type [text], merged_type [ObjectMapper]"
    },
    "status": 400
  }

Эластичный запрос:

    PUT /product-alert/queries/1?refresh
    {
          "query": {
              "bool": {
                  "must": [
                      {
                          "query_string": {
                              "query": "(product_name:iphone)"
                          }
                      },
                      {
                          "range": {
                              "created_at": {
                                  "gte": "2017-05-12",
                                  "lte": "2017-05-12",
                                  "include_lower": true,
                                  "include_upper": true
                              }
                          }
                      }
                  ]
              }
          },
          "from": 0,
          "size": 200,
          "sort": [
              {
                  "price": {
                      "order": "asc"
                  }
              },
              "_score"
          ]
    }

Где моя вина? Сортировка работает 'сортировать': только '_ оценка', но это вредно для меня.

заранее спасибо

0 ответов

Другие вопросы по тегам