I will start with question: How to use Scala API's Iteratee to upload file to the cloud storage (Azure Blob Storage in my case, but I don't think it's most important now)
Background:
I need to chunk the Input into the blocks (about 1 mb) for storing large media files (300mb+) as a Azure's BlockBlobs. Unfortunately my Scala knowledge is poor still (my project is Java based and only use for Scala in it will be an Upload controller).
I tried with this code: Why makes calling error or done in a BodyParser's Iteratee the request hang in Play Framework 2.0? (as a Input Iteratee) - it works quite well but eachElement that I could use has size of 8192 bytes, so it's to small for sending hundred-megabyte files to the cloud.
Must to say that's quite new approach to me, and most probably I misunderstood something (don't want to tell that I misunderstood everything ;> )
I will appreciate any hint or link, which will help me with that topic. If is there any sample of similar usage it would be best option for me to get the idea.