Re: [akka-user] Using Akka http for large uploads not uploading entire file

2015-09-02 Thread Konrad Malawski
I see, thanks for double-checking on your end then! I hope you're enjoying Akka Http :-) Happy hakking! --  Cheers, Konrad `ktoso` Malawski Akka @ Typesafe On 2 September 2015 at 16:08:55, Charlie Evans (charlesdevan...@gmail.com) wrote: Hi Konrad, Thanks so much in getting back to me, I'm

Re: [akka-user] Using Akka http for large uploads not uploading entire file

2015-09-02 Thread Konrad Malawski
Actually, follow up question – since the snippet seems incomplete. How are you running the mapAsync? In the snippet you posted there is no materialization of the  formdata.parts.mapAsync(1) part. You should have some run() at the end of the stream, otherwise it does nothing. For example you

Re: [akka-user] Using Akka http for large uploads not uploading entire file

2015-09-02 Thread Charlie Evans
Hi Konrad, Thanks so much in getting back to me, I'm starting to think it may be an issue outside of akka. We have Node proxying the request over to the akka server and it might be something funky going on there. Sorry to have wasted your time. Charlie On Wednesday, September 2, 2015 at

Re: [akka-user] Using Akka http for large uploads not uploading entire file

2015-09-02 Thread Konrad Malawski
Hi Charlie, I'll try to reproduce the problem you described - it definitely should not happen, so we may be looking at a bug here. Is there anything else other than the snippet (thanks for pasting it!) that might be related to the issue you're seeing? Does the same happen if you replicate the

[akka-user] Using Akka http for large uploads not uploading entire file

2015-09-02 Thread Charlie Evans
Hi all, I'm trying to use Akka http for large files (300MB is what I'm currently testing) coming in as multi-part form data. The file gets written straight to disk. The file ends up being a few MB short of complete and the upload hangs indefinitely. I had a look at the files and the top and