blob: 7c10fb2fb2bca898d5698faa1b03618f43cdbb09 [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.iotdb.db.storageengine.dataregion.compaction.execute.utils.writer;
import org.apache.iotdb.db.storageengine.dataregion.read.control.FileReaderManager;
import org.apache.iotdb.db.storageengine.dataregion.tsfile.TsFileResource;
import org.apache.tsfile.block.column.Column;
import org.apache.tsfile.file.header.PageHeader;
import org.apache.tsfile.file.metadata.ChunkMetadata;
import org.apache.tsfile.file.metadata.IChunkMetadata;
import org.apache.tsfile.read.TsFileSequenceReader;
import org.apache.tsfile.read.common.Chunk;
import org.apache.tsfile.read.common.block.TsBlock;
import org.apache.tsfile.read.common.block.column.TimeColumn;
import org.apache.tsfile.write.chunk.AlignedChunkWriterImpl;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.util.List;
public class ReadPointCrossCompactionWriter extends AbstractCrossCompactionWriter {
public ReadPointCrossCompactionWriter(
List<TsFileResource> targetResources, List<TsFileResource> seqFileResources)
throws IOException {
super(targetResources, seqFileResources);
}
@Override
public void write(TsBlock tsBlock, int subTaskId) throws IOException {
TimeColumn timestamps = tsBlock.getTimeColumn();
Column[] columns = tsBlock.getValueColumns();
int batchSize = tsBlock.getPositionCount();
// Since a batch of data is written, the end time of the current aligned device may exceed the
// end time of the device in the source file, but no error will be caused
checkTimeAndMayFlushChunkToCurrentFile(timestamps.getStartTime(), subTaskId);
AlignedChunkWriterImpl chunkWriter = (AlignedChunkWriterImpl) this.chunkWriters[subTaskId];
chunkWriter.write(timestamps, columns, batchSize);
synchronized (this) {
// we need to synchronized here to avoid multi-thread competition in sub-task
TsFileResource resource = targetResources.get(seqFileIndexArray[subTaskId]);
resource.updateStartTime(deviceId, timestamps.getStartTime());
resource.updateEndTime(deviceId, timestamps.getEndTime());
}
chunkPointNumArray[subTaskId] += timestamps.getTimes().length;
checkChunkSizeAndMayOpenANewChunk(
targetFileWriters.get(seqFileIndexArray[subTaskId]), chunkWriter, subTaskId);
isDeviceExistedInTargetFiles[seqFileIndexArray[subTaskId]] = true;
isEmptyFile[seqFileIndexArray[subTaskId]] = false;
lastTime[subTaskId] = timestamps.getEndTime();
}
@Override
protected TsFileSequenceReader getFileReader(TsFileResource resource) throws IOException {
return FileReaderManager.getInstance().get(resource.getTsFilePath(), true);
}
@Override
public boolean flushNonAlignedChunk(Chunk chunk, ChunkMetadata chunkMetadata, int subTaskId) {
throw new RuntimeException("Does not support this method in ReadPointCrossCompactionWriter");
}
@Override
public boolean flushAlignedChunk(
Chunk timeChunk,
IChunkMetadata timeChunkMetadata,
List<Chunk> valueChunks,
List<IChunkMetadata> valueChunkMetadatas,
int subTaskId) {
throw new RuntimeException("Does not support this method in ReadPointCrossCompactionWriter");
}
@Override
public boolean flushNonAlignedPage(
ByteBuffer compressedPageData, PageHeader pageHeader, int subTaskId) {
throw new RuntimeException("Does not support this method in ReadPointCrossCompactionWriter");
}
@Override
public boolean flushAlignedPage(
ByteBuffer compressedTimePageData,
PageHeader timePageHeader,
List<ByteBuffer> compressedValuePageDatas,
List<PageHeader> valuePageHeaders,
int subTaskId) {
throw new RuntimeException("Does not support this method in ReadPointCrossCompactionWriter");
}
}