-
Notifications
You must be signed in to change notification settings - Fork 326
Broadcast encryption support #489
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
Broadcast encryption support #489
Conversation
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.
LGTM.
Looks like this is still hanging intermittently. Can we merge #678 to see if that helps? |
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.
Few minor comments, but LGTM. Thanks @Niharikadutta!
src/csharp/Microsoft.Spark.Worker/Processor/BroadcastVariableProcessor.cs
Outdated
Show resolved
Hide resolved
throw new NotImplementedException( | ||
"broadcastDecryptionServer is not implemented."); | ||
var readBid = SerDe.ReadInt64(socket.InputStream); | ||
Debug.Assert(bid == readBid); |
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.
Since we get the value from an external system, can we throw an exception instead of assert?
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.
Added an exception, please let me know if the wording makes sense, I wasn't completely sure how to frame it.
…ikadutta/spark into nidutta/BroadcastEncryptionSupport
src/csharp/Microsoft.Spark.Worker/Processor/BroadcastVariableProcessor.cs
Outdated
Show resolved
Hide resolved
…rocessor.cs Co-authored-by: Steve Suh <[email protected]>
This PR adds encryption support for broadcast variables. #620