[ARVADOS] updated: 2.1.0-1418-geb29c5471
Git user
git at public.arvados.org
Thu Oct 7 15:54:42 UTC 2021
Summary of changes:
lib/config/config.default.yml | 20 ++++++++++++++------
lib/config/generated_config.go | 20 ++++++++++++++------
2 files changed, 28 insertions(+), 12 deletions(-)
discards 1e8b4a7843b63a418aca83e8dd0a24c0ce52a522 (commit)
via eb29c5471bdface71362af6f4e6a669d0da8d346 (commit)
This update added new revisions after undoing existing revisions. That is
to say, the old revision is not a strict subset of the new revision. This
situation occurs when you --force push a change and generate a repository
containing something like this:
* -- * -- B -- O -- O -- O (1e8b4a7843b63a418aca83e8dd0a24c0ce52a522)
\
N -- N -- N (eb29c5471bdface71362af6f4e6a669d0da8d346)
When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit eb29c5471bdface71362af6f4e6a669d0da8d346
Author: Ward Vandewege <ward at curii.com>
Date: Wed Sep 29 12:08:17 2021 -0400
18113: change MaxCloudOpsPerSecond and MaxConcurrentInstanceCreateOps
defaults.
Arvados-DCO-1.1-Signed-off-by: Ward Vandewege <ward at curii.com>
diff --git a/lib/config/config.default.yml b/lib/config/config.default.yml
index 5bd575b12..740d75836 100644
--- a/lib/config/config.default.yml
+++ b/lib/config/config.default.yml
@@ -1091,13 +1091,25 @@ Clusters:
# Maximum create/destroy-instance operations per second (0 =
# unlimited).
- MaxCloudOpsPerSecond: 0
+ MaxCloudOpsPerSecond: 10
- # Maximum concurrent node creation operations (0 = unlimited). This is
- # recommended by Azure in certain scenarios (see
- # https://docs.microsoft.com/en-us/azure/virtual-machines/linux/capture-image)
- # and can be used with other cloud providers too, if desired.
- MaxConcurrentInstanceCreateOps: 0
+ # Maximum concurrent instance creation operations (0 = unlimited).
+ #
+ # MaxConcurrentInstanceCreateOps limits the number of instance creation
+ # requests that can be in flight at any one time, whereas
+ # MaxCloudOpsPerSecond limits the number of create/destroy operations
+ # that can be started per second.
+ #
+ # Because the API for instance creation on Azure is synchronous, it is
+ # recommended to increase MaxConcurrentInstanceCreateOps when running
+ # on Azure. When using managed images, a value of 20 would be
+ # appropriate. When using Azure Shared Image Galeries, it could be set
+ # higher. For more information, see
+ # https://docs.microsoft.com/en-us/azure/virtual-machines/linux/capture-image
+ #
+ # MaxConcurrentInstanceCreateOps can be increased for other cloud
+ # providers too, if desired.
+ MaxConcurrentInstanceCreateOps: 1
# Interval between cloud provider syncs/updates ("list all
# instances").
diff --git a/lib/config/generated_config.go b/lib/config/generated_config.go
index 4e24a5c7f..5a46121a4 100644
--- a/lib/config/generated_config.go
+++ b/lib/config/generated_config.go
@@ -1097,13 +1097,25 @@ Clusters:
# Maximum create/destroy-instance operations per second (0 =
# unlimited).
- MaxCloudOpsPerSecond: 0
+ MaxCloudOpsPerSecond: 10
- # Maximum concurrent node creation operations (0 = unlimited). This is
- # recommended by Azure in certain scenarios (see
- # https://docs.microsoft.com/en-us/azure/virtual-machines/linux/capture-image)
- # and can be used with other cloud providers too, if desired.
- MaxConcurrentInstanceCreateOps: 0
+ # Maximum concurrent instance creation operations (0 = unlimited).
+ #
+ # MaxConcurrentInstanceCreateOps limits the number of instance creation
+ # requests that can be in flight at any one time, whereas
+ # MaxCloudOpsPerSecond limits the number of create/destroy operations
+ # that can be started per second.
+ #
+ # Because the API for instance creation on Azure is synchronous, it is
+ # recommended to increase MaxConcurrentInstanceCreateOps when running
+ # on Azure. When using managed images, a value of 20 would be
+ # appropriate. When using Azure Shared Image Galeries, it could be set
+ # higher. For more information, see
+ # https://docs.microsoft.com/en-us/azure/virtual-machines/linux/capture-image
+ #
+ # MaxConcurrentInstanceCreateOps can be increased for other cloud
+ # providers too, if desired.
+ MaxConcurrentInstanceCreateOps: 1
# Interval between cloud provider syncs/updates ("list all
# instances").
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list