org.apache.flink.streaming.tests.artificialstate.ComplexPayload Java Examples
The following examples show how to use
org.apache.flink.streaming.tests.artificialstate.ComplexPayload.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: StatefulStreamJobUpgradeTestProgram.java From flink with Apache License 2.0 | 6 votes |
private static void executeUpgradedVariant(StreamExecutionEnvironment env, ParameterTool pt) throws Exception { KeyedStream<UpgradedEvent, Integer> source = env.addSource(createEventSource(pt)) .name("EventSource") .uid("EventSource") .assignTimestampsAndWatermarks(createTimestampExtractor(pt)) .map(new UpgradeEvent()) .keyBy(UpgradedEvent::getKey); List<TypeSerializer<ComplexPayload>> stateSer = Collections.singletonList(new KryoSerializer<>(ComplexPayload.class, env.getConfig())); KeyedStream<UpgradedEvent, Integer> afterStatefulOperations = applyUpgradedStatefulOperations(source, stateSer, Collections.emptyList()); afterStatefulOperations .map(new DowngradeEvent()) .keyBy(Event::getKey) .flatMap(createSemanticsCheckMapper(pt)) .name("SemanticsCheckMapper") .addSink(new PrintSinkFunction<>()); env.execute("General purpose test job"); }
Example #2
Source File: StatefulStreamJobUpgradeTestProgram.java From flink with Apache License 2.0 | 6 votes |
private static void executeOriginalVariant(StreamExecutionEnvironment env, ParameterTool pt) throws Exception { KeyedStream<Event, Integer> source = env.addSource(createEventSource(pt)) .name("EventSource") .uid("EventSource") .assignTimestampsAndWatermarks(createTimestampExtractor(pt)) .keyBy(Event::getKey); List<TypeSerializer<ComplexPayload>> stateSer = Collections.singletonList(new KryoSerializer<>(ComplexPayload.class, env.getConfig())); KeyedStream<Event, Integer> afterStatefulOperations = applyOriginalStatefulOperations(source, stateSer, Collections.emptyList()); afterStatefulOperations .flatMap(createSemanticsCheckMapper(pt)) .name("SemanticsCheckMapper") .addSink(new PrintSinkFunction<>()); env.execute("General purpose test job"); }
Example #3
Source File: StatefulStreamJobUpgradeTestProgram.java From Flink-CEPplus with Apache License 2.0 | 5 votes |
private static KeyedStream<Event, Integer> applyOriginalStatefulOperations( KeyedStream<Event, Integer> source, List<TypeSerializer<ComplexPayload>> stateSer, List<Class<ComplexPayload>> stateClass) { source = applyTestStatefulOperator("stateMap1", simpleStateUpdate("stateMap1"), source, stateSer, stateClass); return applyTestStatefulOperator("stateMap2", lastStateUpdate("stateMap2"), source, stateSer, stateClass); }
Example #4
Source File: StatefulStreamJobUpgradeTestProgram.java From flink with Apache License 2.0 | 5 votes |
private static JoinFunction<UpgradedEvent, ComplexPayload, ComplexPayload> lastUpgradedStateUpdate(String strPayload) { return (UpgradedEvent first, ComplexPayload second) -> { verifyState(strPayload, second); boolean isLastEvent = second != null && first.event.getEventTime() <= second.getEventTime(); return isLastEvent ? second : new ComplexPayload(first.event, strPayload); }; }
Example #5
Source File: StatefulStreamJobUpgradeTestProgram.java From flink with Apache License 2.0 | 5 votes |
private static JoinFunction<Event, ComplexPayload, ComplexPayload> lastStateUpdate(String strPayload) { return (Event first, ComplexPayload second) -> { verifyState(strPayload, second); boolean isLastEvent = second != null && first.getEventTime() <= second.getEventTime(); return isLastEvent ? second : new ComplexPayload(first, strPayload); }; }
Example #6
Source File: StatefulStreamJobUpgradeTestProgram.java From flink with Apache License 2.0 | 5 votes |
private static KeyedStream<UpgradedEvent, Integer> applyUpgradedTestStatefulOperator( String name, JoinFunction<UpgradedEvent, ComplexPayload, ComplexPayload> stateFunc, KeyedStream<UpgradedEvent, Integer> source, List<TypeSerializer<ComplexPayload>> stateSer, List<Class<ComplexPayload>> stateClass) { return source .map(createArtificialKeyedStateMapper(e -> e, stateFunc, stateSer, stateClass)) .name(name) .uid(name) .returns(UpgradedEvent.class) .keyBy(UpgradedEvent::getKey); }
Example #7
Source File: StatefulStreamJobUpgradeTestProgram.java From flink with Apache License 2.0 | 5 votes |
private static KeyedStream<UpgradedEvent, Integer> applyUpgradedStatefulOperations( KeyedStream<UpgradedEvent, Integer> source, List<TypeSerializer<ComplexPayload>> stateSer, List<Class<ComplexPayload>> stateClass) { source = applyUpgradedTestStatefulOperator("stateMap2", simpleUpgradedStateUpdate("stateMap2"), source, stateSer, stateClass); source = applyUpgradedTestStatefulOperator("stateMap1", lastUpgradedStateUpdate("stateMap1"), source, stateSer, stateClass); return applyUpgradedTestStatefulOperator("stateMap3", simpleUpgradedStateUpdate("stateMap3"), source, stateSer, stateClass); }
Example #8
Source File: StatefulStreamJobUpgradeTestProgram.java From flink with Apache License 2.0 | 5 votes |
private static KeyedStream<Event, Integer> applyTestStatefulOperator( String name, JoinFunction<Event, ComplexPayload, ComplexPayload> stateFunc, KeyedStream<Event, Integer> source, List<TypeSerializer<ComplexPayload>> stateSer, List<Class<ComplexPayload>> stateClass) { return source .map(createArtificialKeyedStateMapper(e -> e, stateFunc, stateSer, stateClass)) .name(name) .uid(name) .returns(Event.class) .keyBy(Event::getKey); }
Example #9
Source File: StatefulStreamJobUpgradeTestProgram.java From flink with Apache License 2.0 | 5 votes |
private static KeyedStream<Event, Integer> applyOriginalStatefulOperations( KeyedStream<Event, Integer> source, List<TypeSerializer<ComplexPayload>> stateSer, List<Class<ComplexPayload>> stateClass) { source = applyTestStatefulOperator("stateMap1", simpleStateUpdate("stateMap1"), source, stateSer, stateClass); return applyTestStatefulOperator("stateMap2", lastStateUpdate("stateMap2"), source, stateSer, stateClass); }
Example #10
Source File: StatefulStreamJobUpgradeTestProgram.java From flink with Apache License 2.0 | 5 votes |
private static JoinFunction<Event, ComplexPayload, ComplexPayload> lastStateUpdate(String strPayload) { return (Event first, ComplexPayload second) -> { verifyState(strPayload, second); boolean isLastEvent = second != null && first.getEventTime() <= second.getEventTime(); return isLastEvent ? second : new ComplexPayload(first, strPayload); }; }
Example #11
Source File: StatefulStreamJobUpgradeTestProgram.java From flink with Apache License 2.0 | 5 votes |
private static KeyedStream<Event, Integer> applyTestStatefulOperator( String name, JoinFunction<Event, ComplexPayload, ComplexPayload> stateFunc, KeyedStream<Event, Integer> source, List<TypeSerializer<ComplexPayload>> stateSer, List<Class<ComplexPayload>> stateClass) { return source .map(createArtificialKeyedStateMapper(e -> e, stateFunc, stateSer, stateClass)) .name(name) .uid(name) .returns(Event.class) .keyBy(Event::getKey); }
Example #12
Source File: StatefulStreamJobUpgradeTestProgram.java From flink with Apache License 2.0 | 5 votes |
private static KeyedStream<Event, Integer> applyUpgradedStatefulOperations( KeyedStream<Event, Integer> source, List<TypeSerializer<ComplexPayload>> stateSer, List<Class<ComplexPayload>> stateClass) { source = applyTestStatefulOperator("stateMap2", simpleStateUpdate("stateMap2"), source, stateSer, stateClass); source = applyTestStatefulOperator("stateMap1", lastStateUpdate("stateMap1"), source, stateSer, stateClass); return applyTestStatefulOperator("stateMap3", simpleStateUpdate("stateMap3"), source, stateSer, stateClass); }
Example #13
Source File: StatefulStreamJobUpgradeTestProgram.java From flink with Apache License 2.0 | 5 votes |
private static KeyedStream<Event, Integer> applyOriginalStatefulOperations( KeyedStream<Event, Integer> source, List<TypeSerializer<ComplexPayload>> stateSer, List<Class<ComplexPayload>> stateClass) { source = applyTestStatefulOperator("stateMap1", simpleStateUpdate("stateMap1"), source, stateSer, stateClass); return applyTestStatefulOperator("stateMap2", lastStateUpdate("stateMap2"), source, stateSer, stateClass); }
Example #14
Source File: StatefulStreamJobUpgradeTestProgram.java From flink with Apache License 2.0 | 5 votes |
public static void main(String[] args) throws Exception { final ParameterTool pt = ParameterTool.fromArgs(args); final StreamExecutionEnvironment env = StreamExecutionEnvironment.getExecutionEnvironment(); setupEnvironment(env, pt); KeyedStream<Event, Integer> source = env.addSource(createEventSource(pt)) .name("EventSource") .uid("EventSource") .assignTimestampsAndWatermarks(createTimestampExtractor(pt)) .keyBy(Event::getKey); List<TypeSerializer<ComplexPayload>> stateSer = Collections.singletonList(new KryoSerializer<>(ComplexPayload.class, env.getConfig())); KeyedStream<Event, Integer> afterStatefulOperations = isOriginalJobVariant(pt) ? applyOriginalStatefulOperations(source, stateSer, Collections.emptyList()) : applyUpgradedStatefulOperations(source, stateSer, Collections.emptyList()); afterStatefulOperations .flatMap(createSemanticsCheckMapper(pt)) .name("SemanticsCheckMapper") .addSink(new PrintSinkFunction<>()); env.execute("General purpose test job"); }
Example #15
Source File: StatefulStreamJobUpgradeTestProgram.java From Flink-CEPplus with Apache License 2.0 | 5 votes |
private static JoinFunction<Event, ComplexPayload, ComplexPayload> lastStateUpdate(String strPayload) { return (Event first, ComplexPayload second) -> { verifyState(strPayload, second); boolean isLastEvent = second != null && first.getEventTime() <= second.getEventTime(); return isLastEvent ? second : new ComplexPayload(first, strPayload); }; }
Example #16
Source File: StatefulStreamJobUpgradeTestProgram.java From Flink-CEPplus with Apache License 2.0 | 5 votes |
private static KeyedStream<Event, Integer> applyTestStatefulOperator( String name, JoinFunction<Event, ComplexPayload, ComplexPayload> stateFunc, KeyedStream<Event, Integer> source, List<TypeSerializer<ComplexPayload>> stateSer, List<Class<ComplexPayload>> stateClass) { return source .map(createArtificialKeyedStateMapper(e -> e, stateFunc, stateSer, stateClass)) .name(name) .uid(name) .returns(Event.class) .keyBy(Event::getKey); }
Example #17
Source File: StatefulStreamJobUpgradeTestProgram.java From Flink-CEPplus with Apache License 2.0 | 5 votes |
private static KeyedStream<Event, Integer> applyUpgradedStatefulOperations( KeyedStream<Event, Integer> source, List<TypeSerializer<ComplexPayload>> stateSer, List<Class<ComplexPayload>> stateClass) { source = applyTestStatefulOperator("stateMap2", simpleStateUpdate("stateMap2"), source, stateSer, stateClass); source = applyTestStatefulOperator("stateMap1", lastStateUpdate("stateMap1"), source, stateSer, stateClass); return applyTestStatefulOperator("stateMap3", simpleStateUpdate("stateMap3"), source, stateSer, stateClass); }
Example #18
Source File: StatefulStreamJobUpgradeTestProgram.java From Flink-CEPplus with Apache License 2.0 | 5 votes |
public static void main(String[] args) throws Exception { final ParameterTool pt = ParameterTool.fromArgs(args); final StreamExecutionEnvironment env = StreamExecutionEnvironment.getExecutionEnvironment(); setupEnvironment(env, pt); KeyedStream<Event, Integer> source = env.addSource(createEventSource(pt)) .name("EventSource") .uid("EventSource") .assignTimestampsAndWatermarks(createTimestampExtractor(pt)) .keyBy(Event::getKey); List<TypeSerializer<ComplexPayload>> stateSer = Collections.singletonList(new KryoSerializer<>(ComplexPayload.class, env.getConfig())); KeyedStream<Event, Integer> afterStatefulOperations = isOriginalJobVariant(pt) ? applyOriginalStatefulOperations(source, stateSer, Collections.emptyList()) : applyUpgradedStatefulOperations(source, stateSer, Collections.emptyList()); afterStatefulOperations .flatMap(createSemanticsCheckMapper(pt)) .name("SemanticsCheckMapper") .addSink(new PrintSinkFunction<>()); env.execute("General purpose test job"); }
Example #19
Source File: StatefulStreamJobUpgradeTestProgram.java From flink with Apache License 2.0 | 4 votes |
private static JoinFunction<Event, ComplexPayload, ComplexPayload> simpleStateUpdate(String strPayload) { return (Event first, ComplexPayload second) -> { verifyState(strPayload, second); return new ComplexPayload(first, strPayload); }; }
Example #20
Source File: StatefulStreamJobUpgradeTestProgram.java From flink with Apache License 2.0 | 4 votes |
private static void verifyState(String strPayload, ComplexPayload state) { if (state != null && !state.getStrPayload().equals(strPayload)) { System.out.println("State is set or restored incorrectly"); } }
Example #21
Source File: StatefulStreamJobUpgradeTestProgram.java From Flink-CEPplus with Apache License 2.0 | 4 votes |
private static void verifyState(String strPayload, ComplexPayload state) { if (state != null && !state.getStrPayload().equals(strPayload)) { System.out.println("State is set or restored incorrectly"); } }
Example #22
Source File: StatefulStreamJobUpgradeTestProgram.java From Flink-CEPplus with Apache License 2.0 | 4 votes |
private static JoinFunction<Event, ComplexPayload, ComplexPayload> simpleStateUpdate(String strPayload) { return (Event first, ComplexPayload second) -> { verifyState(strPayload, second); return new ComplexPayload(first, strPayload); }; }
Example #23
Source File: StatefulStreamJobUpgradeTestProgram.java From flink with Apache License 2.0 | 4 votes |
private static JoinFunction<Event, ComplexPayload, ComplexPayload> simpleStateUpdate(String strPayload) { return (Event first, ComplexPayload second) -> { verifyState(strPayload, second); return new ComplexPayload(first, strPayload); }; }
Example #24
Source File: StatefulStreamJobUpgradeTestProgram.java From flink with Apache License 2.0 | 4 votes |
private static JoinFunction<UpgradedEvent, ComplexPayload, ComplexPayload> simpleUpgradedStateUpdate(String strPayload) { return (UpgradedEvent first, ComplexPayload second) -> { verifyState(strPayload, second); return new ComplexPayload(first.event, strPayload); }; }
Example #25
Source File: StatefulStreamJobUpgradeTestProgram.java From flink with Apache License 2.0 | 4 votes |
private static void verifyState(String strPayload, ComplexPayload state) { if (state != null && !state.getStrPayload().equals(strPayload)) { System.out.println("State is set or restored incorrectly"); } }