Add batching to writes (#1076)

Fixes #1077
This commit is contained in:
Alex Kremer
2024-01-04 15:17:15 +00:00
committed by GitHub
parent af485a0634
commit 28188aa0f9
8 changed files with 155 additions and 16 deletions

View File

@@ -83,6 +83,7 @@ Cluster::Cluster(Settings const& settings) : ManagedObject{cass_cluster_new(), c
LOG(log_.info()) << "Threads: " << settings.threads;
LOG(log_.info()) << "Core connections per host: " << settings.coreConnectionsPerHost;
LOG(log_.info()) << "IO queue size: " << queueSize;
LOG(log_.info()) << "Batched writes auto-chunk size: " << settings.writeBatchSize;
}
void