forked from apache/flink
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FLINK-4660] Allow ProcessFunction on DataStream
Introduce new ProcessOperator for this. Rename the pre-existing ProcessOperator to KeyedProcessOperator.
- Loading branch information
Showing
10 changed files
with
747 additions
and
364 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
151 changes: 151 additions & 0 deletions
151
...ing-java/src/main/java/org/apache/flink/streaming/api/operators/KeyedProcessOperator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,151 @@ | ||
/* | ||
* 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.streaming.api.operators; | ||
|
||
import org.apache.flink.annotation.Internal; | ||
import org.apache.flink.runtime.state.VoidNamespace; | ||
import org.apache.flink.runtime.state.VoidNamespaceSerializer; | ||
import org.apache.flink.streaming.api.SimpleTimerService; | ||
import org.apache.flink.streaming.api.TimeDomain; | ||
import org.apache.flink.streaming.api.TimerService; | ||
import org.apache.flink.streaming.api.functions.ProcessFunction; | ||
import org.apache.flink.streaming.runtime.streamrecord.StreamRecord; | ||
|
||
import static org.apache.flink.util.Preconditions.checkNotNull; | ||
import static org.apache.flink.util.Preconditions.checkState; | ||
|
||
@Internal | ||
public class KeyedProcessOperator<K, IN, OUT> | ||
extends AbstractUdfStreamOperator<OUT, ProcessFunction<IN, OUT>> | ||
implements OneInputStreamOperator<IN, OUT>, Triggerable<K, VoidNamespace> { | ||
|
||
private static final long serialVersionUID = 1L; | ||
|
||
private transient TimestampedCollector<OUT> collector; | ||
|
||
private transient ContextImpl<IN, OUT> context; | ||
|
||
private transient OnTimerContextImpl<IN, OUT> onTimerContext; | ||
|
||
public KeyedProcessOperator(ProcessFunction<IN, OUT> function) { | ||
super(function); | ||
|
||
chainingStrategy = ChainingStrategy.ALWAYS; | ||
} | ||
|
||
@Override | ||
public void open() throws Exception { | ||
super.open(); | ||
collector = new TimestampedCollector<>(output); | ||
|
||
InternalTimerService<VoidNamespace> internalTimerService = | ||
getInternalTimerService("user-timers", VoidNamespaceSerializer.INSTANCE, this); | ||
|
||
TimerService timerService = new SimpleTimerService(internalTimerService); | ||
|
||
context = new ContextImpl<>(userFunction, timerService); | ||
onTimerContext = new OnTimerContextImpl<>(userFunction, timerService); | ||
} | ||
|
||
@Override | ||
public void onEventTime(InternalTimer<K, VoidNamespace> timer) throws Exception { | ||
collector.setAbsoluteTimestamp(timer.getTimestamp()); | ||
onTimerContext.timeDomain = TimeDomain.EVENT_TIME; | ||
onTimerContext.timer = timer; | ||
userFunction.onTimer(timer.getTimestamp(), onTimerContext, collector); | ||
onTimerContext.timeDomain = null; | ||
onTimerContext.timer = null; | ||
} | ||
|
||
@Override | ||
public void onProcessingTime(InternalTimer<K, VoidNamespace> timer) throws Exception { | ||
collector.setAbsoluteTimestamp(timer.getTimestamp()); | ||
onTimerContext.timeDomain = TimeDomain.PROCESSING_TIME; | ||
onTimerContext.timer = timer; | ||
userFunction.onTimer(timer.getTimestamp(), onTimerContext, collector); | ||
onTimerContext.timeDomain = null; | ||
onTimerContext.timer = null; | ||
} | ||
|
||
@Override | ||
public void processElement(StreamRecord<IN> element) throws Exception { | ||
collector.setTimestamp(element); | ||
context.element = element; | ||
userFunction.processElement(element.getValue(), context, collector); | ||
context.element = null; | ||
} | ||
|
||
private static class ContextImpl<IN, OUT> extends ProcessFunction<IN, OUT>.Context { | ||
|
||
private final TimerService timerService; | ||
|
||
private StreamRecord<IN> element; | ||
|
||
ContextImpl(ProcessFunction<IN, OUT> function, TimerService timerService) { | ||
function.super(); | ||
this.timerService = checkNotNull(timerService); | ||
} | ||
|
||
@Override | ||
public Long timestamp() { | ||
checkState(element != null); | ||
|
||
if (element.hasTimestamp()) { | ||
return element.getTimestamp(); | ||
} else { | ||
return null; | ||
} | ||
} | ||
|
||
@Override | ||
public TimerService timerService() { | ||
return timerService; | ||
} | ||
} | ||
|
||
private static class OnTimerContextImpl<IN, OUT> extends ProcessFunction<IN, OUT>.OnTimerContext{ | ||
|
||
private final TimerService timerService; | ||
|
||
private TimeDomain timeDomain; | ||
|
||
private InternalTimer<?, VoidNamespace> timer; | ||
|
||
OnTimerContextImpl(ProcessFunction<IN, OUT> function, TimerService timerService) { | ||
function.super(); | ||
this.timerService = checkNotNull(timerService); | ||
} | ||
|
||
@Override | ||
public TimeDomain timeDomain() { | ||
checkState(timeDomain != null); | ||
return timeDomain; | ||
} | ||
|
||
@Override | ||
public Long timestamp() { | ||
checkState(timer != null); | ||
return timer.getTimestamp(); | ||
} | ||
|
||
@Override | ||
public TimerService timerService() { | ||
return timerService; | ||
} | ||
} | ||
} |
Oops, something went wrong.