-
Notifications
You must be signed in to change notification settings - Fork 5
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
DP-1723: Changelog #51
Open
kowallen
wants to merge
2
commits into
main
Choose a base branch
from
chore/DP-1723-changelog
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,182 @@ | ||
# Change Log | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
## [Unreleased] - yyyy-mm-dd | ||
|
||
## [1.8.3] - 2023-08-30 | ||
|
||
### Fixed | ||
|
||
- Error logging for not successful file upload. | ||
- Committing an offset for heterogeneous topics. | ||
|
||
### Changed | ||
|
||
- `connect.ems.flattener.enable` is true by default. | ||
|
||
## [1.8.2] - 2023-08-25 | ||
|
||
### Added | ||
|
||
- Proper logging when connector is misconfigured for `connect.ems.order.field.name`. | ||
|
||
### Fixed | ||
|
||
- Kotlin's dependency removed from build jar - caused problems with http library. | ||
- A bug that caused connector to fail in case of schema with `union(null, record)`. | ||
|
||
## [1.8.1] - 2023-08-18 | ||
|
||
### Added | ||
|
||
- `connect.ems.sink.put.timeout.ms` - property that is used connector to timeout long-running `put`. | ||
|
||
### Fixed | ||
|
||
- The blocking way of handling the implementation of `put` Sink interface replaced with non-blocking approach handled by internal supervisor that can fail connector in case of timeout. This prevents connector from getting into `zombie` state. | ||
|
||
## [1.8.0] - 2023-07-12 | ||
|
||
### Changed | ||
|
||
- The default sizes of commit policy configuration properties and limits for them, so it plays better with EMS. | ||
|
||
## [1.7.2] - 2023-07-03 | ||
|
||
### Changed | ||
|
||
- `connect.ems.parquet.write.flush.records` to `connect.ems.parquet.row.group.size.bytes`. | ||
|
||
### Fixed | ||
|
||
- The use of http client - now it is a singleton instead of instance per request. | ||
|
||
## [1.7.1] - 2023-06-27 | ||
|
||
### Added | ||
|
||
- Brought back an option of having null as values of primary key fields by setting `connect.ems.allow.null.pk`. | ||
|
||
### Changed | ||
|
||
- `connect.ems.parquet.write.flush.records` now refers to bytes rather than records. | ||
|
||
### Fixed | ||
|
||
- Enriched the file name of the parquet file, so it has information about offsets, size and number of the rows. | ||
|
||
## [1.7.0] - 2023-06-23 | ||
|
||
### Added | ||
|
||
- Option of handling Decimal type by converting it to double: `connector.ems.convert.decimals.to.double`. | ||
|
||
### Fixed | ||
|
||
- Major bug in Commit Policy that caused a connector to not send the files when it should. | ||
|
||
## [1.6.2] - 2023-06-12 | ||
|
||
### Fixed | ||
|
||
- Json chunk flattening bugs. | ||
|
||
## [1.6.1] - 2023-05-16 | ||
|
||
### Added | ||
|
||
- Contributor notes and docker-compose. | ||
|
||
### Fixed | ||
|
||
- A bug that caused connector to hang when there was a schema change. | ||
|
||
## [1.6.0] - 2023-05-08 | ||
|
||
### Added | ||
|
||
- XML support. | ||
- Experimental in memory mode that does not use file system to create parquet files before sending them - `connect.ems.inmemfs.enable`. | ||
|
||
### Fixed | ||
|
||
- Minor bug with Kafka metadata. | ||
|
||
## [1.5.0] - 2023-03-14 | ||
|
||
### Added | ||
|
||
- New configuration that when enabled will force connector to attach kafka metadata like offset, partition, kafkaTimestamp to parquet file - `connect.ems.embed.kafka.metadata`. | ||
- Primary keys null validation. | ||
|
||
### Fixed | ||
|
||
- A bug that caused connector to fail in case of null schemas. | ||
|
||
## [1.4.0] - 2023-01-30 | ||
|
||
### Added | ||
|
||
- Flattener - connector now can handle non-flat Kafka messages. Following config was added: `connect.ems.flattener.enable`, `connect.ems.flattener.collections.discard`. | ||
- Flattener has now an option of creating JSON blobs for Kafka topics with more advanced nested structures by using `connect.ems.flattener.jsonblob.chunks`. | ||
|
||
## [1.3.4] - 2022-10-03 | ||
|
||
### Fixed | ||
|
||
- Minor technical details about releases. | ||
|
||
## [1.3.3] - 2022-09-15 | ||
|
||
### Added | ||
|
||
- Properties to control http client: `connect.ems.pool.max.idle`, `connect.ems.pool.keepalive`, `connect.ems.pool.explicit.close`. | ||
|
||
### Changed | ||
|
||
- Java version support changed from 8 to 11. | ||
|
||
## [1.3.2] - 2022-08-01 | ||
|
||
### Changed | ||
|
||
- Contributor notes on release process. | ||
|
||
## [1.3.1] - 2022-06-06 | ||
|
||
### Changed | ||
|
||
- `clientId` fixed to `CelonisKafka2Ems`. | ||
|
||
## [1.3.0] - 2022-06-02 | ||
|
||
### Added | ||
|
||
- Support for `connect.ems.order.field.name` (`duplicateRemovalOrderColumn`) - so ingestion with Primary Key has an information on how to deduplicate rows. | ||
|
||
### Changed | ||
|
||
- README. | ||
- Licensing. | ||
|
||
## [1.2.0] - 2022-05-26 | ||
|
||
### Added | ||
|
||
- Support for proxy. | ||
- Obfuscation. | ||
- README. | ||
|
||
### Changed | ||
|
||
- General refactor. | ||
- Better test coverage. | ||
- Better parquet file handling. | ||
|
||
|
||
## [0.9.0] - 2022-01-26 | ||
|
||
Initial version of Kafka EMS Connector. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Should we expand a bit on this latter point? Maybe it would be more clear if we said something like: