Skip to content

Commit

Permalink
[Flink] support speculative execution when batch read paimon table
Browse files Browse the repository at this point in the history
  • Loading branch information
hongli.wwj committed Oct 30, 2024
1 parent b99f8e6 commit c60a5b5
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
/*
* 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.api.connector.source;

import org.apache.flink.annotation.PublicEvolving;

/**
* An decorative interface of {@link SplitEnumerator} which allows to handle {@link SourceEvent}
* sent from a specific execution attempt.
*
* <p>The split enumerator must implement this interface if it needs to deal with custom source
* events and is used in cases that a subtask can have multiple concurrent execution attempts, e.g.
* if speculative execution is enabled. Otherwise an error will be thrown when the split enumerator
* receives a custom source event.
*/
@PublicEvolving
public interface SupportsHandleExecutionAttemptSourceEvent {

/**
* Handles a custom source event from the source reader. It is similar to {@link
* SplitEnumerator#handleSourceEvent(int, SourceEvent)} but is aware of the subtask execution
* attempt who sent this event.
*
* @param subtaskId the subtask id of the source reader who sent the source event.
* @param attemptNumber the attempt number of the source reader who sent the source event.
* @param sourceEvent the source event from the source reader.
*/
void handleSourceEvent(int subtaskId, int attemptNumber, SourceEvent sourceEvent);
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
import org.apache.flink.api.connector.source.SplitEnumerator;
import org.apache.flink.api.connector.source.SplitEnumeratorContext;
import org.apache.flink.api.connector.source.SplitsAssignment;
import org.apache.flink.api.connector.source.SupportsHandleExecutionAttemptSourceEvent;
import org.apache.flink.table.connector.source.DynamicFilteringEvent;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Expand All @@ -41,7 +42,8 @@

/** A {@link SplitEnumerator} implementation for {@link StaticFileStoreSource} input. */
public class StaticFileStoreSplitEnumerator
implements SplitEnumerator<FileStoreSourceSplit, PendingSplitsCheckpoint> {
implements SplitEnumerator<FileStoreSourceSplit, PendingSplitsCheckpoint>,
SupportsHandleExecutionAttemptSourceEvent {

private static final Logger LOG = LoggerFactory.getLogger(StaticFileStoreSplitEnumerator.class);

Expand Down Expand Up @@ -118,6 +120,14 @@ public Snapshot snapshot() {
return snapshot;
}

@Override
public void handleSourceEvent(int subtaskId, int attemptNumber, SourceEvent sourceEvent) {
// Only recognize events that don't care attemptNumber.
// When to support a new kind of event, must pay attention that whether the new event can be
// sent multiple times from different attempts of one subtask.
handleSourceEvent(subtaskId, sourceEvent);
}

@Override
public void handleSourceEvent(int subtaskId, SourceEvent sourceEvent) {
if (sourceEvent instanceof ReaderConsumeProgressEvent) {
Expand Down

0 comments on commit c60a5b5

Please sign in to comment.