Increased concurrency for local message delivery

This commit is contained in:
mdecimus
2025-01-16 18:52:46 +01:00
parent ef721412da
commit bfba299e6b
8 changed files with 56 additions and 19 deletions

View File

@@ -7,7 +7,7 @@ resolver = "2"
[features]
#default = ["sqlite", "postgres", "mysql", "rocks", "elastic", "s3", "redis", "azure", "foundationdb"]
#default = ["sqlite", "postgres", "mysql", "rocks", "s3", "redis", "foundationdb"]
default = ["rocks", "redis"]
default = ["rocks", "redis", "s3"]
sqlite = ["store/sqlite"]
foundationdb = ["store/foundation", "common/foundation"]
postgres = ["store/postgres"]

View File

@@ -381,9 +381,9 @@ pub async fn jmap_tests() {
email_query_changes::test(&mut params).await;
email_copy::test(&mut params).await;
thread_get::test(&mut params).await;
thread_merge::test(&mut params).await;
thread_merge::test(&mut params).await;*/
mailbox::test(&mut params).await;
delivery::test(&mut params).await;*/
delivery::test(&mut params).await;
auth_acl::test(&mut params).await;
auth_limits::test(&mut params).await;
auth_oauth::test(&mut params).await;

View File

@@ -22,8 +22,8 @@ relay = true
[session.data.limits]
messages = 2000
[queue.outbound]
concurrency = 4
[queue.threads]
remote = 4
[queue.schedule]
retry = "1s"