io.druid.query.spec.SpecificSegmentQueryRunner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of druid-processing Show documentation
Show all versions of druid-processing Show documentation
A module that is everything required to understands Druid Segments
/*
* Licensed to Metamarkets Group Inc. (Metamarkets) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. Metamarkets 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 io.druid.query.spec;
import com.google.common.base.Throwables;
import com.google.common.collect.Lists;
import com.metamx.common.guava.Accumulator;
import com.metamx.common.guava.Sequence;
import com.metamx.common.guava.Yielder;
import com.metamx.common.guava.YieldingAccumulator;
import io.druid.query.Query;
import io.druid.query.QueryRunner;
import io.druid.query.Result;
import io.druid.query.SegmentDescriptor;
import io.druid.segment.SegmentMissingException;
import java.io.IOException;
import java.util.List;
import java.util.Map;
import java.util.concurrent.Callable;
/**
*/
public class SpecificSegmentQueryRunner implements QueryRunner
{
private final QueryRunner base;
private final SpecificSegmentSpec specificSpec;
public SpecificSegmentQueryRunner(
QueryRunner base,
SpecificSegmentSpec specificSpec
)
{
this.base = base;
this.specificSpec = specificSpec;
}
@Override
public Sequence run(final Query input, final Map responseContext)
{
final Query query = input.withQuerySegmentSpec(specificSpec);
final Thread currThread = Thread.currentThread();
final String currThreadName = currThread.getName();
final String newName = String.format("%s_%s_%s", query.getType(), query.getDataSource(), query.getIntervals());
final Sequence baseSequence = doNamed(
currThread, currThreadName, newName, new Callable>()
{
@Override
public Sequence call() throws Exception
{
return base.run(query, responseContext);
}
}
);
return new Sequence()
{
@Override
public OutType accumulate(final OutType initValue, final Accumulator accumulator)
{
return doItNamed(
new Callable()
{
@Override
public OutType call() throws Exception
{
try {
return baseSequence.accumulate(initValue, accumulator);
}
catch (SegmentMissingException e) {
List missingSegments = (List) responseContext.get(Result.MISSING_SEGMENTS_KEY);
if (missingSegments == null) {
missingSegments = Lists.newArrayList();
responseContext.put(Result.MISSING_SEGMENTS_KEY, missingSegments);
}
missingSegments.add(specificSpec.getDescriptor());
return initValue;
}
}
}
);
}
@Override
public Yielder toYielder(
final OutType initValue,
final YieldingAccumulator accumulator
)
{
return doItNamed(
new Callable>()
{
@Override
public Yielder call() throws Exception
{
return makeYielder(baseSequence.toYielder(initValue, accumulator));
}
}
);
}
private Yielder makeYielder(final Yielder yielder)
{
return new Yielder()
{
@Override
public OutType get()
{
return yielder.get();
}
@Override
public Yielder next(final OutType initValue)
{
return doItNamed(
new Callable>()
{
@Override
public Yielder call() throws Exception
{
return yielder.next(initValue);
}
}
);
}
@Override
public boolean isDone()
{
return yielder.isDone();
}
@Override
public void close() throws IOException
{
yielder.close();
}
};
}
private RetType doItNamed(Callable toRun)
{
return doNamed(currThread, currThreadName, newName, toRun);
}
};
}
private RetType doNamed(Thread currThread, String currName, String newName, Callable toRun)
{
try {
currThread.setName(newName);
return toRun.call();
}
catch (Exception e) {
throw Throwables.propagate(e);
}
finally {
currThread.setName(currName);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy