Skip to content

Commit

Permalink
raise default concurrency to 5
Browse files Browse the repository at this point in the history
Signed-off-by: Jörn Friedrich Dreyer <[email protected]>
  • Loading branch information
butonic committed Nov 18, 2024
1 parent 8a90399 commit 9046cd6
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions changelog/unreleased/raise-default-concurrency.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Enhancement: raise default concurrency to 5

We increased the default concurrency to get more work done concurrently.

https://github.com/owncloud/ocis/pull/10595
2 changes: 1 addition & 1 deletion services/frontend/pkg/config/defaults/defaultconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ func DefaultConfig() *config.Config {
Cluster: "ocis-cluster",
EnableTLS: false,
},
MaxConcurrency: 1,
MaxConcurrency: 5,
PasswordPolicy: config.PasswordPolicy{
MinCharacters: 8,
MinLowerCaseCharacters: 1,
Expand Down
2 changes: 1 addition & 1 deletion services/sharing/pkg/config/defaults/defaultconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func DefaultConfig() *config.Config {
JSONCS3: config.UserSharingJSONCS3Driver{
ProviderAddr: "com.owncloud.api.storage-system",
SystemUserIDP: "internal",
MaxConcurrency: 1,
MaxConcurrency: 5,
},
OwnCloudSQL: config.UserSharingOwnCloudSQLDriver{
DBUsername: "owncloud",
Expand Down
2 changes: 1 addition & 1 deletion services/userlog/pkg/config/defaults/defaultconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func DefaultConfig() *config.Config {
Cluster: "ocis-cluster",
EnableTLS: false,
},
MaxConcurrency: 1,
MaxConcurrency: 5,
Persistence: config.Persistence{
Store: "memory",
Database: "userlog",
Expand Down

0 comments on commit 9046cd6

Please sign in to comment.