org.apache.druid.segment.join.FrameBasedInlineJoinableFactory 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 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.join;
import org.apache.druid.java.util.common.DateTimes;
import org.apache.druid.query.DataSource;
import org.apache.druid.query.FrameBasedInlineDataSource;
import org.apache.druid.query.InlineDataSource;
import org.apache.druid.segment.join.table.FrameBasedIndexedTable;
import org.apache.druid.segment.join.table.IndexedTableJoinable;
import java.util.Optional;
import java.util.Set;
/**
* Creates a joinable from the {@link FrameBasedInlineDataSource}. This materializes the datasource to an
* {@link InlineDataSource}, before creating the joinable on it, which carries the overhead of this conversion.
*/
public class FrameBasedInlineJoinableFactory implements JoinableFactory
{
@Override
public boolean isDirectlyJoinable(DataSource dataSource)
{
return dataSource instanceof FrameBasedInlineDataSource;
}
@Override
public Optional build(DataSource dataSource, JoinConditionAnalysis condition)
{
FrameBasedInlineDataSource frameBasedInlineDataSource = (FrameBasedInlineDataSource) dataSource;
if (condition.canHashJoin()) {
final Set rightKeyColumns = condition.getRightEquiConditionKeys();
return Optional.of(
new IndexedTableJoinable(
new FrameBasedIndexedTable(
frameBasedInlineDataSource,
rightKeyColumns,
DateTimes.nowUtc().toString()
)
)
);
}
return Optional.empty();
}
}