-
Notifications
You must be signed in to change notification settings - Fork 129
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
Bump iceberg to 0.14 #4738
Bump iceberg to 0.14 #4738
Changes from all commits
4de01a9
bf51fbd
f7d03c1
027af93
ed147bd
8953441
868c883
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -82,7 +82,8 @@ public void initialize(String inputName, Map<String, String> options) { | |
x -> x.replace(NessieUtil.NESSIE_CONFIG_PREFIX, ""); | ||
|
||
this.api = | ||
createNessieClientBuilder(options.get(NessieUtil.CONFIG_CLIENT_BUILDER_IMPL)) | ||
createNessieClientBuilder( | ||
options.get(NessieUtil.NESSIE_CONFIG_PREFIX + "client-builder-impl")) | ||
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. nit: Should we use the existing |
||
.fromConfig(x -> options.get(removePrefix.apply(x))) | ||
.build(NessieApiV1.class); | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,9 +23,13 @@ plugins { | |
|
||
extra["maven.name"] = "Nessie - GC - Base Implementation" | ||
|
||
val scalaVersion = dependencyVersion("versionScala2_12") | ||
val scalaMajorVersion = "2.12" | ||
|
||
val sparkVersion = dependencyVersion("versionSpark31") | ||
val scalaVersion = dependencyVersion("versionScala_$scalaMajorVersion") | ||
|
||
val sparkMajorVersion = "3.1" | ||
|
||
val sparkVersion = dependencyVersion("versionSpark_$sparkMajorVersion") | ||
|
||
dependencies { | ||
implementation(platform(nessieRootProject())) | ||
|
@@ -43,11 +47,11 @@ dependencies { | |
implementation("com.fasterxml.jackson.core:jackson-annotations") | ||
implementation("com.google.code.findbugs:jsr305") | ||
|
||
compileOnly("org.apache.spark:spark-sql_2.12") { forSpark(sparkVersion) } | ||
compileOnly("org.apache.spark:spark-sql_$scalaMajorVersion") { forSpark(sparkVersion) } | ||
compileOnly("org.apache.iceberg:iceberg-api") | ||
compileOnly("org.apache.iceberg:iceberg-core") | ||
compileOnly("org.apache.iceberg:iceberg-nessie") { exclude("org.projectnessie") } | ||
compileOnly("org.apache.iceberg:iceberg-spark3") | ||
compileOnly("org.apache.iceberg:iceberg-spark-${sparkMajorVersion}_$scalaMajorVersion") | ||
compileOnly("org.apache.iceberg:iceberg-parquet") | ||
compileOnly("org.apache.parquet:parquet-column") | ||
|
||
|
@@ -56,7 +60,7 @@ dependencies { | |
testCompileOnly("org.eclipse.microprofile.openapi:microprofile-openapi-api") | ||
testImplementation(nessieProject("nessie-jaxrs-testextension")) | ||
testImplementation(nessieProject("nessie-jaxrs-tests")) | ||
testImplementation("org.apache.spark:spark-sql_2.12") { | ||
testImplementation("org.apache.spark:spark-sql_$scalaMajorVersion") { | ||
forSpark(sparkVersion) | ||
exclude("com.sun.jersey", "jersey-servlet") | ||
} | ||
|
@@ -69,8 +73,10 @@ dependencies { | |
testImplementation(project(":nessie-spark-extensions-base")) { testJarCapability() } | ||
testImplementation(project(":nessie-spark-extensions")) | ||
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. nit: Is it good idea to rename |
||
testImplementation("org.apache.iceberg:iceberg-nessie") | ||
testImplementation("org.apache.iceberg:iceberg-spark3") | ||
testImplementation("org.apache.iceberg:iceberg-spark3-extensions") | ||
testImplementation("org.apache.iceberg:iceberg-spark-${sparkMajorVersion}_$scalaMajorVersion") | ||
testImplementation( | ||
"org.apache.iceberg:iceberg-spark-extensions-${sparkMajorVersion}_$scalaMajorVersion" | ||
) | ||
testImplementation("org.apache.iceberg:iceberg-hive-metastore") | ||
|
||
testImplementation("org.assertj:assertj-core") | ||
|
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.
the whole method can be just removed