Skip to content

Releases: gazette/core

v0.84.1

30 Oct 16:30
Compare
Choose a tag to compare

SQLite is now a supported consumer store! (Issue #212).

A bike-share example and extensive documentation have been added,
along with new kustomize manifests for deploying existing examples (Issue #97).

Official Images

Docker images are available on Docker Hub: gazette/broker:v0.84.1 & gazette/examples:v0.84.1.

Other Changes

  • Instances of message.Framing may now be dynamically registered. Support for text/csv is added.
  • Added the gazctl attach-uuids sub-command.
  • Automated partition crash-tests are re-enabled, after adding Urkel
    DaemonSet kustomize manifests to properly support them (Issue #222).
  • The ListFragments RPC now properly respects fragment stores which use re-write rules (Issue #223).
  • The journals of ShardSpecs are now verified by consumer servers and gazctl, to actually
    exist and have appropriate content-types (Issue #216).
  • Extensive Godoc and documentation improvements.
  • Various minor logging improvements and bug fixes.
  • A CHANGELOG.md has been added to the project, and will be updated on a go-forward basis.

v0.83.2

04 Oct 19:32
Compare
Choose a tag to compare

This release introduces exactly-once processing semantics to Gazette!

This is a breaking change to many of the consumer package interfaces, notably Shard, Application and Store, as well as the message interfaces. Updates to consumer applications will be required.

This release also introduces Kustomize manifests for deploying brokers, consumers, and dependencies. Helm charts of the repo are deprecated and will be removed in a future release.

Official Images

Docker images are available on Docker Hub: gazette/broker:v0.83.2 & gazette/examples:v0.83.2.

Rolling Upgrades

A rolling upgrade from v0.82 => v0.83 is supported and tested, with the following caveats:

  • Brokers must be fully migrated to v0.83 before any consumers may be migrated. This is required as v0.83 brokers introduce journal "registers" which v0.83 consumers rely on. The v0.83 broker is fully compatible with v0.82 consumers.
  • v0.83 consumers will migrate the means of storing offsets within RocksDB from now-legacy keys/values to new consumer Checkpoints introduced with v0.83. Legacy offsets are not removed, but are also not updated. This means downgrading from v0.83 => v0.82 will re-process portions of source journals read by the v0.83 consumer. Similarly, a subsequent re-upgrade from v0.82 => v0.83 will not migrate offsets again (and portions read by the downgraded v0.82 consumer will be re-processed).

v0.82.2

04 Oct 16:33
Compare
Choose a tag to compare

Release v0.82.2 is a patch release of the v0.82 branch

It includes fixes cherry-picked from master since v0.82.1 was cut:

36a01b6 consumer: fix some spurious shard recovery errors
ac3a329 broker: add more context cancellation checks for log supression
35632e1 broker: proxyAppend should take AppendRequest by value (not reference)
4c6fa33 client: RouteCache should account for empty Route
ef7098e allocator: update some logging

Official Images

Docker images are available on Docker Hub: gazette/broker:v0.82.2 & gazette/examples:v0.82.2.