I'm trying to set thread pool size for S3 multipart uploads to control number of parallel uploads being made.
As per this AWS blog page - https://aws.amazon.com/blogs/developer/parallelizing-large-uploads-for-speed-and-reliability/ I need to pass Executors.newFixedThreadPool(n) to TransferManager but I cannot find a way to do the same with TransferManagerBuilder.
We have TransferManagerBuilder.standard().withExecutorFactory() that accepts ExecutyorFactory but it has no implementation.
How can I specify thread pool size using TransferManagerBuilder?