12 lines
552 B
Python
12 lines
552 B
Python
async def queued_add_data_points(collection_name, data_points_batch):
|
|
from ..queues import add_data_points_queue
|
|
|
|
try:
|
|
await add_data_points_queue.put.aio((collection_name, data_points_batch))
|
|
except Exception:
|
|
first_half, second_half = (
|
|
data_points_batch[: len(data_points_batch) // 2],
|
|
data_points_batch[len(data_points_batch) // 2 :],
|
|
)
|
|
await add_data_points_queue.put.aio((collection_name, first_half))
|
|
await add_data_points_queue.put.aio((collection_name, second_half))
|