
io.quarkus.dynamodb.runtime.NettyHttpClientConfig.jdp Maven / Gradle / Ivy
#
#Thu Sep 26 00:42:13 CEST 2019
io.quarkus.dynamodb.runtime.NettyHttpClientConfig.tlsManagersProvider=TLS Managers provider configuration
io.quarkus.dynamodb.runtime.NettyHttpClientConfig.maxConcurrency=The maximum number of allowed concurrent requests.\n\nFor HTTP/1.1 this is the same as max connections. For HTTP/2 the number of connections that will be used depends on the\nmax streams allowed per connection.
io.quarkus.dynamodb.runtime.NettyHttpClientConfig.sslProvider=The SSL Provider to be used in the Netty client.\n
\nDefault is `OPENSSL` if available, `JDK` otherwise.
io.quarkus.dynamodb.runtime.NettyHttpClientConfig.proxy=HTTP proxy configuration
io.quarkus.dynamodb.runtime.NettyHttpClientConfig.connectionTimeToLive=The maximum amount of time that a connection should be allowed to remain open, regardless of usage frequency.
io.quarkus.dynamodb.runtime.NettyHttpClientConfig.connectionMaxIdleTime=The maximum amount of time that a connection should be allowed to remain open while idle.\n
\nCurrently has no effect if `quarkus.dynamodb.async-client.use-idle-connection-reaper` is false.
io.quarkus.dynamodb.runtime.NettyHttpClientConfig.connectionAcquisitionTimeout=The amount of time to wait when acquiring a connection from the pool before giving up and timing out.
io.quarkus.dynamodb.runtime.NettyHttpClientConfig.maxHttp2Streams=The maximum number of concurrent streams for an HTTP/2 connection.\n
\nThis setting is only respected when the HTTP/2 protocol is used.\n
\n0 means unlimited.
io.quarkus.dynamodb.runtime.NettyHttpClientConfig.maxPendingConnectionAcquires=The maximum number of pending acquires allowed.\n
\nOnce this exceeds, acquire tries will be failed.
io.quarkus.dynamodb.runtime.NettyHttpClientConfig.writeTimeout=The amount of time to wait for a write on a socket before an exception is thrown.\n
\nSpecify `0` to disable.
io.quarkus.dynamodb.runtime.NettyHttpClientConfig.eventLoop=Netty event loop configuration override
io.quarkus.dynamodb.runtime.NettyHttpClientConfig.protocol=The HTTP protocol to use.
io.quarkus.dynamodb.runtime.NettyHttpClientConfig.readTimeout=The amount of time to wait for a read on a socket before an exception is thrown.\n
\nSpecify `0` to disable.
io.quarkus.dynamodb.runtime.NettyHttpClientConfig.connectionTimeout=The amount of time to wait when initially establishing a connection before giving up and timing out.
io.quarkus.dynamodb.runtime.NettyHttpClientConfig.useIdleConnectionReaper=Whether the idle connections in the connection pool should be closed.\n
\nWhen enabled, connections left idling for longer than `quarkus.dynamodb.async-client.connection-max-idle-time` will be\nclosed. This will not close connections currently in use.