I am using IPFS for file storage for my application, I have created a private network swarm of 4 nodes. I assumed initially that the file would be chunked and the chunks will be stored into different devices(Which is my requirement). But I found out that the file will be stored into the local after chunking from this blog Where does IPFS store all the data?. Now I was wondering if it is possible to chunk the data when ipfs add filename and store the chunks on different systems is possible.
If so how can it be achieved?