Hi everyone,
i've added large amount of data to mongo , currently it has 70 million data and i wanted to export it to csv with respect to a field.
(ie) sample data : {'name' : 'name1', 'age': age1 , 'location' : 'location1'}
currently i've 10000 distinct locations , i want to split the data into multiple files based on location.
right now i'm using mongoexport with query from a python script, does this problem have a mongo specific solution ????
Thanks