How much time it will take to index 500k+ data fr...
# community-help
v
How much time it will take to index 500k+ data from Mongodb to typesense
k
Depends on number of fields indexed but if you do batched import should be < 2 minutes.
v
if i have indexed 10k data and want to update it with next 10k data so client.collections('companies').documents('124').update(document) how can i update it from here
k
Refer to the earlier documents by their id field. Use the same id to update them.
v
my doubt is i have 20k data, once i index 10k after some time i want rest data to be indexed so is there any way to update previous index data
k
Have you looked into the import API?
You have to use the upsert or update actions.
v
okay