Skip to content

Nessie 0.102.0

Compare
Choose a tag to compare
@github-actions github-actions released this 21 Jan 14:49
· 128 commits to main since this release

Try it

The attached nessie-quarkus-0.102.0-runner.jar is a standalone uber-jar file that runs on Java 17 or newer and it is also available via Maven Central. Download and run it (requires Java 17):

wget https://github.com/projectnessie/nessie/releases/download/nessie-0.102.0/nessie-quarkus-0.102.0-runner.jar
java -jar nessie-quarkus-0.102.0-runner.jar

Nessie CLI is attached as nessie-cli-0.102.0.jar, which is a standalone uber-jar file that runs on Java 11 or newer. Nessie CLI is also available as a Docker image: docker run --rm -it ghcr.io/projectnessie/nessie-cli:0.102.0.

Nessie GC tool is attached as nessie-gc-0.102.0.jar, which is a standalone uber-jar file that runs on Java 11 or newer. Shell completion can be generated from the tool, check its help command. Nessie GC tool is also available as a Docker image: docker run --rm ghcr.io/projectnessie/nessie-gc:0.102.0 --help.

Nessie Server Admin tool is attached as nessie-server-admin-tool-0.102.0-runner.jar, which is a standalone uber-jar file that runs on Java 17 or newer. Shell completion can be generated from the tool, check its help command. Nessie Server Admin tool is also available as a Docker image: docker run --rm ghcr.io/projectnessie/nessie-server-admin:0.102.0 --help.

The attached nessie-helm-0.102.0.tgz is a packaged Helm chart, which can be downloaded and installed via Helm. There is also the Nessie Helm chart repo, which can be added and used to install the Nessie Helm chart.

Changelog

New Features

  • When using OAuth authentication, the Nessie client now supports including extra parameters in
    requests to the token endpoint. This is useful for passing custom parameters that are not covered
    by the standard OAuth 2.0 specification. See the Nessie
    documentation
    for
    details.
  • Add a configuration option nessie.version.store.persist.cache-enable-soft-references (defaults to
    true) to optionally disable the additional caching the constructed Java objects via soft references.
    Having the already constructed Java object is faster when getting object from the cache, but a Java object
    tree implies a rather unpredictable heap pressure, hence these object are referenced via Java soft
    references. This optimization however can cause heap issues in rare scenarios, and disabling this
    optimization can help there.

Fixes

  • Fix an issue that prevents the Nessie Server Admin tool to purge unreferenced data in the backend
    database, for data being written before Nessie version 0.101.0.
  • Fix an issue that prevents using nested fields in partition-spec and sort-order.
    Given a schema having a struct < field_a, field_b >, it was not possible to reference
    field_a or field_b in a partition-spec or sort-order. There was no issue however using fields
    at the "top level" (a schema like field_a, field_b).

Full Changelog (minus renovate commits):

  • Fix using nested fields in partition-spec and sort-order (#10237)
  • Fix backwards compatibility issues with Obj.referenced (#10218)
  • Iceberg-update / set-statistics / snapshot-id deprecation (#10234)
  • Cache: add option to disable soft references (#10217)
  • Adopt Object Storage Mock to respect S3 chunked input trailing headers (#10231)
  • Fix NesQuEIT to pass against recent Iceberg changes (#10184)
  • Migrate to maintained shadow plugin (#10183)
  • OAuth client: add support for custom request parameters (#10154)
  • Remove duplicate entry in auth docs (#10157)
  • Remove use of ScyllaDB in Nessie (#10144)
  • Enable Azure Key Vault IT (#10142)
  • Support metrics relabelings in service monitor (#10095)