T ronmoneta/compression auto detect fix (#337)
* Changed DataFormats to not compress if needed * Changed CHANGELOG.md
This commit is contained in:
Родитель
7e6a85fc97
Коммит
09b65d03be
|
@ -4,7 +4,11 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## [5.0.3] - 2023-11-27
|
## Unreleased
|
||||||
|
### Changed
|
||||||
|
- Changed binary files data format compression to false
|
||||||
|
|
||||||
|
[5.0.3] - 2023-11-27
|
||||||
### Fixed
|
### Fixed
|
||||||
* IOException is sometimes considered transient
|
* IOException is sometimes considered transient
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -403,9 +403,9 @@ public class IngestionProperties implements TraceableAttributes {
|
||||||
SINGLEJSON("singlejson", IngestionMapping.IngestionMappingKind.JSON, true),
|
SINGLEJSON("singlejson", IngestionMapping.IngestionMappingKind.JSON, true),
|
||||||
MULTIJSON("multijson", IngestionMapping.IngestionMappingKind.JSON, true),
|
MULTIJSON("multijson", IngestionMapping.IngestionMappingKind.JSON, true),
|
||||||
AVRO("avro", IngestionMapping.IngestionMappingKind.AVRO, false),
|
AVRO("avro", IngestionMapping.IngestionMappingKind.AVRO, false),
|
||||||
APACHEAVRO("apacheavro", IngestionMapping.IngestionMappingKind.APACHEAVRO, true),
|
APACHEAVRO("apacheavro", IngestionMapping.IngestionMappingKind.APACHEAVRO, false),
|
||||||
PARQUET("parquet", IngestionMapping.IngestionMappingKind.PARQUET, false),
|
PARQUET("parquet", IngestionMapping.IngestionMappingKind.PARQUET, false),
|
||||||
SSTREAM("sstream", IngestionMapping.IngestionMappingKind.SSTREAM, true),
|
SSTREAM("sstream", IngestionMapping.IngestionMappingKind.SSTREAM, false),
|
||||||
ORC("orc", IngestionMapping.IngestionMappingKind.ORC, false),
|
ORC("orc", IngestionMapping.IngestionMappingKind.ORC, false),
|
||||||
RAW("raw", IngestionMapping.IngestionMappingKind.CSV, true),
|
RAW("raw", IngestionMapping.IngestionMappingKind.CSV, true),
|
||||||
W3CLOGFILE("w3clogfile", IngestionMapping.IngestionMappingKind.W3CLOGFILE, true);
|
W3CLOGFILE("w3clogfile", IngestionMapping.IngestionMappingKind.W3CLOGFILE, true);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче