Reduce cpu load during docker image download

During the docker image download phase, 20 threads are
attempting to download the docker images.  This activity
includes calls to docker-untar which has high cpu utilization.

Dropping this from 20 to 5.

Change-Id: I7d58fad81b7cc201ee95af6b1327f1dd1f5a5d69
Fixes-Bug: 1822697
Signed-off-by: Al Bailey <Al.Bailey@windriver.com>
This commit is contained in:
Al Bailey 2019-04-26 13:34:22 -05:00
parent 560b2b6500
commit 6481f92b2b
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ ARMADA_MANIFEST_APPLY_SUCCESS_MSG = 'Done applying manifest'
CONTAINER_ABNORMAL_EXIT_CODE = 137
DELETE_SEARCH_PATTERN = 'Deleting release'
INSTALLATION_TIMEOUT = 3600
MAX_DOWNLOAD_THREAD = 20
MAX_DOWNLOAD_THREAD = 5
TARFILE_DOWNLOAD_CONNECTION_TIMEOUT = 60
TARFILE_TRANSFER_CHUNK_SIZE = 1024 * 512
DOCKER_REGISTRY_USER = 'admin'