You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm Sorry. The nested field is not on the roadmap currently. But It is a good idea if we could utilize the query_string of ES to implement such feature.
Really great project! One thing I was curious about is supported nested field names. For example:
foo.bar
foo.baz
foo.zap
Our schema in Elasticsearch supports one-level nesting, and I was having hard time getting the following to work.
df.filter(df.foo.bar == 'jane').select('last_name', 'email','age').collect()
Any help or suggestions would be appreciated. If was searching directly against the ES REST API the filter looks like:
"query": {
"filtered": {
"query": {
"query_string": {
"query": "+foo.bar:jane",
"analyze_wildcard": true,
"lowercase_expanded_terms": false
}
}
The text was updated successfully, but these errors were encountered: