8000 MapOperator and JoinOperator Implementation. by sukritkalra · Pull Request #85 · erdos-project/erdos · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

MapOperator and JoinOperator Implementation. #85

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Mar 4, 2020
Merged

MapOperator and JoinOperator Implementation. #85

merged 11 commits into from
Mar 4, 2020

Conversation

sukritkalra
Copy link
Collaborator
  • This PR provides the implementation of MapOperator and JoinOperator along with the relevant tests.

@ICGog ICGog requested review from pschafhalter and ICGog March 2, 2020 03:11
Previous code allowed either OperatorConfig / arguments that could be
used to construct OperatorConfig to be passed to connect_*_write.
However, Rust wasn't able to infer types if the passed argument was a
parameterized implementation of a generic type. This fix forces connects
to take an OperatorConfig.
This commit adds a MapOperator that takes in an input stream of type D1
and writes to an output stream of type D2. The user provides a function
to convert the messages from type D1 to D2 using the OperatorConfig.
This commit adds the JoinOperator implementation, its tests and
introduces a dependency to the chashmap crate. The main.rs became
incompatible with the API of the JoinOperator and was changed.
The previous implementation used per-state watermark callbacks (that had
mutable access to the stream state) to clean up the state after the join
callback is invoked. However, this was buggy, since consecutive
watermark callbacks could clear up state that might be required for the
join callback (when one stream is lagging behind the other). This fix
cleans up state after the join callback is called.
This commit uses an ExtractStream to assert the correctness of the
MapOperator and the JoinOperator. The previous ReceiveOperator ran
callbacks in a different thread and would not fail tests if provided
with incorrect implementations.
This commit fixes the tests and adds the Operator trait for the Map and
the JoinOperator.
Copy link
Member
@pschafhalter pschafhalter left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good work! Some small syntax/coding convention changes, but otherwise looks fine.

Copy link
Member
@pschafhalter pschafhalter left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

@pschafhalter pschafhalter merged commit 412725b into erdos-project:master Mar 4, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants
0