Hi, When we run the following code:
from elasticsearch import Elasticsearch from elasticsearch.helpers import reindex if __name__ == "__main__": es = Elasticsearch() reindex(es, source_index='2014_03', target_index='2014_03_new', chunk_size =500, scroll='5m') We get the 2014_03_new index with all the fields but the _parent field inserted right. However, the _parent field, which we have in most of the documents of the original index is consistently missing in all of the documents of the new index. It looks like a bug in the client's code. We will appreciate your help. Regards, Costya, Totango Metrics. -- You received this message because you are subscribed to the Google Groups "elasticsearch" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/b52dc918-4529-40ab-97e0-2a3b0176ec59%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
