[
https://issues.apache.org/jira/browse/BEAM-12070?focusedWorklogId=673085&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-673085
]
ASF GitHub Bot logged work on BEAM-12070:
-----------------------------------------
Author: ASF GitHub Bot
Created on: 02/Nov/21 11:04
Start Date: 02/Nov/21 11:04
Worklog Time Spent: 10m
Work Description: aromanenko-dev commented on a change in pull request
#15811:
URL: https://github.com/apache/beam/pull/15811#discussion_r740948806
##########
File path:
sdks/java/io/parquet/src/main/java/org/apache/beam/sdk/io/parquet/ParquetIO.java
##########
@@ -387,11 +389,26 @@ public Read withBeamSchemas(boolean inferBeamSchema) {
return toBuilder().setInferBeamSchema(inferBeamSchema).build();
}
- /** Enable the Splittable reading. */
+ /**
+ * Enable the Splittable reading.
+ *
+ * @deprecated as of version 2.35.0. Splittable reading must be always
enabled.
+ */
+ @Deprecated
public Read withSplit() {
return toBuilder().setSplittable(true).build();
}
+ /**
+ * Disable the Splittable reading.
+ *
+ * @deprecated as of version 2.35.0. Splittable reading must be always
enabled.
Review comment:
Thanks, sounds good to me!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 673085)
Time Spent: 2h (was: 1h 50m)
> Make ParquetIO splittable by default
> ------------------------------------
>
> Key: BEAM-12070
> URL: https://issues.apache.org/jira/browse/BEAM-12070
> Project: Beam
> Issue Type: Improvement
> Components: io-java-parquet
> Reporter: Ismaël Mejía
> Assignee: Alexey Romanenko
> Priority: P2
> Time Spent: 2h
> Remaining Estimate: 0h
>
> For historical reasons ParquetIO prefers a non splittable read mode, but the
> common Parquet use case requires it to be splittable by default. Ideally we
> should remove the non-splittable path and have a single unified way to read
> data in the internal implementation.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)