com.github.j5ik2o.akka.persistence.dynamodb.utils.V1DaxClientConfigUtils.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of akka-persistence-dynamodb-base-v1_2.12 Show documentation
Show all versions of akka-persistence-dynamodb-base-v1_2.12 Show documentation
akka-persistence-dynamodb-base-v1
/*
* Copyright 2022 Junichi Kato
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.j5ik2o.akka.persistence.dynamodb.utils
import com.amazon.dax.client.dynamodbv2.ClientConfig
import com.github.j5ik2o.akka.persistence.dynamodb.config.client.DynamoDBClientConfig
import java.util.concurrent.TimeUnit
import scala.concurrent.duration.Duration
object V1DaxClientConfigUtils {
def setup(dynamoDBClientConfig: DynamoDBClientConfig): ClientConfig = {
import dynamoDBClientConfig.v1DaxClientConfig._
val result = new ClientConfig()
if (connectionTimeout != Duration.Zero)
result
.setConnectTimeout(
connectionTimeout.toMillis,
TimeUnit.MILLISECONDS
)
if (requestTimeout != Duration.Zero)
result
.setRequestTimeout(
requestTimeout.toMillis,
TimeUnit.MILLISECONDS
)
if (healthCheckTimeout != Duration.Zero)
result.setHealthCheckTimeout(
healthCheckTimeout.toMillis,
TimeUnit.MILLISECONDS
)
if (healthCheckInterval != Duration.Zero)
result.setHealthCheckInterval(
healthCheckInterval.toMillis,
TimeUnit.MILLISECONDS
)
if (idleConnectionTimeout != Duration.Zero)
result.setIdleConnectionTimeout(
idleConnectionTimeout.toMillis,
TimeUnit.MILLISECONDS
)
result.setMinIdleConnectionSize(
minIdleConnectionSize
)
result.setWriteRetries(
writeRetries
)
result
.setMaxPendingConnectsPerHost(
maxPendingConnectionsPerHost
)
result.setReadRetries(
readRetries
)
if (threadKeepAlive != Duration.Zero)
result
.setThreadKeepAlive(
threadKeepAlive.toMillis,
TimeUnit.MILLISECONDS
)
if (clusterUpdateInterval != Duration.Zero)
result
.setClusterUpdateInterval(
clusterUpdateInterval.toMillis,
TimeUnit.MILLISECONDS
)
if (clusterUpdateThreshold != Duration.Zero)
result
.setClusterUpdateThreshold(
clusterUpdateThreshold.toMillis,
TimeUnit.MILLISECONDS
)
if (maxRetryDelay != Duration.Zero)
result
.setMaxRetryDelay(
maxRetryDelay.toMillis,
TimeUnit.MILLISECONDS
)
result.setUnhealthyConsecutiveErrorCount(
unhealthyConsecutiveErrorCount
)
result
}
}