File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -200,13 +200,14 @@ def wrapper(self: Engine, existing_files: List):
200
200
len (existing_files ) > chunk_size
201
201
):
202
202
203
- # do not like this hard coded value but it is emperically derived -
204
- # this is the max number of files that a queue can take without a long wait for users.
203
+ # do not like this hard coded value but it is empirically derived -
204
+ # this is the max number of files that a queue can take without a long wait for users working on a standard
205
+ # size machine with 8CPU 8G RAM
205
206
chunked_input = [
206
- existing_files [i : i + chunk_size ]
207
+ existing_files [i : i + chunk_size ]
207
208
for i in range (0 , len (existing_files ), chunk_size )
208
209
]
209
- n = 1
210
+ n = 1
210
211
processed_files = 0
211
212
for rv in chunked_input :
212
213
chunk_weight = sum (
You can’t perform that action at this time.
0 commit comments