-
Couldn't load subscription status.
- Fork 266
Support leftJoin against a store in offline platform #557
Conversation
…PNamedProducer in DagOptimizer
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
don't you want to use your sum on line 44 here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah, yes, thanks :)
…rgedProducer from options for nodes between join and store
|
This is ready for review. Thanks! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why is this here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
leftover from debugging.. thanks
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
isn't this always Any => TraversableOnce[Any]?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, we can make the type more constrained
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
needs an issue? or ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought we ditched using KeyedProducer in the input position. Can we change this to Producer[P, (K, V)] and get everything to compile.
|
Added a handful of minor nits, then I'm ready to merge. I do agree with Ian that the TODOs should have issue's added and we should reference those issue numbers in the comment. |
|
Addressed @johnynek's comments except need to address unit batcher & scalding tests. Also I made the modifications for that TODO, no issue needed, but will file issues next time. |
Support leftJoin against a store in offline platform
Adds support for performing a leftJoin against a store in the offline platform. Currently supports two cases:
Based off of @johnynek's PR: #551