Skip to main content
Version: 13.x (Current)

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[1.2.3] - 2024-05-27

Fixed

  • when a Javascript custom cast function returns a Javascript Date object, now the service properly maps the type into the internal one

[1.2.2] - 2024-05-16

Changed

  • when the storage component receives an empty list of projection records, instead of treating it as an error now it logs a warning message and it proceeds processing the other topic-partition ingestion events

[1.2.1] - 2024-05-07

Changed

  • now Kafka consumer enters an unhealthy state as soon as a single partition reaches the maximum number of processing attempts

[1.2.0] - 2024-05-03

Added

  • extend configuration parsing capabilities, so that secrets can be either written directly as plaintext in the configuration file, loaded from an environment variable or from a file (one file per secret or using a .ini file to group multiple secrets under the same file)

[1.1.1] - 2024-04-23

Added

  • introduce support for GRPC as communication protocol in Runtime Management component

Changed

  • improved logging messages for internal communication errors to clarify their cause and how to solve it
  • Kafka consumer rebalance logic has been revised, adding a deadline to the wait for records processing end. In this manner rebalance operations do not hang indefinitely

Fixed

  • when internal timeout error (FD_PS_E7001) is raised, now the service does not hang indefinitely when it is stopped

[1.1.0] - 2024-04-12

Added

  • introduce support for Runtime Management features, such as pause and resume of consumption from ingestion topics

Changed

  • set ingestion consumer to adopt org.apache.kafka.clients.consumer.StickyAssignor partition assigner
  • relax the constraint where an ingestion consumer was not ready when no partition was assigned to it
  • relax Kafka configuration constrain on auto topic creation

Fixed

  • when any projection-update topic configuration is not provided, the service now warns the user that the configuration is missing such topics, instead of throwing. This enables use cases where the only goal of projection storer is to ingest change events, process and store them without notifying downstream components

[1.0.1] - 2023-12-19

Fixed

  • when an ingestion event representing a DELETE operation is processed, in case it is not possible to extract the before property from the message itself, the service tries to retrieve it from the storage system. In case it does not find it, the before property of the DELETE operation is then set to the projection record's key as fallback.
  • when employing custom message adapter, when an empty payload is received, it ensured that a buffer of zero length is sent to the user-defined implementation. In this manner, they can design their own logic to properly treat such cases.

Changed

  • service dependencies were updated
  • unused error codes were removed

[1.0.0] - 2023-11-09

This is the initial release of Projection Storer service. A brief overview regarding the service can be found here while an in depth explanation describing how to configure the service can be found here