CosmosDb Request rate is large with insertMany
问题 I have the following repository class inserting data in a CosmosDb database from a batch : public bool InsertZonierData(List<Zonier> zonierList) { if (zonierList == null || !zonierList.Any()) { throw new ZonierListNullOrEmptyException(); } else { try { _collection.InsertMany(zonierList); return true; } catch (MongoBulkWriteException ex) { throw new DataBaseWritingException(ex.Message, ExceptionCodeConstants.DataBaseWritingExceptionCode); } } } Unfortunately, having more than 30000 elements in