After doing some reading and hunting I wanted to post a quick blurb on how to migrate data between Volumes in OpenFiler. I've done this a few times when creating new shares and new RAID sets on my ARC-1260.
This approach uses RSync ( rsync documentation : rsync wikipedia )
In short the commands I used are.
rsync -rv /mnt/stor/data/files/ /mnt/san/media/files/ --progress --exclude BAD/ --ignore-existing --stats
-rv recursive (it will copy folders and subfolders) verbose
/mnt/stor/data/files source directory
/mnt/san/media/files destination directory
--progress display progress of the file copy
--exclude BAD/ anything in the directory BAD/ do not copy
--ignore-existing if a file already exists, skip
--stats dispaly file transfer stats
On average I've been getting 25MB-32MB moving data onto my 8 drive 1.5TB RAID 6 array, not shabby.
**Note this does not copy existing permissions, and those must be corrected.