Setting chunk size to 1mb (#605)

This commit is contained in:
Jonathan Buttner 2023-09-20 11:40:11 -04:00 committed by GitHub
parent 12200039f5
commit a8b76c390f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,7 +42,7 @@ if TYPE_CHECKING:
from elasticsearch._sync.client.utils import _quote
DEFAULT_CHUNK_SIZE = 4 * 1024 * 1024 # 4MB
DEFAULT_CHUNK_SIZE = 1024 * 1024 # 1MB
DEFAULT_TIMEOUT = "60s"