-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-746][CORE] Added Avro Serialization to Kryo #7004
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
Changes from 1 commit
97fba62
2b545cc
f4ae251
ab46d10
d421bf5
6d1925c
0f5471a
c5fe794
fa9298b
1183a48
dd71efe
c0cf329
8158d51
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -402,13 +402,13 @@ | |
| <groupId>org.apache.avro</groupId> | ||
| <artifactId>avro</artifactId> | ||
| <version>${avro.version}</version> | ||
| <scope>compile</scope> | ||
| <scope>${hadoop.deps.scope}</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.apache.avro</groupId> | ||
| <artifactId>avro-mapred</artifactId> | ||
| <version>${avro.version}</version> | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Similarly to the previous one, this one should only contain groupId / artifactId (everything else is inherited).
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The one thing you have to add here, though, is:
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for pointing that out, just fixed that. |
||
| <scope>compile</scope> | ||
| <scope>${hadoop.deps.scope}</scope> | ||
| <exclusions> | ||
| <exclusion> | ||
| <groupId>io.netty</groupId> | ||
|
|
||
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 included already?
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.
avroandavro-mapredare already in thedependencyMangementof the parent POM, so nothing more thangroupId,artifactIdand perhapsscopeshould be included here. In particular,versionshould not generally be specified when it is already in thedependencyManagement. This is a frequent error in the Spark POMs.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.
+1 to Mark's comments.