Chunking was looking at the length of a string but not accounting for the byte length. closes #716
70 lines
2.6 KiB
Python
70 lines
2.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
import mock
|
|
import time
|
|
import threading
|
|
|
|
from elasticsearch import helpers, Elasticsearch
|
|
from elasticsearch.serializer import JSONSerializer
|
|
|
|
from .test_cases import TestCase
|
|
|
|
lock_side_effect = threading.Lock()
|
|
|
|
def mock_process_bulk_chunk(*args, **kwargs):
|
|
"""
|
|
Threadsafe way of mocking process bulk chunk:
|
|
https://stackoverflow.com/questions/39332139/thread-safe-version-of-mock-call-count
|
|
"""
|
|
|
|
with lock_side_effect:
|
|
mock_process_bulk_chunk.call_count += 1
|
|
time.sleep(0.1)
|
|
return []
|
|
|
|
|
|
mock_process_bulk_chunk.call_count = 0
|
|
|
|
|
|
class TestParallelBulk(TestCase):
|
|
@mock.patch('elasticsearch.helpers._process_bulk_chunk', side_effect=mock_process_bulk_chunk)
|
|
def test_all_chunks_sent(self, _process_bulk_chunk):
|
|
actions = ({'x': i} for i in range(100))
|
|
list(helpers.parallel_bulk(Elasticsearch(), actions, chunk_size=2))
|
|
|
|
self.assertEquals(50, _process_bulk_chunk.call_count)
|
|
|
|
@mock.patch(
|
|
'elasticsearch.helpers._process_bulk_chunk',
|
|
# make sure we spend some time in the thread
|
|
side_effect=lambda *a: [(True, time.sleep(.001) or threading.current_thread().ident)]
|
|
)
|
|
def test_chunk_sent_from_different_threads(self, _process_bulk_chunk):
|
|
actions = ({'x': i} for i in range(100))
|
|
results = list(helpers.parallel_bulk(Elasticsearch(), actions, thread_count=10, chunk_size=2))
|
|
|
|
self.assertTrue(len(set([r[1] for r in results])) > 1)
|
|
|
|
class TestChunkActions(TestCase):
|
|
def setUp(self):
|
|
super(TestChunkActions, self).setUp()
|
|
self.actions = [({'index': {}}, {'some': u'datá', 'i': i}) for i in range(100)]
|
|
|
|
def test_chunks_are_chopped_by_byte_size(self):
|
|
self.assertEquals(100, len(list(helpers._chunk_actions(self.actions, 100000, 1, JSONSerializer()))))
|
|
|
|
def test_chunks_are_chopped_by_chunk_size(self):
|
|
self.assertEquals(10, len(list(helpers._chunk_actions(self.actions, 10, 99999999, JSONSerializer()))))
|
|
|
|
def test_chunks_are_chopped_by_byte_size_properly(self):
|
|
max_byte_size = 170
|
|
chunks = list(helpers._chunk_actions(self.actions, 100000, max_byte_size, JSONSerializer()))
|
|
self.assertEquals(25, len(chunks))
|
|
for chunk_data, chunk_actions in chunks:
|
|
chunk = u''.join(chunk_actions)
|
|
chunk = chunk if isinstance(chunk, str) else chunk.encode('utf-8')
|
|
self.assertLessEqual(len(chunk), max_byte_size)
|
|
|
|
class TestExpandActions(TestCase):
|
|
def test_string_actions_are_marked_as_simple_inserts(self):
|
|
self.assertEquals(('{"index":{}}', "whatever"), helpers.expand_action('whatever'))
|