6
I Use This!
Inactive

News

Analyzed 1 day ago. based on code collected 1 day ago.
Posted 4 months ago by ASF GitHub Bot
arturobernalg commented on PR #717: URL: https://github.com/apache/httpcomponents-client/pull/717#issuecomment-3393542104 > > Virtual threads let blocking HttpClient scale: thousands of concurrent requests without bloated platform threads. > Read more
Posted 4 months ago by ASF GitHub Bot
rschmitt commented on PR #717: URL: https://github.com/apache/httpcomponents-client/pull/717#issuecomment-3393530661 > Virtual threads let blocking HttpClient scale: thousands of concurrent requests without bloated platform threads. In your Read more
Posted 4 months ago by ASF GitHub Bot
arturobernalg commented on PR #717: URL: https://github.com/apache/httpcomponents-client/pull/717#issuecomment-3393472991 > I don't understand this at all. What problem does this solve, compared to simply calling the client from a virtual thread? Read more
Posted 4 months ago by ASF GitHub Bot
ok2c commented on PR #693: URL: https://github.com/apache/httpcomponents-client/pull/693#issuecomment-3393174100 @arturobernalg This feature was requested by @rschmitt and do not think i need to get involved unless absolutely necessary. I suppose Read more
Posted 4 months ago by ASF GitHub Bot
arturobernalg commented on PR #693: URL: https://github.com/apache/httpcomponents-client/pull/693#issuecomment-3391309446 @rschmitt @ok2c can we merge the minimal path (staggered multihome + config flag) as *experimental* and iterate on the Read more
Posted 4 months ago by Joakim Erdfelt
The javadoc for URLEncodedUtils.encodeFormFields() says ... > Encode/escape www-url-form-encoded content. > Uses the URLENCODER set of characters, rather than the UNRESERVED set; this is for > compatibilty with previous releases, URLEncoder.encode() Read more
Posted 5 months ago by Arturo Bernal
Hi olegk —I went with Option 1: a small safeguard that caps the async execution queue and fails fast with RejectedExecutionException once the limit is reached (default remains unlimited). The guard also releases the slot on failed/cancel/releaseResources Read more
Posted 5 months ago by ASF GitHub Bot
arturobernalg opened a new pull request, #728: URL: https://github.com/apache/httpcomponents-client/pull/728 Implements Option 1 from the discussion: add a configurable cap on the `async` execution pipeline to prevent the recursive callback loop Read more
Posted 5 months ago by Oleg Kalnichevski
abernal The proposed change-set still looks hack-y to me even without the use of ThreadLocal. I am not even sure it actually fixes the original problem in the first place. Given there is no reproducer it cannot be properly verified. If you want, you Read more
Posted 5 months ago by Oleg Kalnichevski
eppdot I think I have an idea what is happening. Basically your code shoves thousands (many thousands?) of requests into the execution pipeline without making any attempt at checking whether or not those requests actually succeed. HttpClient Read more