blob: fa782bf9784b2dd621e3ff902bf5f18c4473db31 [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.kylin.storage.hbase.ii;
import java.util.ArrayList;
import org.apache.hadoop.hbase.client.Connection;
import org.apache.kylin.invertedindex.IIInstance;
import org.apache.kylin.invertedindex.IISegment;
import org.apache.kylin.metadata.realization.SQLDigest;
import org.apache.kylin.metadata.tuple.ITupleIterator;
import org.apache.kylin.metadata.tuple.TupleInfo;
import org.apache.kylin.storage.IStorageQuery;
import org.apache.kylin.storage.StorageContext;
import org.apache.kylin.storage.hbase.HBaseConnection;
import org.apache.kylin.storage.hbase.ii.coprocessor.endpoint.EndpointTupleIterator;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* @author yangli9
*/
public class InvertedIndexStorageQuery implements IStorageQuery {
private static Logger logger = LoggerFactory.getLogger(InvertedIndexStorageQuery.class);
private IISegment seg;
private String uuid;
private EndpointTupleIterator dataIterator;
public InvertedIndexStorageQuery(IIInstance ii) {
this.seg = ii.getFirstSegment();
this.uuid = ii.getUuid();
}
@Override
public ITupleIterator search(StorageContext context, SQLDigest sqlDigest, TupleInfo returnTupleInfo) {
String tableName = seg.getStorageLocationIdentifier();
//Connection is cached, so need not be closed
Connection conn = HBaseConnection.get(context.getConnUrl());
try {
dataIterator = new EndpointTupleIterator(seg, sqlDigest.filter, sqlDigest.groupbyColumns, new ArrayList<>(sqlDigest.aggregations), context, conn, returnTupleInfo);
return dataIterator;
} catch (Throwable e) {
logger.error("Error when connecting to II htable " + tableName, e);
throw new IllegalStateException("Error when connecting to II htable " + tableName, e);
}
}
}