Leider gibt es jetzt keine Möglichkeit, Zahlen-ähnliche Strings als Strings zu interpretieren:
https://jira.mongodb.org/browse/SERVER-3731
Sie könnten ein Skript in Python oder einer anderen Sprache schreiben, mit der Sie vertraut sind, nach dem Vorbild von:
import csv, pymongo
connection = pymongo.Connection()
collection = connection.mydatabase.mycollection
reader = csv.DictReader(open('myfile.csv'))
for line in reader:
print '_id', line['_id']
upsert_fields = {
'_id': line['_id'],
'my_other_upsert_field': line['my_other_upsert_field']}
collection.update(upsert_fields, line, upsert=True, safe=True)