resume fails - xlog data folder almost empty
ildella opened this issue · 1 comments
ildella commented
Hi. I am running transporter 0.5.2 on Ubuntu Linux.
config is like:
t.Config({"xlog_dir":"/pathto/data"})
.Source("source", source, "/.*/").Save("sink", sink, "/.*/")
They are both mongodb.
The sync actually works, I can see data being written to sink db.
But in the data folder, I just see an empty file called: '00000000000000000000.log'
As expected, if I stop and start transporter again, it starts from the beginning.
What am I doing wrong to get the resume to work?
Thanks.
ildella commented
I've chaned the folder path to a relative one:
t.Config({"xlog_dir":"./data"})
And it works now.