tom kern
unread,Jul 12, 2012, 6:12:25 AM7/12/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to cascadi...@googlegroups.com
hi,
i am trying to integrate checkpoints into my app. i just can't figure out how checkpoints should be used.
locally i get no output whatsoever. is this supposed to be the case?
in hadoop (LFS file tap) mode it seems to depend on where exactly i put the checkpoint. for example, this fails:
r = new Rename(r);
pipe = new Merge(r, otherPipe);
cp = new Checkpoint(pipe);
pipe = new CoGroup(cp, id, thirdPipe, .....);
cascading.tuple.TupleException: unable to select from: ['offset', 'line'], using selector: ['id']
and does not:
r = new Rename(r);
cp = new Checkpoint(r);
pipe = new Merge(cp, otherPipe);
pipe = new CoGroup(pipe, id, thirdPipe, .....);
what am i missing here?
Thank you,
Thomas