user2626222
user2626222

Reputation: 169

mongodb bulk inserts from apache PIG

Does com.mongodb.hadoop.pig.MongoInsertStorage (for PIG) from mongo-hadoop support batch/bulk inserting? If so, how to enable that? I searched and couldn't find any documentation on it.

https://github.com/mongodb/mongo-hadoop

Upvotes: 0

Views: 130

Answers (1)

evanchooly
evanchooly

Reputation: 6233

It does not support batch writes, as such. It delegates to RecordWriter which passes things down the line in hadoop.

Upvotes: 1

Related Questions