![JAR search and dependency download from the Maven repository](/logo.png)
org.apache.druid.server.compaction.CompactionCandidate Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.druid.server.compaction;
import org.apache.druid.error.InvalidInput;
import org.apache.druid.java.util.common.JodaUtils;
import org.apache.druid.segment.SegmentUtils;
import org.apache.druid.timeline.DataSegment;
import org.joda.time.Interval;
import javax.annotation.Nullable;
import java.util.List;
import java.util.stream.Collectors;
/**
* Non-empty list of segments of a datasource being considered for compaction.
* A candidate typically contains all the segments of a single time chunk.
*/
public class CompactionCandidate
{
private final List segments;
private final Interval umbrellaInterval;
private final String dataSource;
private final long totalBytes;
private final int numIntervals;
private final CompactionStatus currentStatus;
public static CompactionCandidate from(List segments)
{
if (segments == null || segments.isEmpty()) {
throw InvalidInput.exception("Segments to compact must be non-empty");
} else {
return new CompactionCandidate(segments, null);
}
}
private CompactionCandidate(List segments, @Nullable CompactionStatus currentStatus)
{
this.segments = segments;
this.totalBytes = segments.stream().mapToLong(DataSegment::getSize).sum();
this.umbrellaInterval = JodaUtils.umbrellaInterval(
segments.stream().map(DataSegment::getInterval).collect(Collectors.toList())
);
this.numIntervals = (int) segments.stream().map(DataSegment::getInterval).distinct().count();
this.dataSource = segments.get(0).getDataSource();
this.currentStatus = currentStatus;
}
/**
* @return Non-empty list of segments that make up this candidate.
*/
public List getSegments()
{
return segments;
}
public long getTotalBytes()
{
return totalBytes;
}
public int numSegments()
{
return segments.size();
}
/**
* Umbrella interval of all the segments in this candidate. This typically
* corresponds to a single time chunk in the segment timeline.
*/
public Interval getUmbrellaInterval()
{
return umbrellaInterval;
}
public String getDataSource()
{
return dataSource;
}
public CompactionStatistics getStats()
{
return CompactionStatistics.create(totalBytes, numSegments(), numIntervals);
}
/**
* Current compaction status of the time chunk corresponding to this candidate.
*/
@Nullable
public CompactionStatus getCurrentStatus()
{
return currentStatus;
}
/**
* Creates a copy of this CompactionCandidate object with the given status.
*/
public CompactionCandidate withCurrentStatus(CompactionStatus status)
{
return new CompactionCandidate(this.segments, status);
}
@Override
public String toString()
{
return "SegmentsToCompact{" +
"datasource=" + dataSource +
", segments=" + SegmentUtils.commaSeparatedIdentifiers(segments) +
", totalSize=" + totalBytes +
", currentStatus=" + currentStatus +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy