Camel smb:// - consuming a lot of files from one folder

2019-04-18 Thread Jakub Bekier
I am trying to download a large amount of files from an smb:// endpoint and I would like the file consumption to be as fast as possible - meaning I would like to download and process as many files as possible, for example polling for 2000 files instead of whatever the default polling value in Camel

Re: Camel smb:// - consuming a lot of files from one folder

2019-04-18 Thread Zoran Regvart
Hi Jakub, I would just double check that the endpoints after the consumer from SMB are asynchronous. I think the throughput you got when using multiple consumers could be caused by the fact that you now process the rest of the route in parallel. Perhaps using a simple thread EIP[1] might help, som