mirror of
https://github.com/khoj-ai/khoj.git
synced 2025-02-17 08:04:21 +00:00
Increase rate limits for data indexing
This commit is contained in:
parent
af4e9988c4
commit
439a2680fd
2 changed files with 3 additions and 3 deletions
|
@ -92,7 +92,7 @@ async def put_content(
|
|||
incoming_entries_size_limit=10,
|
||||
subscribed_incoming_entries_size_limit=75,
|
||||
total_entries_size_limit=10,
|
||||
subscribed_total_entries_size_limit=100,
|
||||
subscribed_total_entries_size_limit=400,
|
||||
)
|
||||
),
|
||||
):
|
||||
|
@ -114,7 +114,7 @@ async def patch_content(
|
|||
incoming_entries_size_limit=10,
|
||||
subscribed_incoming_entries_size_limit=75,
|
||||
total_entries_size_limit=10,
|
||||
subscribed_total_entries_size_limit=100,
|
||||
subscribed_total_entries_size_limit=400,
|
||||
)
|
||||
),
|
||||
):
|
||||
|
|
|
@ -500,7 +500,7 @@ def get_sample_files_data():
|
|||
|
||||
def get_big_size_sample_files_data():
|
||||
# a string of approximately 100 MB
|
||||
big_text = "a" * (100 * 1024 * 1024)
|
||||
big_text = "a" * (400 * 1024 * 1024)
|
||||
return [
|
||||
(
|
||||
"files",
|
||||
|
|
Loading…
Add table
Reference in a new issue