-
Notifications
You must be signed in to change notification settings - Fork 28.5k
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
[SPARK-12197] [SparkCore] Kryo & Avro - Support Schema Repo #13761
Conversation
Can one of the admins verify this patch? |
Hi, the JIRA task that was closed on 'wont fix' since the PR had conflicts and you cleaned old PRs, I created a new clean one. |
Don't |
Not as far as I understand(correct me if I'm wrong), I'll explain the use case :
The whole point of using GenericRecords in Avro and not specific records is Our specific use case - kind of sessionization of events by key. We don't Now, since we only do groupBy, we do not care about the events body If basically a DataSet has a tabular format behind the scenes, we can't On Mon, Jun 20, 2016 at 8:35 AM, Herman van Hovell <notifications@github.com
|
I generally wouldn't open a PR three times for one issue when it's not getting traction, which is why the JIRA was closed. This is decent discussion, but if nobody's on board with the change this time, please let's leave it closed. |
Sure - thought it was closed since the PR got old and had conflicts. |
@RotemShaul is this something doable by implementing a custom serializer outside Spark? |
@rxin As Spark already chose to (partially) support Avro from within SparkCore, Avro Generic Records and Spark-Core users will always face the Just my opinion. In my current workplace - I took your On Sat, Jul 23, 2016 at 5:14 AM, Reynold Xin notifications@github.com
|
a7d5115
to
c84958e
Compare
Closes apache#11785 Closes apache#13027 Closes apache#13614 Closes apache#13761 Closes apache#15197 Closes apache#14006 Closes apache#12576 Closes apache#15447 Closes apache#13259 Closes apache#15616 Closes apache#14473 Closes apache#16638 Closes apache#16146 Closes apache#17269 Closes apache#17313 Closes apache#17418 Closes apache#17485 Closes apache#17551 Closes apache#17463 Closes apache#17625 Closes apache#10739 Closes apache#15193 Closes apache#15344 Closes apache#14804 Closes apache#16993 Closes apache#17040 Closes apache#15180 Closes apache#17238
This pr proposed to close stale PRs. Currently, we have 400+ open PRs and there are some stale PRs whose JIRA tickets have been already closed and whose JIRA tickets does not exist (also, they seem not to be minor issues). // Open PRs whose JIRA tickets have been already closed Closes apache#11785 Closes apache#13027 Closes apache#13614 Closes apache#13761 Closes apache#15197 Closes apache#14006 Closes apache#12576 Closes apache#15447 Closes apache#13259 Closes apache#15616 Closes apache#14473 Closes apache#16638 Closes apache#16146 Closes apache#17269 Closes apache#17313 Closes apache#17418 Closes apache#17485 Closes apache#17551 Closes apache#17463 Closes apache#17625 // Open PRs whose JIRA tickets does not exist and they are not minor issues Closes apache#10739 Closes apache#15193 Closes apache#15344 Closes apache#14804 Closes apache#16993 Closes apache#17040 Closes apache#15180 Closes apache#17238 N/A Author: Takeshi Yamamuro <yamamuro@apache.org> Closes apache#17734 from maropu/resolved_pr. Change-Id: Id2e590aa7283fe5ac01424d30a40df06da6098b5
[SPARK-12197] [SparkCore] Kryo & Avro - Support Schema Repo
What changes were proposed in this pull request?
Adding SchemaRepository for Avro Schemas when using Spark-Core and GenericRecords
How was this patch tested?
Unit tests and manual tests committed.
Also, we've done this change in our private repo and used it in our app.