blob: 92641e3178b0d4eb2e28c2a96aeec57fa80ad56d [file] [log] [blame]
/*
* 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.segment.realtime.appenderator;
import javax.annotation.Nullable;
/**
* Result of {@link BaseAppenderatorDriver#append)}. It contains the identifier of the
* segment which the InputRow is added to, the number of rows in that segment and if persist is required because either
* maxRowsInMemory or intermediate persist period threshold is hit.
*/
public class AppenderatorDriverAddResult
{
private final SegmentIdWithShardSpec segmentIdentifier;
private final int numRowsInSegment;
private final long totalNumRowsInAppenderator;
private final boolean isPersistRequired;
public static AppenderatorDriverAddResult ok(
SegmentIdWithShardSpec segmentIdentifier,
int numRowsInSegment,
long totalNumRowsInAppenderator,
boolean isPersistRequired
)
{
return new AppenderatorDriverAddResult(
segmentIdentifier,
numRowsInSegment,
totalNumRowsInAppenderator,
isPersistRequired
);
}
public static AppenderatorDriverAddResult fail()
{
return new AppenderatorDriverAddResult(null, 0, 0, false);
}
private AppenderatorDriverAddResult(
@Nullable SegmentIdWithShardSpec segmentIdentifier,
int numRowsInSegment,
long totalNumRowsInAppenderator,
boolean isPersistRequired
)
{
this.segmentIdentifier = segmentIdentifier;
this.numRowsInSegment = numRowsInSegment;
this.totalNumRowsInAppenderator = totalNumRowsInAppenderator;
this.isPersistRequired = isPersistRequired;
}
public boolean isOk()
{
return segmentIdentifier != null;
}
public SegmentIdWithShardSpec getSegmentIdentifier()
{
return segmentIdentifier;
}
public int getNumRowsInSegment()
{
return numRowsInSegment;
}
public long getTotalNumRowsInAppenderator()
{
return totalNumRowsInAppenderator;
}
public boolean isPersistRequired()
{
return isPersistRequired;
}
public boolean isPushRequired(@Nullable Integer maxRowsPerSegment, @Nullable Long maxTotalRows)
{
boolean overThreshold = false;
if (maxRowsPerSegment != null) {
overThreshold = getNumRowsInSegment() >= maxRowsPerSegment;
}
if (maxTotalRows != null) {
overThreshold |= getTotalNumRowsInAppenderator() >= maxTotalRows;
}
return overThreshold;
}
}