Skip to content
This repository has been archived by the owner on Jul 25, 2024. It is now read-only.

Commit

Permalink
tradefed: lower test batch to 100
Browse files Browse the repository at this point in the history
The reason for this is scaled up deployments. On a full power scenario
SQUAD may have several workers, with multiple threads within. This means
that dozens of batch test inserts will happen at the same time, causing
higher latency in workers.

If this number comes to be changed again, it might be a good idea to parameterize it.

Signed-off-by: Charles Oliveira <[email protected]>
  • Loading branch information
chaws committed Dec 21, 2023
1 parent 94d6837 commit f318696
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tradefed/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def _extract_cts_results(self, buf, testrun, suite_prefix):
will be transformed to JSON when saved to plugin scratch.
"""

chunk_size = 500
chunk_size = 100
module_name = ''
testcases = []
testcase = None
Expand Down

0 comments on commit f318696

Please sign in to comment.