Java Code Examples for org.apache.flink.table.api.java.StreamTableEnvironment#create()
The following examples show how to use
org.apache.flink.table.api.java.StreamTableEnvironment#create() .
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: JsonPathUdfTest.java From sylph with Apache License 2.0 | 6 votes |
@Before public void init() throws JsonProcessingException { String json = MAPPER.writeValueAsString(ImmutableMap.of("user_id", "uid_001", "ip", "127.0.0.1", "store", 12.0, "key1", ImmutableMap.of("key2", 123) )); StreamExecutionEnvironment execEnv = StreamExecutionEnvironment.createLocalEnvironment(); execEnv.setParallelism(2); tableEnv = StreamTableEnvironment.create(execEnv); tableEnv.registerFunction("get_json_object", new UDFJson()); table = tableEnv.sqlQuery("select '" + json + "' as message"); }
Example 2
Source File: Sort.java From flink-training-exercises with Apache License 2.0 | 6 votes |
public static void main(String[] args) throws Exception { StreamExecutionEnvironment env = StreamExecutionEnvironment.getExecutionEnvironment(); StreamTableEnvironment tableEnv = StreamTableEnvironment.create(env); env.setStreamTimeCharacteristic(TimeCharacteristic.EventTime); env.setParallelism(1); DataStream<Event> eventStream = env.addSource(new OutOfOrderEventSource()) .assignTimestampsAndWatermarks(new TimestampsAndWatermarks()); Table events = tableEnv.fromDataStream(eventStream, "eventTime.rowtime"); tableEnv.registerTable("events", events); Table sorted = tableEnv.sqlQuery("SELECT eventTime FROM events ORDER BY eventTime ASC"); DataStream<Row> sortedEventStream = tableEnv.toAppendStream(sorted, Row.class); sortedEventStream.print(); env.execute(); }
Example 3
Source File: CustomKafkaSourceMain.java From flink-learning with Apache License 2.0 | 6 votes |
public static void main(String[] args) throws Exception { StreamExecutionEnvironment blinkStreamEnv = StreamExecutionEnvironment.getExecutionEnvironment(); blinkStreamEnv.setParallelism(1); EnvironmentSettings blinkStreamSettings = EnvironmentSettings.newInstance() .useBlinkPlanner() .inStreamingMode() .build(); StreamTableEnvironment blinkStreamTableEnv = StreamTableEnvironment.create(blinkStreamEnv, blinkStreamSettings); blinkStreamTableEnv.registerTableSource("kafkaDataStream", new MyKafkaTableSource(ExecutionEnvUtil.PARAMETER_TOOL)); RetractStreamTableSink<Row> retractStreamTableSink = new MyRetractStreamTableSink(new String[]{"_count", "word"}, new DataType[]{DataTypes.BIGINT(), DataTypes.STRING()}); blinkStreamTableEnv.registerTableSink("sinkTable", retractStreamTableSink); Table wordCount = blinkStreamTableEnv.sqlQuery("SELECT count(word) AS _count,word FROM kafkaDataStream GROUP BY word"); wordCount.insertInto("sinkTable"); blinkStreamTableEnv.execute("Blink Custom Kafka Table Source"); }
Example 4
Source File: SQLExampleWordCount.java From flink-learning with Apache License 2.0 | 6 votes |
public static void main(String[] args) throws Exception { StreamExecutionEnvironment blinkStreamEnv = StreamExecutionEnvironment.getExecutionEnvironment(); blinkStreamEnv.setParallelism(1); EnvironmentSettings blinkStreamSettings = EnvironmentSettings.newInstance() .useBlinkPlanner() .inStreamingMode() .build(); StreamTableEnvironment blinkStreamTableEnv = StreamTableEnvironment.create(blinkStreamEnv, blinkStreamSettings); String path = SQLExampleWordCount.class.getClassLoader().getResource("words.txt").getPath(); CsvTableSource csvTableSource = CsvTableSource.builder() .field("word", Types.STRING) .path(path) .build(); blinkStreamTableEnv.registerTableSource("zhisheng", csvTableSource); Table wordWithCount = blinkStreamTableEnv.sqlQuery("SELECT count(word), word FROM zhisheng GROUP BY word"); blinkStreamTableEnv.toRetractStream(wordWithCount, Row.class).print(); blinkStreamTableEnv.execute("Blink Stream SQL Job"); }
Example 5
Source File: CustomKafkaSourceMain.java From flink-learning with Apache License 2.0 | 6 votes |
public static void main(String[] args) throws Exception { StreamExecutionEnvironment blinkStreamEnv = StreamExecutionEnvironment.getExecutionEnvironment(); blinkStreamEnv.setParallelism(1); EnvironmentSettings blinkStreamSettings = EnvironmentSettings.newInstance() .useBlinkPlanner() .inStreamingMode() .build(); StreamTableEnvironment blinkStreamTableEnv = StreamTableEnvironment.create(blinkStreamEnv, blinkStreamSettings); blinkStreamTableEnv.registerTableSource("kafkaDataStream", new MyKafkaTableSource(ExecutionEnvUtil.PARAMETER_TOOL)); RetractStreamTableSink<Row> retractStreamTableSink = new MyRetractStreamTableSink(new String[]{"_count", "word"}, new DataType[]{DataTypes.BIGINT(), DataTypes.STRING()}); blinkStreamTableEnv.registerTableSink("sinkTable", retractStreamTableSink); Table wordCount = blinkStreamTableEnv.sqlQuery("SELECT count(word) AS _count,word FROM kafkaDataStream GROUP BY word"); wordCount.insertInto("sinkTable"); blinkStreamTableEnv.execute("Blink Custom Kafka Table Source"); }
Example 6
Source File: JavaSqlITCase.java From flink with Apache License 2.0 | 6 votes |
@Test public void testSelect() throws Exception { StreamExecutionEnvironment env = StreamExecutionEnvironment.getExecutionEnvironment(); StreamTableEnvironment tableEnv = StreamTableEnvironment.create(env); StreamITCase.clear(); DataStream<Tuple3<Integer, Long, String>> ds = JavaStreamTestData.getSmall3TupleDataSet(env); Table in = tableEnv.fromDataStream(ds, "a,b,c"); tableEnv.registerTable("MyTable", in); String sqlQuery = "SELECT * FROM MyTable"; Table result = tableEnv.sqlQuery(sqlQuery); DataStream<Row> resultSet = tableEnv.toAppendStream(result, Row.class); resultSet.addSink(new StreamITCase.StringSink<Row>()); env.execute(); List<String> expected = new ArrayList<>(); expected.add("1,1,Hi"); expected.add("2,2,Hello"); expected.add("3,2,Hello world"); StreamITCase.compareWithList(expected); }
Example 7
Source File: FlinkPulsarTableITest.java From pulsar-flink with Apache License 2.0 | 5 votes |
@Test public void testStructTypesInAvro() throws Exception { StreamExecutionEnvironment see = StreamExecutionEnvironment.getExecutionEnvironment(); see.setParallelism(1); StreamTableEnvironment tEnv = StreamTableEnvironment.create(see); String table = newTopic(); sendTypedMessages(table, SchemaType.AVRO, fooList, Optional.empty(), SchemaData.Foo.class); tEnv .connect(getPulsarDescriptor(table)) .inAppendMode() .registerTableSource(table); Table t = tEnv.scan(table).select("i, f, bar"); tEnv.toAppendStream(t, t.getSchema().toRowType()) .map(new FailingIdentityMapper<Row>(fooList.size())) .addSink(new SingletonStreamSink.StringSink<>()).setParallelism(1); try { see.execute("test struct in avro"); } catch (Exception e) { } SingletonStreamSink.compareWithList( fooList.subList(0, fooList.size() - 1).stream().map(Objects::toString).collect(Collectors.toList())); }
Example 8
Source File: TableExampleWordCount.java From flink-learning with Apache License 2.0 | 5 votes |
public static void main(String[] args) throws Exception { StreamExecutionEnvironment blinkStreamEnv = StreamExecutionEnvironment.getExecutionEnvironment(); blinkStreamEnv.setParallelism(1); EnvironmentSettings blinkStreamSettings = EnvironmentSettings.newInstance() .useBlinkPlanner() .inStreamingMode() .build(); StreamTableEnvironment blinkStreamTableEnv = StreamTableEnvironment.create(blinkStreamEnv, blinkStreamSettings); String path = TableExampleWordCount.class.getClassLoader().getResource("words.txt").getPath(); blinkStreamTableEnv .connect(new FileSystem().path(path)) .withFormat(new OldCsv().field("word", Types.STRING).lineDelimiter("\n")) .withSchema(new Schema().field("word", Types.STRING)) .inAppendMode() .registerTableSource("FlieSourceTable"); Table wordWithCount = blinkStreamTableEnv.scan("FlieSourceTable") .groupBy("word") .select("word,count(word) as _count"); blinkStreamTableEnv.toRetractStream(wordWithCount, Row.class).print(); //打印结果中的 true 和 false,可能会有点疑问,为啥会多出一个字段。 //Sink 做的事情是先删除再插入,false 表示删除上一条数据,true 表示插入该条数据 blinkStreamTableEnv.execute("Blink Stream SQL Job"); }
Example 9
Source File: MLEnvironmentTest.java From Alink with Apache License 2.0 | 5 votes |
@Test public void testConstructWithStreamEnv() { StreamExecutionEnvironment streamExecutionEnvironment = StreamExecutionEnvironment.getExecutionEnvironment(); StreamTableEnvironment streamTableEnvironment = StreamTableEnvironment.create(streamExecutionEnvironment); MLEnvironment mlEnvironment = new MLEnvironment(streamExecutionEnvironment, streamTableEnvironment); Assert.assertSame(mlEnvironment.getStreamExecutionEnvironment(), streamExecutionEnvironment); Assert.assertSame(mlEnvironment.getStreamTableEnvironment(), streamTableEnvironment); }
Example 10
Source File: FlinkPulsarTableITest.java From pulsar-flink with Apache License 2.0 | 5 votes |
@Test public void testStructTypesWithJavaList() throws Exception { StreamExecutionEnvironment see = StreamExecutionEnvironment.getExecutionEnvironment(); see.setParallelism(1); StreamTableEnvironment tEnv = StreamTableEnvironment.create(see); String table = newTopic(); sendTypedMessages(table, SchemaType.AVRO, flList, Optional.empty(), SchemaData.FL.class); tEnv .connect(getPulsarDescriptor(table)) .inAppendMode() .registerTableSource(table); Table t = tEnv.scan(table).select("l"); tEnv.toAppendStream(t, t.getSchema().toRowType()) .map(new FailingIdentityMapper<Row>(flList.size())) .addSink(new SingletonStreamSink.StringSink<>()).setParallelism(1); try { see.execute("test struct in avro"); } catch (Exception e) { } SingletonStreamSink.compareWithList( flList.subList(0, flList.size() - 1).stream().map(Objects::toString).collect(Collectors.toList())); }
Example 11
Source File: FlinkPulsarTableITest.java From pulsar-flink with Apache License 2.0 | 5 votes |
@Test public void testWriteThenRead() throws Exception { String tp = newTopic(); StreamExecutionEnvironment see = StreamExecutionEnvironment.getExecutionEnvironment(); see.getConfig().disableSysoutLogging(); see.setParallelism(1); DataStreamSource ds = see.fromCollection(fooList); ds.addSink( new FlinkPulsarSink( serviceUrl, adminUrl, Optional.of(tp), getSinkProperties(), TopicKeyExtractor.NULL, SchemaData.Foo.class)); see.execute("write first"); StreamExecutionEnvironment env = StreamExecutionEnvironment.getExecutionEnvironment(); env.getConfig().disableSysoutLogging(); env.setParallelism(1); StreamTableEnvironment tEnv = StreamTableEnvironment.create(env); tEnv.connect(getPulsarDescriptor(tp)) .inAppendMode() .registerTableSource(tp); Table t = tEnv.scan(tp).select("i, f, bar"); tEnv.toAppendStream(t, t.getSchema().toRowType()) .map(new FailingIdentityMapper<Row>(fooList.size())) .addSink(new SingletonStreamSink.StringSink<>()).setParallelism(1); try { env.execute("count elements from topics"); } catch (Exception e) { } SingletonStreamSink.compareWithList(fooList.subList(0, fooList.size() - 1).stream().map(Objects::toString).collect(Collectors.toList())); }
Example 12
Source File: FlinkPulsarTableITest.java From pulsar-flink with Apache License 2.0 | 5 votes |
@Test public void testBasicFunctioning() throws Exception { StreamExecutionEnvironment see = StreamExecutionEnvironment.getExecutionEnvironment(); see.setParallelism(1); StreamTableEnvironment tEnv = StreamTableEnvironment.create(see); String table = newTopic(); sendTypedMessages(table, SchemaType.BOOLEAN, BOOLEAN_LIST, Optional.empty()); tEnv.connect(getPulsarDescriptor(table)) .inAppendMode() .registerTableSource(table); Table t = tEnv.scan(table).select("value"); tEnv.toAppendStream(t, BasicTypeInfo.BOOLEAN_TYPE_INFO) .map(new FailingIdentityMapper<>(BOOLEAN_LIST.size())) .addSink(new SingletonStreamSink.StringSink<>()).setParallelism(1); try { see.execute("basic functionality"); } catch (Exception e) { } SingletonStreamSink.compareWithList( BOOLEAN_LIST.subList(0, BOOLEAN_LIST.size() - 1).stream().map(Objects::toString).collect(Collectors.toList())); }
Example 13
Source File: HBaseConnectorITCase.java From flink with Apache License 2.0 | 5 votes |
@Test public void testHBaseLookupFunction() throws Exception { StreamExecutionEnvironment streamEnv = StreamExecutionEnvironment.getExecutionEnvironment(); StreamTableEnvironment streamTableEnv = StreamTableEnvironment.create(streamEnv, streamSettings); StreamITCase.clear(); // prepare a source table DataStream<Row> ds = streamEnv.fromCollection(testData2).returns(testTypeInfo2); Table in = streamTableEnv.fromDataStream(ds, "a, b, c"); streamTableEnv.registerTable("src", in); Map<String, String> tableProperties = hbaseTableProperties(); TableSource source = TableFactoryService .find(HBaseTableFactory.class, tableProperties) .createTableSource(tableProperties); streamTableEnv.registerFunction("hbaseLookup", ((HBaseTableSource) source).getLookupFunction(new String[]{ROWKEY})); // perform a temporal table join query String sqlQuery = "SELECT a,family1.col1, family3.col3 FROM src, LATERAL TABLE(hbaseLookup(a))"; Table result = streamTableEnv.sqlQuery(sqlQuery); DataStream<Row> resultSet = streamTableEnv.toAppendStream(result, Row.class); resultSet.addSink(new StreamITCase.StringSink<>()); streamEnv.execute(); List<String> expected = new ArrayList<>(); expected.add("1,10,Welt-1"); expected.add("2,20,Welt-2"); expected.add("3,30,Welt-3"); expected.add("3,30,Welt-3"); StreamITCase.compareWithList(expected); }
Example 14
Source File: TestStreamMode.java From sylph with Apache License 2.0 | 5 votes |
@Before public void init() { StreamExecutionEnvironment execEnv = StreamExecutionEnvironment.getExecutionEnvironment(); execEnv.setParallelism(2); execEnv.setStreamTimeCharacteristic(TimeCharacteristic.ProcessingTime); tableEnv = StreamTableEnvironment.create(execEnv); }
Example 15
Source File: KuduTableTestUtils.java From bahir-flink with Apache License 2.0 | 4 votes |
public static StreamTableEnvironment createTableEnvWithBlinkPlannerBatchMode(StreamExecutionEnvironment env) { EnvironmentSettings settings = EnvironmentSettings.newInstance().useBlinkPlanner().inStreamingMode().build(); StreamTableEnvironment tableEnv = StreamTableEnvironment.create(env, settings); tableEnv.getConfig().getConfiguration().setInteger(TABLE_EXEC_RESOURCE_DEFAULT_PARALLELISM.key(), 1); return tableEnv; }
Example 16
Source File: FlinkTableITCase.java From flink-connectors with Apache License 2.0 | 4 votes |
@Test public void testStreamTableSinkUsingDescriptorForAvro() throws Exception { // create a Pravega stream for test purposes Stream stream = Stream.of(setupUtils.getScope(), "testStreamTableSinkUsingDescriptorForAvro"); this.setupUtils.createTestStream(stream.getStreamName(), 1); // create a Flink Table environment StreamExecutionEnvironment env = StreamExecutionEnvironment.createLocalEnvironment().setParallelism(1); StreamTableEnvironment tableEnv = StreamTableEnvironment.create(env, EnvironmentSettings.newInstance() // watermark is only supported in blink planner .useBlinkPlanner() .inStreamingMode() .build()); Table table = tableEnv.fromDataStream(env.fromCollection(SAMPLES)); Pravega pravega = new Pravega(); pravega.tableSinkWriterBuilder() .withRoutingKeyField("category") .forStream(stream) .withPravegaConfig(setupUtils.getPravegaConfig()); Avro avro = new Avro(); String avroSchema = "{" + " \"type\": \"record\"," + " \"name\": \"test\"," + " \"fields\" : [" + " {\"name\": \"category\", \"type\": \"string\"}," + " {\"name\": \"value\", \"type\": \"int\"}" + " ]" + "}"; avro.avroSchema(avroSchema); ConnectTableDescriptor desc = tableEnv.connect(pravega) .withFormat(avro) .withSchema(new Schema().field("category", DataTypes.STRING()). field("value", DataTypes.INT())) .inAppendMode(); desc.createTemporaryTable("test"); final Map<String, String> propertiesMap = desc.toProperties(); final TableSink<?> sink = TableFactoryService.find(StreamTableSinkFactory.class, propertiesMap) .createStreamTableSink(propertiesMap); String tablePath = tableEnv.getCurrentDatabase() + "." + "PravegaSink"; ConnectorCatalogTable<?, ?> connectorCatalogTable = ConnectorCatalogTable.sink(sink, false); tableEnv.getCatalog(tableEnv.getCurrentCatalog()).get().createTable( ObjectPath.fromString(tablePath), connectorCatalogTable, false); table.insertInto("PravegaSink"); env.execute(); }
Example 17
Source File: StreamSQLTestProgram.java From Flink-CEPplus with Apache License 2.0 | 4 votes |
public static void main(String[] args) throws Exception { ParameterTool params = ParameterTool.fromArgs(args); String outputPath = params.getRequired("outputPath"); StreamExecutionEnvironment sEnv = StreamExecutionEnvironment.getExecutionEnvironment(); sEnv.setRestartStrategy(RestartStrategies.fixedDelayRestart( 3, Time.of(10, TimeUnit.SECONDS) )); sEnv.setStreamTimeCharacteristic(TimeCharacteristic.EventTime); sEnv.enableCheckpointing(4000); sEnv.getConfig().setAutoWatermarkInterval(1000); StreamTableEnvironment tEnv = StreamTableEnvironment.create(sEnv); tEnv.registerTableSource("table1", new GeneratorTableSource(10, 100, 60, 0)); tEnv.registerTableSource("table2", new GeneratorTableSource(5, 0.2f, 60, 5)); int overWindowSizeSeconds = 1; int tumbleWindowSizeSeconds = 10; String overQuery = String.format( "SELECT " + " key, " + " rowtime, " + " COUNT(*) OVER (PARTITION BY key ORDER BY rowtime RANGE BETWEEN INTERVAL '%d' SECOND PRECEDING AND CURRENT ROW) AS cnt " + "FROM table1", overWindowSizeSeconds); String tumbleQuery = String.format( "SELECT " + " key, " + " CASE SUM(cnt) / COUNT(*) WHEN 101 THEN 1 ELSE 99 END AS correct, " + " TUMBLE_START(rowtime, INTERVAL '%d' SECOND) AS wStart, " + " TUMBLE_ROWTIME(rowtime, INTERVAL '%d' SECOND) AS rowtime " + "FROM (%s) " + "WHERE rowtime > TIMESTAMP '1970-01-01 00:00:01' " + "GROUP BY key, TUMBLE(rowtime, INTERVAL '%d' SECOND)", tumbleWindowSizeSeconds, tumbleWindowSizeSeconds, overQuery, tumbleWindowSizeSeconds); String joinQuery = String.format( "SELECT " + " t1.key, " + " t2.rowtime AS rowtime, " + " t2.correct," + " t2.wStart " + "FROM table2 t1, (%s) t2 " + "WHERE " + " t1.key = t2.key AND " + " t1.rowtime BETWEEN t2.rowtime AND t2.rowtime + INTERVAL '%d' SECOND", tumbleQuery, tumbleWindowSizeSeconds); String finalAgg = String.format( "SELECT " + " SUM(correct) AS correct, " + " TUMBLE_START(rowtime, INTERVAL '20' SECOND) AS rowtime " + "FROM (%s) " + "GROUP BY TUMBLE(rowtime, INTERVAL '20' SECOND)", joinQuery); // get Table for SQL query Table result = tEnv.sqlQuery(finalAgg); // convert Table into append-only DataStream DataStream<Row> resultStream = tEnv.toAppendStream(result, Types.ROW(Types.INT, Types.SQL_TIMESTAMP)); final StreamingFileSink<Row> sink = StreamingFileSink .forRowFormat(new Path(outputPath), (Encoder<Row>) (element, stream) -> { PrintStream out = new PrintStream(stream); out.println(element.toString()); }) .withBucketAssigner(new KeyBucketAssigner()) .withRollingPolicy(OnCheckpointRollingPolicy.build()) .build(); resultStream // inject a KillMapper that forwards all records but terminates the first execution attempt .map(new KillMapper()).setParallelism(1) // add sink function .addSink(sink).setParallelism(1); sEnv.execute(); }
Example 18
Source File: DemonstrationOfTumblingTableSQLFunction.java From yauaa with Apache License 2.0 | 4 votes |
@Disabled @Test public void runDemonstration() throws Exception { // The base input stream StreamExecutionEnvironment senv = StreamExecutionEnvironment.getExecutionEnvironment(); senv.setStreamTimeCharacteristic(TimeCharacteristic.EventTime); senv.getConfig().setAutoWatermarkInterval(1000); DataStream<Tuple4<Long, String, String, String>> inputStream = senv .addSource(new UAStreamSource()) .assignTimestampsAndWatermarks(new UAWatermarker()); // The table environment StreamTableEnvironment tableEnv = StreamTableEnvironment.create(senv); // Give the stream a Table Name tableEnv.createTemporaryView("AgentStream", inputStream, "eventTime.rowtime, useragent, expectedDeviceClass, expectedAgentNameVersionMajor"); // register the function tableEnv.registerFunction("ParseUserAgent", new AnalyzeUseragentFunction("DeviceClass", "AgentNameVersionMajor")); int windowIntervalCount = 5; String windowIntervalScale = "MINUTE"; String sqlQuery = String.format( "SELECT" + " TUMBLE_START(eventTime, INTERVAL '%d' %s) AS wStart," + " deviceClass," + " agentNameVersionMajor," + " expectedDeviceClass," + " expectedAgentNameVersionMajor," + " Count('') " + "FROM ( "+ " SELECT " + " eventTime, " + " parsedUserAgent['DeviceClass' ] AS deviceClass," + " parsedUserAgent['AgentNameVersionMajor'] AS agentNameVersionMajor," + " expectedDeviceClass," + " expectedAgentNameVersionMajor" + " FROM ( "+ " SELECT " + " eventTime, " + " ParseUserAgent(useragent) AS parsedUserAgent," + " expectedDeviceClass," + " expectedAgentNameVersionMajor" + " FROM AgentStream " + " )" + ")" + "GROUP BY TUMBLE(eventTime, INTERVAL '%d' %s), " + " deviceClass," + " agentNameVersionMajor," + " expectedDeviceClass," + " expectedAgentNameVersionMajor", windowIntervalCount, windowIntervalScale, windowIntervalCount, windowIntervalScale ); Table resultTable = tableEnv.sqlQuery(sqlQuery); TypeInformation<Row> tupleType = new RowTypeInfo(SQL_TIMESTAMP, STRING, STRING, STRING, STRING, LONG); DataStream<Row> resultSet = tableEnv.toAppendStream(resultTable, tupleType); resultSet.print(); resultSet.map((MapFunction<Row, String>) row -> { Object useragent = row.getField(0); Object deviceClass = row.getField(1); Object agentNameVersionMajor = row.getField(2); Object expectedDeviceClass = row.getField(3); Object expectedAgentNameVersionMajor = row.getField(4); assertEquals( expectedDeviceClass, deviceClass, "Wrong DeviceClass: " + useragent); assertEquals( expectedAgentNameVersionMajor, agentNameVersionMajor, "Wrong AgentNameVersionMajor: " + useragent); return useragent.toString(); }); senv.execute(); }
Example 19
Source File: PopularPlacesTableApi.java From flink-training-exercises with Apache License 2.0 | 4 votes |
public static void main(String[] args) throws Exception { // read parameters ParameterTool params = ParameterTool.fromArgs(args); String input = params.getRequired("input"); final int maxEventDelay = 60; // events are out of order by max 60 seconds final int servingSpeedFactor = 600; // events of 10 minutes are served in 1 second // set up streaming execution environment StreamExecutionEnvironment env = StreamExecutionEnvironment.getExecutionEnvironment(); env.setStreamTimeCharacteristic(TimeCharacteristic.EventTime); // create a TableEnvironment StreamTableEnvironment tEnv = StreamTableEnvironment.create(env); // register TaxiRideTableSource as table "TaxiRides" tEnv.registerTableSource( "TaxiRides", new TaxiRideTableSource( input, maxEventDelay, servingSpeedFactor)); // register user-defined functions tEnv.registerFunction("isInNYC", new GeoUtils.IsInNYC()); tEnv.registerFunction("toCellId", new GeoUtils.ToCellId()); tEnv.registerFunction("toCoords", new GeoUtils.ToCoords()); Table popPlaces = tEnv // scan TaxiRides table .scan("TaxiRides") // filter for valid rides .filter("isInNYC(startLon, startLat) && isInNYC(endLon, endLat)") // select fields and compute grid cell of departure or arrival coordinates .select("eventTime, " + "isStart, " + "(isStart = true).?(toCellId(startLon, startLat), toCellId(endLon, endLat)) AS cell") // specify sliding window over 15 minutes with slide of 5 minutes .window(Slide.over("15.minutes").every("5.minutes").on("eventTime").as("w")) // group by cell, isStart, and window .groupBy("cell, isStart, w") // count departures and arrivals per cell (location) and window (time) .select("cell, isStart, w.start AS start, w.end AS end, count(isStart) AS popCnt") // filter for popular places .filter("popCnt > 20") // convert cell back to coordinates .select("toCoords(cell) AS location, start, end, isStart, popCnt"); // convert Table into an append stream and print it tEnv.toAppendStream(popPlaces, Row.class).print(); // execute query env.execute(); }
Example 20
Source File: Sort.java From flink-learning with Apache License 2.0 | 4 votes |
public static void main(String[] args) throws Exception { StreamExecutionEnvironment env = StreamExecutionEnvironment.getExecutionEnvironment(); StreamTableEnvironment tableEnv = StreamTableEnvironment.create(env); env.setStreamTimeCharacteristic(TimeCharacteristic.EventTime); env.setParallelism(1); SingleOutputStreamOperator<Event> source = env.addSource(new OutOfOrderEventSource()) .assignTimestampsAndWatermarks(new TimestampsAndWatermarks()); Table table = tableEnv.fromDataStream(source, "eventTime.rowtime"); tableEnv.registerTable("zhisheng", table); Table sorted = tableEnv.sqlQuery("select eventTime from zhisheng order by eventTime"); DataStream<Row> rowDataStream = tableEnv.toAppendStream(sorted, Row.class); rowDataStream.print(); //把执行计划打印出来 // System.out.println(env.getExecutionPlan()); env.execute("sort-streaming-data"); }