Add concurrency settings to attributes and gitlab.rb.template. Changelog item

This commit is contained in:
Marin Jankovski 2017-10-05 11:38:46 +02:00
parent 40e3c3139b
commit 402f23b28a
No known key found for this signature in database
GPG Key ID: CC982D76238F60BF
3 changed files with 24 additions and 1 deletions

View File

@ -6,6 +6,7 @@ omnibus-gitlab repository.
10.1.0
- Remove unused Grit configuration settings
- Add concurrency configuration for Gitaly
- Enable profiler for jemalloc
10.0.2

View File

@ -1392,7 +1392,25 @@ external_url 'GENERATED_EXTERNAL_URL'
# gitaly['prometheus_grpc_latency_buckets'] = "[0.001, 0.005, 0.025, 0.1, 0.5, 1.0, 10.0, 30.0, 60.0, 300.0, 1500.0]"
# gitaly['auth_token'] = '<secret>'
# gitaly['auth_transitioning'] = false # When true, auth is logged to Prometheus but NOT enforced
# gitaly['storage'] = [
# {
# 'name' => 'default',
# 'path' => '/tmp/path-1'
# },
# {
# 'name' => 'nfs1',
# 'path' => '/mnt/nfs1'
# }
# ]
# gitaly['concurrency'] = [
# {
# 'rpc' => "/gitaly.SmartHTTPService/PostReceivePack",
# 'max_per_repo' => 20
# }, {
# 'rpc' => "/gitaly.SSHService/SSHUploadPack",
# 'max_per_repo' => 5
# }
# ]
################################################################################
################################################################################

View File

@ -964,6 +964,10 @@ default['gitlab']['gitaly']['logging_format'] = nil
default['gitlab']['gitaly']['logging_sentry_dsn'] = nil
default['gitlab']['gitaly']['prometheus_grpc_latency_buckets'] = nil
default['gitlab']['gitaly']['storage'] = []
default['gitlab']['gitaly']['auth_token'] = nil
default['gitlab']['gitaly']['auth_transitioning'] = false
default['gitlab']['gitaly']['concurrency'] = nil
####
# Geo (EE-only)