[
https://issues.apache.org/jira/browse/FALCON-1569?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14979686#comment-14979686
]
Sowmya Ramesh commented on FALCON-1569:
---------------------------------------
[~venkatnrangan]: I couldn't find this information in Oozie docs.
Does oozie do validation for coord:minutes()/hours().. EL functions i.e.
minutes : 0 - 59, hours: 0 - 23 and so on?
> Bug in setting the frequency of Feed retention coordinator
> -----------------------------------------------------------
>
> Key: FALCON-1569
> URL: https://issues.apache.org/jira/browse/FALCON-1569
> Project: Falcon
> Issue Type: Bug
> Components: retention
> Reporter: Sowmya Ramesh
> Assignee: Sowmya Ramesh
> Fix For: trunk
>
>
> Currently in FeedRetentionCoordinatorBuilder, timeUnit is used to determine
> frequency of the retention coordinator.
> {code}
> TimeUnit timeUnit = entity.getFrequency().getTimeUnit();
> if (timeUnit == TimeUnit.hours || timeUnit == TimeUnit.minutes) {
> coord.setFrequency("${coord:hours(6)}");
> } else {
> coord.setFrequency("${coord:days(1)}");
> }
> {code}
> days(2) can be mapped to hours(48). If user uses hours(48) then retention
> coordinator runs every 6 hours instead of running daily wasting the compute
> resources. Instead get the time duration and use that to determine the
> retention job frequency.
> Also fix it in FalconUnitTestBase.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)