JeremyGrosser / tablesnap

Uses inotify to monitor Cassandra SSTables and upload them to S3
BSD 2-Clause "Simplified" License
181 stars 86 forks source link

Upload paths differ between initial and inotify-upload #18

Closed ctavan closed 11 years ago

ctavan commented 11 years ago

When passing a relative path to tablesnap, then the initial backup_files upload will not create the absolute paths of the files in the S3 bucket whereas the inotify-triggered uploads will.

Say you are in /home/foo and start tablesnap bucket bar/ then initial files will be uploaded as hostname:bar/file whereas the inotify-triggered files will be uploaded as hostname:/home/foo/bar/file

Which one is the intended behavior?

JeremyGrosser commented 11 years ago

The intention was that all paths should be converted to absolute

ctavan commented 11 years ago

Cool, that's what I thought as well: #19

JeremyGrosser commented 11 years ago

Merged.