[
https://issues.apache.org/jira/browse/HBASE-15664?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15246234#comment-15246234
]
Hudson commented on HBASE-15664:
--------------------------------
SUCCESS: Integrated in HBase-1.4 #96 (See
[https://builds.apache.org/job/HBase-1.4/96/])
HBASE-15664 Use Long.MAX_VALUE instead of HConstants.FOREVER in (zhangduo: rev
ee78b6da7aade033e529d6e6e3a8214eb01d791f)
*
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/compactions/RatioBasedCompactionPolicy.java
*
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/compactions/DateTieredCompactionPolicy.java
> Use Long.MAX_VALUE instead of HConstants.FOREVER in CompactionPolicy
> --------------------------------------------------------------------
>
> Key: HBASE-15664
> URL: https://issues.apache.org/jira/browse/HBASE-15664
> Project: HBase
> Issue Type: Bug
> Components: Compaction
> Affects Versions: 2.0.0, 1.3.0, 0.98.19, 1.4.0
> Reporter: Duo Zhang
> Assignee: Duo Zhang
> Fix For: 2.0.0, 1.3.0, 0.98.19, 1.4.0
>
> Attachments: HBASE-15664-0.98.patch, HBASE-15664-branch-1.patch,
> HBASE-15664-branch-1.v1.patch, HBASE-15664-v1.patch, HBASE-15664-v2.patch,
> HBASE-15664.patch
>
>
> The TTL per CF is in seconds, we will convert it to milliseconds when
> construct HStore. And if it is HConstants.FOREVER, we will set it to
> Long.MAX_VALUE.
> {code:title=HStore.java}
> public static long determineTTLFromFamily(final HColumnDescriptor family) {
> // HCD.getTimeToLive returns ttl in seconds. Convert to milliseconds.
> long ttl = family.getTimeToLive();
> if (ttl == HConstants.FOREVER) {
> // Default is unlimited ttl.
> ttl = Long.MAX_VALUE;
> } else if (ttl == -1) {
> ttl = Long.MAX_VALUE;
> } else {
> // Second -> ms adjust for user data
> ttl *= 1000;
> }
> return ttl;
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)