Strange problem here. I have just recently moved thousands of files to our backup server, and I have our backup server using s3sync to amazon. Log file shows that the files were created (eg. Create node A-E/ACME_DYNAMICS/ACM002C.M09) but when I check from s3fox, the files aren't there.
this is the script I'm running..
#!/bin/bash
BUCKETPATH=backup-data:/toolcrib/
BACKUPPATH=/backup_data/toolcrib/
EXCLUDE=
date
echo start toolcrib bu...
cd /root/s3sync && /usr/bin/ruby s3sync.rb -rvs ${BACKUPPATH} ${BUCKETPATH}
echo done toolcrib bu...
date
If I were to run it right now in debug mode, here is an clip from debug output.
local item /backup_data/toolcrib/A-E/ALABAMA_METALS/24-135 WEAR TRACK SPLICE JOINTS.3d
local node object init. Name:A-E/ALABAMA_METALS/24-135 WEAR TRACK SPLICE JOINTS.3d Path:/backup_data/toolcrib/A-E/ALABAMA_METALS/24-135 WEAR TRACK SPLICE JOINTS.3d Size:20176 Tag:4495f29583f73507fc0897f68fb33bce
prefix found: /A-E/ALABAMA_METALS/
s3TreeRecurse backup-data /toolcrib /A-E/ALABAMA_METALS/
Trying command list_bucket backup-data max-keys 200 prefix /toolcrib/A-E/ALABAMA_METALS/ delimiter / with 100 retries left
Response code: 200
S3 item /toolcrib/A-E/ALABAMA_METALS/24-135 WEAR TRACK SPLICE JOINTS.3d
s3 node object init. Name:A-E/ALABAMA_METALS/24-135 WEAR TRACK SPLICE JOINTS.3d Path:/toolcrib/A-E/ALABAMA_METALS/24-135 WEAR TRACK SPLICE JOINTS.3d Size:20176 Tag:4495f29583f73507fc0897f68fb33bce
source: A-E/ALABAMA_METALS/24-135 WEAR TRACK SPLICE JOINTS.3d
dest: A-E/ALABAMA_METALS/24-135 WEAR TRACK SPLICE JOINTS.3d
Node A-E/ALABAMA_METALS/24-135 WEAR TRACK SPLICE JOINTS.3d unchanged
Going to my backup server in the 'ALABAMA_METALS' directory, there are 125 files, s3sync shows that those 125 files have been uploaded and unchanged from previous syncs, but s3fox doesn't show anything being in there
any ideas?