blob: 2b0674d556db9581e1706bff46766c95f462e3a8 [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.carbondata.core.index.dev.fgindex;
import org.apache.carbondata.common.annotations.InterfaceAudience;
import org.apache.carbondata.common.annotations.InterfaceStability;
import org.apache.carbondata.core.index.IndexLevel;
import org.apache.carbondata.core.index.dev.IndexFactory;
import org.apache.carbondata.core.metadata.schema.table.CarbonTable;
import org.apache.carbondata.core.metadata.schema.table.IndexSchema;
/**
* Factory for {@link FineGrainIndex}
*
* 1. Any filter query which hits the table with index will call prune method of FGIndex.
* 2. The prune method of FGIndex return list FineGrainBlocklet , these blocklets contain the
* information of block, blocklet, page and rowIds information as well.
* 3. The pruned blocklets are internally written to file and returns only the block ,
* blocklet and filepath information as part of Splits.
* 4. Based on the splits scan rdd schedule the tasks.
* 5. In filter scanner we check the index writer path from split and reads the
* bitset if exists. And pass this bitset as input to it.
*/
@InterfaceAudience.Developer("Index")
@InterfaceStability.Evolving
public abstract class FineGrainIndexFactory extends IndexFactory<FineGrainIndex> {
public FineGrainIndexFactory(CarbonTable carbonTable, IndexSchema indexSchema) {
super(carbonTable, indexSchema);
}
@Override
public IndexLevel getIndexLevel() {
return IndexLevel.FG;
}
}