-
Notifications
You must be signed in to change notification settings - Fork 2.5k
[HUDI-3088] Use Spark 3.2 as default Spark version #7327
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
Conversation
a0946bd to
0cc95e7
Compare
| } else if ("/exampleEvolvedSchemaDeleteColumn.avsc".equals(schemaPath)) { | ||
| assertNull(record.get("number")); | ||
| assertFalse(record.hasField("number")); | ||
| } else { | ||
| assertEquals(index, record.get("number")); | ||
| } | ||
| assertNull(record.get("added_field")); | ||
| // TODO temp disable | ||
| // assertNull(record.get("added_field")); |
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.
need to revisit this test case
| <groupId>org.mortbay.jetty</groupId> | ||
| <artifactId>*</artifactId> | ||
| </exclusion> | ||
| <exclusion> | ||
| <groupId>javax.servlet.jsp</groupId> | ||
| <artifactId>*</artifactId> | ||
| </exclusion> | ||
| <exclusion> | ||
| <groupId>javax.servlet</groupId> | ||
| <artifactId>*</artifactId> |
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.
not seen these dep from spark-core or spark-sql
| <groupId>org.apache.spark</groupId> | ||
| <artifactId>spark-streaming-kafka-0-10_${scala.binary.version}</artifactId> | ||
| <version>${spark.version}</version> | ||
| <exclusions> | ||
| <exclusion> | ||
| <groupId>org.apache.hadoop</groupId> | ||
| <artifactId>hadoop-client-api</artifactId> | ||
| </exclusion> | ||
| <exclusion> | ||
| <groupId>org.apache.hadoop</groupId> | ||
| <artifactId>hadoop-client-runtime</artifactId> | ||
| </exclusion> | ||
| </exclusions> |
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.
this exclusion affects utilities bundle dependency as it is included. needs to revisit the impact
904a044 to
0aab4e9
Compare
This reverts commit 0aab4e9.
2d3c710 to
5c5a904
Compare
|
Moving to #8445 |
Change Logs
Use spark3.2 profile as default dev profile.
Impact
affect dev setup. not affecting bundle artifacts.
Risk level
medium
Documentation Update
NA
Contributor's checklist