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
Another good find. When we create the scroll query to read data in, we specify each of the fields that we want to retrieve to cut down on transfer costs. The scroll request that ends up getting created here is:
The key here is that _source=a parameter. Elasticsearch looks for a field named a on the source values to return, and finds no such field, since the field's name is technically a.b. Thus, the a.b field is filtered out and an empty document is returned.
spark-1.6.2-bin-hadoop2.6, elasticsearch-5.0.0-beta1, elasticsearch-hadoop-5.0.0-beta1
Possibly related to #853
The text was updated successfully, but these errors were encountered: