-
Notifications
You must be signed in to change notification settings - Fork 46
Open
Labels
Milestone
Description
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
}
}