You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the only way to set the byte buffer pool is by configuring a httpClientTransportBuilder which requires:
9.4.x: overriding the HTTPClientTransportBuilder's build() method to create a HttpClient and set the byte buffer pool on it.
10/11: overriding the HTTPClientTransportBuilder's getConnector() method to return a custom ClientConnector that has the byte buffer pool set on it. This has the side effect of ignoring the LoadGenerator.Builder's configured sslContextFactory which must be manually set on the custom ClientConnector.
None of this is straightforward nor easy to remember.
The text was updated successfully, but these errors were encountered:
The
LoadGenerator.Builder
currently lacks an easy way to set aByteBufferPool
, something like the following:Currently the only way to set the byte buffer pool is by configuring a
httpClientTransportBuilder
which requires:HTTPClientTransportBuilder
'sbuild()
method to create aHttpClient
and set the byte buffer pool on it.HTTPClientTransportBuilder
'sgetConnector()
method to return a customClientConnector
that has the byte buffer pool set on it. This has the side effect of ignoring theLoadGenerator.Builder
's configuredsslContextFactory
which must be manually set on the customClientConnector
.None of this is straightforward nor easy to remember.
The text was updated successfully, but these errors were encountered: