blob: be00480279e912b4625a8a58993bfe631a664fc4 [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.processing.datamap;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import org.apache.carbondata.common.logging.LogServiceFactory;
import org.apache.carbondata.core.datamap.DataMapMeta;
import org.apache.carbondata.core.datamap.DataMapStoreManager;
import org.apache.carbondata.core.datamap.Segment;
import org.apache.carbondata.core.datamap.TableDataMap;
import org.apache.carbondata.core.datamap.dev.DataMapFactory;
import org.apache.carbondata.core.datamap.dev.DataMapWriter;
import org.apache.carbondata.core.datastore.block.SegmentProperties;
import org.apache.carbondata.core.datastore.page.ColumnPage;
import org.apache.carbondata.core.metadata.CarbonTableIdentifier;
import org.apache.carbondata.core.metadata.schema.table.CarbonTable;
import org.apache.carbondata.core.metadata.schema.table.column.CarbonColumn;
import org.apache.carbondata.processing.store.TablePage;
import org.apache.log4j.Logger;
/**
* It is for writing DataMap for one table
*/
public class DataMapWriterListener {
private static final Logger LOG = LogServiceFactory.getLogService(
DataMapWriterListener.class.getCanonicalName());
// list indexed column -> list of data map writer
private Map<List<CarbonColumn>, List<DataMapWriter>> registry = new ConcurrentHashMap<>();
// table for this listener
private CarbonTableIdentifier tblIdentifier;
public CarbonTableIdentifier getTblIdentifier() {
return tblIdentifier;
}
/**
* register all datamap writer for specified table and segment
*/
public void registerAllWriter(CarbonTable carbonTable, String segmentId,
String taskNo, SegmentProperties segmentProperties) {
// clear cache in executor side
DataMapStoreManager.getInstance()
.clearDataMaps(carbonTable.getCarbonTableIdentifier().getTableUniqueName());
List<TableDataMap> tableIndices;
try {
tableIndices = DataMapStoreManager.getInstance().getAllDataMap(carbonTable);
} catch (IOException e) {
LOG.error("Error while retrieving datamaps", e);
throw new RuntimeException(e);
}
if (tableIndices != null) {
tblIdentifier = carbonTable.getCarbonTableIdentifier();
for (TableDataMap tableDataMap : tableIndices) {
// register it only if it is not lazy datamap, for lazy datamap, user
// will rebuild the datamap manually
if (!tableDataMap.getDataMapSchema().isLazy()) {
DataMapFactory factory = tableDataMap.getDataMapFactory();
register(factory, segmentId, taskNo, segmentProperties);
}
}
}
}
/**
* Register a DataMapWriter
*/
private void register(DataMapFactory factory, String segmentId,
String taskNo, SegmentProperties segmentProperties) {
assert (factory != null);
assert (segmentId != null);
DataMapMeta meta = factory.getMeta();
if (meta == null) {
// if data map does not have meta, no need to register
return;
}
List<CarbonColumn> columns = factory.getMeta().getIndexedColumns();
List<DataMapWriter> writers = registry.get(columns);
DataMapWriter writer = null;
try {
writer = factory.createWriter(new Segment(segmentId), taskNo, segmentProperties);
} catch (IOException e) {
LOG.error("Failed to create DataMapWriter: " + e.getMessage(), e);
throw new DataMapWriterException(e);
}
if (writers != null) {
writers.add(writer);
} else {
writers = new ArrayList<>();
writers.add(writer);
registry.put(columns, writers);
}
LOG.info("DataMapWriter " + writer + " added");
}
public void onBlockStart(String blockId) throws IOException {
for (List<DataMapWriter> writers : registry.values()) {
for (DataMapWriter writer : writers) {
writer.onBlockStart(blockId);
}
}
}
public void onBlockEnd(String blockId) throws IOException {
for (List<DataMapWriter> writers : registry.values()) {
for (DataMapWriter writer : writers) {
writer.onBlockEnd(blockId);
}
}
}
public void onBlockletStart(int blockletId) throws IOException {
for (List<DataMapWriter> writers : registry.values()) {
for (DataMapWriter writer : writers) {
writer.onBlockletStart(blockletId);
}
}
}
public void onBlockletEnd(int blockletId) throws IOException {
for (List<DataMapWriter> writers : registry.values()) {
for (DataMapWriter writer : writers) {
writer.onBlockletEnd(blockletId);
}
}
}
/**
* Pick corresponding column pages and add to all registered datamap
*
* @param pageId sequence number of page, start from 0
* @param tablePage page data
*/
public void onPageAdded(int blockletId, int pageId, TablePage tablePage) throws IOException {
Set<Map.Entry<List<CarbonColumn>, List<DataMapWriter>>> entries = registry.entrySet();
for (Map.Entry<List<CarbonColumn>, List<DataMapWriter>> entry : entries) {
List<CarbonColumn> indexedColumns = entry.getKey();
ColumnPage[] pages = new ColumnPage[indexedColumns.size()];
for (int i = 0; i < indexedColumns.size(); i++) {
pages[i] = tablePage.getColumnPage(indexedColumns.get(i).getColName());
}
List<DataMapWriter> writers = entry.getValue();
int pageSize = pages[0].getPageSize();
for (DataMapWriter writer : writers) {
writer.onPageAdded(blockletId, pageId, pageSize, pages);
}
}
}
/**
* Finish all datamap writers
*/
public void finish() throws IOException {
for (List<DataMapWriter> writers : registry.values()) {
for (DataMapWriter writer : writers) {
writer.finish();
}
}
registry.clear();
}
}