如何等待数据插入 mongodb 时间序列集合?

How to wait until data is inserted into a mongodb timeseries collection?

我正在使用 Python 3.9 和 MongoDB 5.0.6。

我有一个函数,里面有 insert_many 调用。我想等到return之前将数据插入timeseries集合。我该怎么做?

默认情况下 pymongo 是同步的,所以 insert_many() 函数调用不会 return 直到数据被插入,所以没有特别需要等待。

这假设您没有使用电机异步驱动程序或尝试从辅助副本读取。