All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.flink.table.filesystem.stream.compact.CompactCoordinator Maven / Gradle / Ivy

Go to download

The newest version!
/*
 * 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.flink.table.filesystem.stream.compact;

import org.apache.flink.api.common.state.ListState;
import org.apache.flink.api.common.state.ListStateDescriptor;
import org.apache.flink.api.common.typeutils.base.ListSerializer;
import org.apache.flink.api.common.typeutils.base.LongSerializer;
import org.apache.flink.api.common.typeutils.base.MapSerializer;
import org.apache.flink.api.common.typeutils.base.StringSerializer;
import org.apache.flink.api.java.typeutils.runtime.kryo.KryoSerializer;
import org.apache.flink.core.fs.FileSystem;
import org.apache.flink.core.fs.Path;
import org.apache.flink.runtime.state.StateInitializationContext;
import org.apache.flink.runtime.state.StateSnapshotContext;
import org.apache.flink.streaming.api.operators.AbstractStreamOperator;
import org.apache.flink.streaming.api.operators.OneInputStreamOperator;
import org.apache.flink.streaming.runtime.streamrecord.StreamRecord;
import org.apache.flink.table.filesystem.stream.TaskTracker;
import org.apache.flink.table.filesystem.stream.compact.CompactMessages.CompactionUnit;
import org.apache.flink.table.filesystem.stream.compact.CompactMessages.CoordinatorInput;
import org.apache.flink.table.filesystem.stream.compact.CompactMessages.CoordinatorOutput;
import org.apache.flink.table.filesystem.stream.compact.CompactMessages.EndCheckpoint;
import org.apache.flink.table.filesystem.stream.compact.CompactMessages.EndCompaction;
import org.apache.flink.table.filesystem.stream.compact.CompactMessages.InputFile;
import org.apache.flink.table.runtime.util.BinPacking;
import org.apache.flink.util.function.SupplierWithException;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.IOException;
import java.io.UncheckedIOException;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.TreeMap;
import java.util.function.Function;

/**
 * This is the single (non-parallel) monitoring task which coordinate input files to compaction
 * units. - Receives in-flight input files inside checkpoint. - Receives all upstream end input
 * messages after the checkpoint completes successfully, starts coordination.
 *
 * 

{@link CompactionUnit} and {@link EndCompaction} must be sent to the downstream in an orderly * manner, while {@link EndCompaction} is broadcast emitting, so unit and endCompaction use the * broadcast emitting mechanism together. Since unit is broadcast, we want it to be processed by a * single task, so we carry the ID in the unit and let the downstream task select its own unit. * *

NOTE: The coordination is a stable algorithm, which can ensure that the downstream can perform * compaction at any time without worrying about fail over. * *

STATE: This operator stores input files in state, after the checkpoint completes successfully, * input files are taken out from the state for coordination. */ public class CompactCoordinator extends AbstractStreamOperator implements OneInputStreamOperator { private static final long serialVersionUID = 1L; private static final Logger LOG = LoggerFactory.getLogger(CompactCoordinator.class); private final SupplierWithException fsFactory; private final long targetFileSize; private transient FileSystem fileSystem; private transient ListState>>> inputFilesState; private transient TreeMap>> inputFiles; private transient Map> currentInputFiles; private transient TaskTracker inputTaskTracker; public CompactCoordinator( SupplierWithException fsFactory, long targetFileSize) { this.fsFactory = fsFactory; this.targetFileSize = targetFileSize; } @Override public void initializeState(StateInitializationContext context) throws Exception { super.initializeState(context); fileSystem = fsFactory.get(); ListStateDescriptor>>> filesDescriptor = new ListStateDescriptor<>( "files-state", new MapSerializer<>( LongSerializer.INSTANCE, new MapSerializer<>( StringSerializer.INSTANCE, new ListSerializer<>( new KryoSerializer<>( Path.class, getExecutionConfig()))))); inputFilesState = context.getOperatorStateStore().getListState(filesDescriptor); inputFiles = new TreeMap<>(); currentInputFiles = new HashMap<>(); if (context.isRestored()) { inputFiles.putAll(inputFilesState.get().iterator().next()); } } @Override public void processElement(StreamRecord element) throws Exception { CoordinatorInput value = element.getValue(); if (value instanceof InputFile) { InputFile file = (InputFile) value; currentInputFiles .computeIfAbsent(file.getPartition(), k -> new ArrayList<>()) .add(file.getFile()); } else if (value instanceof EndCheckpoint) { EndCheckpoint endCheckpoint = (EndCheckpoint) value; if (inputTaskTracker == null) { inputTaskTracker = new TaskTracker(endCheckpoint.getNumberOfTasks()); } // ensure all files are ready to be compacted. boolean triggerCommit = inputTaskTracker.add( endCheckpoint.getCheckpointId(), endCheckpoint.getTaskId()); if (triggerCommit) { commitUpToCheckpoint(endCheckpoint.getCheckpointId()); } } else { throw new UnsupportedOperationException("Unsupported input message: " + value); } } private void commitUpToCheckpoint(long checkpointId) { Map>> headMap = inputFiles.headMap(checkpointId, true); for (Map.Entry>> entry : headMap.entrySet()) { coordinate(entry.getKey(), entry.getValue()); } headMap.clear(); } /** Do stable compaction coordination. */ private void coordinate(long checkpointId, Map> partFiles) { Function sizeFunc = path -> { try { return fileSystem.getFileStatus(path).getLen(); } catch (IOException e) { throw new UncheckedIOException(e); } }; // We need a stable compaction algorithm. Map>> compactUnits = new HashMap<>(); partFiles.forEach( (p, files) -> { // Sort files for stable compaction algorithm. files.sort(Comparator.comparing(Path::getPath)); compactUnits.put(p, BinPacking.pack(files, sizeFunc, targetFileSize)); }); // Now, send this stable pack list to compactor. // NOTE, use broadcast emitting (Because it needs to emit checkpoint barrier), // operators will pick its units by unit id and task id. int unitId = 0; for (Map.Entry>> unitsEntry : compactUnits.entrySet()) { String partition = unitsEntry.getKey(); for (List unit : unitsEntry.getValue()) { output.collect(new StreamRecord<>(new CompactionUnit(unitId, partition, unit))); unitId++; } } LOG.debug("Coordinate checkpoint-{}, compaction units are: {}", checkpointId, compactUnits); // Emit checkpoint barrier output.collect(new StreamRecord<>(new EndCompaction(checkpointId))); } @Override public void snapshotState(StateSnapshotContext context) throws Exception { super.snapshotState(context); inputFilesState.clear(); inputFiles.put(context.getCheckpointId(), new HashMap<>(currentInputFiles)); inputFilesState.add(inputFiles); currentInputFiles.clear(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy