简体   繁体   中英

elasticsearch dsl translated from sql can't working

trying elasticsearch(6.4.2) sql rest api on yelp dataset,

read -r -d '' sql <<'EOF'
{
    "query":"select city, COUNT(*) AS c from \"yelp.business\" group by city"
}
EOF

curl -v -XPOST "http://$host/_xpack/sql?format=txt" -H'Content-Type: application/json' -d"$sql"

get right response

            city            |       c
----------------------------+---------------
Cleveland                   |2977
Cleveland Heights           |179
Cleveland Hghts.            |1
East Cleveland              |4
Mayfield Heights (Cleveland)|1

but tranlsate sql to dsl

query=`curl -v -XPOST "http://$host/_xpack/sql/translate?format=json" -H'Content-Type: application/json' -d"$sql"`

get following:

{
   "_source" : false,
   "size" : 0,
   "aggregations" : {
      "groupby" : {
         "composite" : {
            "sources" : [
               {
                  "2467" : {
                     "terms" : {
                        "order" : "asc",
                        "field" : "city.keyword",
                        "missing_bucket" : false
                     }
                  }
               }
            ],
            "size" : 1000
         }
      }
   },
   "stored_fields" : "_none_"
}

execute translated dsl on search request

curl -XGET "http://$host/antkrill.event/_search" -H 'Content-Type: application/json' -d"$query"

and get error

failed to find field [city.keyword] and [missing_bucket] is not set

why search with sql is ok, but error with translated dsl

我自己的问题!第二个查询是在不同的索引上使用翻译后的dsl执行的!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM