[
https://issues.apache.org/jira/browse/BEAM-7450?focusedWorklogId=259160&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-259160
]
ASF GitHub Bot logged work on BEAM-7450:
----------------------------------------
Author: ASF GitHub Bot
Created on: 12/Jun/19 23:23
Start Date: 12/Jun/19 23:23
Worklog Time Spent: 10m
Work Description: jkff commented on pull request #8718: [BEAM-7450] Add
an unbounded HcatalogIO reader using splittable pardo
URL: https://github.com/apache/beam/pull/8718#discussion_r293153801
##########
File path:
sdks/java/io/hcatalog/src/main/java/org/apache/beam/sdk/io/hcatalog/HCatalogIO.java
##########
@@ -186,6 +216,26 @@ public Read withFilter(String filter) {
return toBuilder().setFilter(filter).build();
}
+ /** Sets the duration after which the PartitionPollerFn resumes polling
for new partitions. */
+ public Read withPollingInterval(Duration pollingInterval) {
+ return toBuilder().setPollingInterval(pollingInterval).build();
+ }
+
+ /** Specifies the name of the column which contains the watermark values.
*/
Review comment:
This comment looks wrong. I'm generally not sure what this property is for.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 259160)
Time Spent: 6h 20m (was: 6h 10m)
> Unbounded HCatalogIO Reader using splittable pardos
> ---------------------------------------------------
>
> Key: BEAM-7450
> URL: https://issues.apache.org/jira/browse/BEAM-7450
> Project: Beam
> Issue Type: New Feature
> Components: sdk-java-core
> Reporter: Ankit Jhalaria
> Assignee: Ankit Jhalaria
> Priority: Minor
> Time Spent: 6h 20m
> Remaining Estimate: 0h
>
> # Current version of HcatalogIO is a bounded source.
> # While migrating our jobs to aws, we realized that it would be helpful to
> have an unbounded hcat reader that can behave as an unbounded source and
> polls for new partitions as and when they become available.
> # I have used splittable pardo(s) to do this. There is a flag that can be
> set to treat this as a bounded source which will terminate if that flag is
> set.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)