We have ~10K tar files which are using ~30TB of disk space. For all tar files, BLOBs are stored inside 2 subdirectories. First directory is the user then date of the blob created then bunch of blobs.
Each blob is a directory containing single directory with some files. We are using windows 8 server, I need to extract all these tar files and blobs to restore the data.
I have to untar first then deblob the files. I would like to avoid the number of read/write file operations and utilize the space efficiently.
Is there a way I can open tar file in memory and deblob the file and write the final directory structure?