Skip to content

Commit

Permalink
fix(deployer): stream bulk actions to avoid rate limit (#12411)
Browse files Browse the repository at this point in the history
  • Loading branch information
caugner authored Jan 8, 2025
1 parent c3da70b commit 0b5276b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deployer/src/deployer/search/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from collections import Counter

import click
from elasticsearch.helpers import parallel_bulk
from elasticsearch.helpers import streaming_bulk
from elasticsearch_dsl import Index
from elasticsearch_dsl.connections import connections
from selectolax.parser import HTMLParser
Expand Down Expand Up @@ -90,7 +90,7 @@ def get_progressbar():
errors_counter = Counter()
t0 = time.time()
with get_progressbar() as bar:
for success, info in parallel_bulk(
for success, info in streaming_bulk(
connection,
generator(),
# If the bulk indexing failed, it will by default raise a BulkIndexError.
Expand Down

0 comments on commit 0b5276b

Please sign in to comment.