Java Code Examples for org.apache.flink.table.api.TableSchema#toRowType()
The following examples show how to use
org.apache.flink.table.api.TableSchema#toRowType() .
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: KafkaTableSourceSinkFactoryTestBase.java From flink with Apache License 2.0 | 5 votes |
/** * This test can be unified with the corresponding source test once we have fixed FLINK-9870. */ @Test public void testTableSink() { // prepare parameters for Kafka table sink final TableSchema schema = TableSchema.builder() .field(FRUIT_NAME, DataTypes.STRING()) .field(COUNT, DataTypes.DECIMAL(10, 4)) .field(EVENT_TIME, DataTypes.TIMESTAMP(3)) .build(); final KafkaTableSinkBase expected = getExpectedKafkaTableSink( schema, TOPIC, KAFKA_PROPERTIES, Optional.of(new FlinkFixedPartitioner<>()), new TestSerializationSchema(schema.toRowType())); // construct table sink using descriptors and table sink factory final Map<String, String> propertiesMap = createKafkaSinkProperties(); final TableSink<?> actualSink = TableFactoryService.find(StreamTableSinkFactory.class, propertiesMap) .createStreamTableSink(propertiesMap); assertEquals(expected, actualSink); // test Kafka producer final KafkaTableSinkBase actualKafkaSink = (KafkaTableSinkBase) actualSink; final DataStreamMock streamMock = new DataStreamMock(new StreamExecutionEnvironmentMock(), schema.toRowType()); actualKafkaSink.consumeDataStream(streamMock); assertTrue(getExpectedFlinkKafkaProducer().isAssignableFrom(streamMock.sinkFunction.getClass())); }
Example 2
Source File: TestRowDataCsvInputFormat.java From flink with Apache License 2.0 | 5 votes |
public TestRowDataCsvInputFormat( Path[] paths, TableSchema schema, List<String> partitionKeys, String defaultPartValue, int[] selectFields, long limit) { this.partitionKeys = partitionKeys; this.defaultPartValue = defaultPartValue; this.selectFields = selectFields; this.limit = limit; RowTypeInfo rowType = (RowTypeInfo) schema.toRowType(); this.fieldTypes = Arrays.asList(rowType.getFieldTypes()); this.fieldNames = Arrays.asList(rowType.getFieldNames()); List<String> csvFieldNames = fieldNames.stream() .filter(name -> !partitionKeys.contains(name)).collect(Collectors.toList()); List<String> selectFieldNames = Arrays.stream(selectFields) .mapToObj(fieldNames::get) .collect(Collectors.toList()); List<String> csvSelectFieldNames = selectFieldNames.stream() .filter(name -> !partitionKeys.contains(name)).collect(Collectors.toList()); List<TypeInformation> csvSelectTypes = csvSelectFieldNames.stream() .map(name -> fieldTypes.get(fieldNames.indexOf(name))).collect(Collectors.toList()); this.csvSelectConverters = csvSelectTypes.stream() .map(TypeConversions::fromLegacyInfoToDataType) .map(DataFormatConverters::getConverterForDataType) .collect(Collectors.toList()); int[] csvSelectFields = csvSelectFieldNames.stream().mapToInt(csvFieldNames::indexOf).toArray(); this.inputFormat = new RowCsvInputFormat( null, csvSelectTypes.toArray(new TypeInformation[0]), csvSelectFields); this.inputFormat.setFilePaths(paths); this.csvFieldMapping = csvSelectFieldNames.stream().mapToInt(selectFieldNames::indexOf).toArray(); this.emitted = 0; }
Example 3
Source File: Elasticsearch6UpsertTableSinkFactoryTest.java From Flink-CEPplus with Apache License 2.0 | 4 votes |
@Test public void testBuilder() { final TableSchema schema = createTestSchema(); final TestElasticsearch6UpsertTableSink testSink = new TestElasticsearch6UpsertTableSink( false, schema, Collections.singletonList(new Host(HOSTNAME, PORT, SCHEMA)), INDEX, DOC_TYPE, KEY_DELIMITER, KEY_NULL_LITERAL, new JsonRowSerializationSchema(schema.toRowType()), XContentType.JSON, new DummyFailureHandler(), createTestSinkOptions()); final DataStreamMock dataStreamMock = new DataStreamMock( new StreamExecutionEnvironmentMock(), Types.TUPLE(Types.BOOLEAN, schema.toRowType())); testSink.emitDataStream(dataStreamMock); final ElasticsearchSink.Builder<Tuple2<Boolean, Row>> expectedBuilder = new ElasticsearchSink.Builder<>( Collections.singletonList(new HttpHost(HOSTNAME, PORT, SCHEMA)), new ElasticsearchUpsertSinkFunction( INDEX, DOC_TYPE, KEY_DELIMITER, KEY_NULL_LITERAL, new JsonRowSerializationSchema(schema.toRowType()), XContentType.JSON, Elasticsearch6UpsertTableSink.UPDATE_REQUEST_FACTORY, new int[0])); expectedBuilder.setFailureHandler(new DummyFailureHandler()); expectedBuilder.setBulkFlushBackoff(true); expectedBuilder.setBulkFlushBackoffType(ElasticsearchSinkBase.FlushBackoffType.EXPONENTIAL); expectedBuilder.setBulkFlushBackoffDelay(123); expectedBuilder.setBulkFlushBackoffRetries(3); expectedBuilder.setBulkFlushInterval(100); expectedBuilder.setBulkFlushMaxActions(1000); expectedBuilder.setBulkFlushMaxSizeMb(1); expectedBuilder.setRestClientFactory(new DefaultRestClientFactory(100, "/myapp")); assertEquals(expectedBuilder, testSink.builder); }
Example 4
Source File: KafkaTableSourceSinkFactoryTestBase.java From Flink-CEPplus with Apache License 2.0 | 4 votes |
/** * This test can be unified with the corresponding source test once we have fixed FLINK-9870. */ @Test public void testTableSink() { // prepare parameters for Kafka table sink final TableSchema schema = TableSchema.builder() .field(FRUIT_NAME, Types.STRING()) .field(COUNT, Types.DECIMAL()) .field(EVENT_TIME, Types.SQL_TIMESTAMP()) .build(); final KafkaTableSinkBase expected = getExpectedKafkaTableSink( schema, TOPIC, KAFKA_PROPERTIES, Optional.of(new FlinkFixedPartitioner<>()), new TestSerializationSchema(schema.toRowType())); // construct table sink using descriptors and table sink factory final TestTableDescriptor testDesc = new TestTableDescriptor( new Kafka() .version(getKafkaVersion()) .topic(TOPIC) .properties(KAFKA_PROPERTIES) .sinkPartitionerFixed() .startFromSpecificOffsets(OFFSETS)) // test if they accepted although not needed .withFormat(new TestTableFormat()) .withSchema( new Schema() .field(FRUIT_NAME, Types.STRING()) .field(COUNT, Types.DECIMAL()) .field(EVENT_TIME, Types.SQL_TIMESTAMP())) .inAppendMode(); final Map<String, String> propertiesMap = testDesc.toProperties(); final TableSink<?> actualSink = TableFactoryService.find(StreamTableSinkFactory.class, propertiesMap) .createStreamTableSink(propertiesMap); assertEquals(expected, actualSink); // test Kafka producer final KafkaTableSinkBase actualKafkaSink = (KafkaTableSinkBase) actualSink; final DataStreamMock streamMock = new DataStreamMock(new StreamExecutionEnvironmentMock(), schema.toRowType()); actualKafkaSink.emitDataStream(streamMock); assertTrue(getExpectedFlinkKafkaProducer().isAssignableFrom(streamMock.sinkFunction.getClass())); }
Example 5
Source File: Elasticsearch6UpsertTableSinkFactoryTest.java From flink with Apache License 2.0 | 4 votes |
@Test public void testBuilder() { final TableSchema schema = createTestSchema(); final TestElasticsearch6UpsertTableSink testSink = new TestElasticsearch6UpsertTableSink( false, schema, Collections.singletonList(new Host(HOSTNAME, PORT, SCHEMA)), INDEX, DOC_TYPE, KEY_DELIMITER, KEY_NULL_LITERAL, new JsonRowSerializationSchema(schema.toRowType()), XContentType.JSON, new DummyFailureHandler(), createTestSinkOptions()); final DataStreamMock dataStreamMock = new DataStreamMock( new StreamExecutionEnvironmentMock(), Types.TUPLE(Types.BOOLEAN, schema.toRowType())); testSink.emitDataStream(dataStreamMock); final ElasticsearchSink.Builder<Tuple2<Boolean, Row>> expectedBuilder = new ElasticsearchSink.Builder<>( Collections.singletonList(new HttpHost(HOSTNAME, PORT, SCHEMA)), new ElasticsearchUpsertSinkFunction( INDEX, DOC_TYPE, KEY_DELIMITER, KEY_NULL_LITERAL, new JsonRowSerializationSchema(schema.toRowType()), XContentType.JSON, Elasticsearch6UpsertTableSink.UPDATE_REQUEST_FACTORY, new int[0])); expectedBuilder.setFailureHandler(new DummyFailureHandler()); expectedBuilder.setBulkFlushBackoff(true); expectedBuilder.setBulkFlushBackoffType(ElasticsearchSinkBase.FlushBackoffType.EXPONENTIAL); expectedBuilder.setBulkFlushBackoffDelay(123); expectedBuilder.setBulkFlushBackoffRetries(3); expectedBuilder.setBulkFlushInterval(100); expectedBuilder.setBulkFlushMaxActions(1000); expectedBuilder.setBulkFlushMaxSizeMb(1); expectedBuilder.setRestClientFactory(new DefaultRestClientFactory(100, "/myapp")); assertEquals(expectedBuilder, testSink.builder); }
Example 6
Source File: KafkaTableSourceSinkFactoryTestBase.java From flink with Apache License 2.0 | 4 votes |
/** * This test can be unified with the corresponding source test once we have fixed FLINK-9870. */ @Test public void testTableSink() { // prepare parameters for Kafka table sink final TableSchema schema = TableSchema.builder() .field(FRUIT_NAME, Types.STRING()) .field(COUNT, Types.DECIMAL()) .field(EVENT_TIME, Types.SQL_TIMESTAMP()) .build(); final KafkaTableSinkBase expected = getExpectedKafkaTableSink( schema, TOPIC, KAFKA_PROPERTIES, Optional.of(new FlinkFixedPartitioner<>()), new TestSerializationSchema(schema.toRowType())); // construct table sink using descriptors and table sink factory final TestTableDescriptor testDesc = new TestTableDescriptor( new Kafka() .version(getKafkaVersion()) .topic(TOPIC) .properties(KAFKA_PROPERTIES) .sinkPartitionerFixed() .startFromSpecificOffsets(OFFSETS)) // test if they accepted although not needed .withFormat(new TestTableFormat()) .withSchema( new Schema() .field(FRUIT_NAME, Types.STRING()) .field(COUNT, Types.DECIMAL()) .field(EVENT_TIME, Types.SQL_TIMESTAMP())) .inAppendMode(); final Map<String, String> propertiesMap = testDesc.toProperties(); final TableSink<?> actualSink = TableFactoryService.find(StreamTableSinkFactory.class, propertiesMap) .createStreamTableSink(propertiesMap); assertEquals(expected, actualSink); // test Kafka producer final KafkaTableSinkBase actualKafkaSink = (KafkaTableSinkBase) actualSink; final DataStreamMock streamMock = new DataStreamMock(new StreamExecutionEnvironmentMock(), schema.toRowType()); actualKafkaSink.emitDataStream(streamMock); assertTrue(getExpectedFlinkKafkaProducer().isAssignableFrom(streamMock.sinkFunction.getClass())); }
Example 7
Source File: KafkaTableSourceSinkFactoryTestBase.java From flink with Apache License 2.0 | 4 votes |
@Test public void testTableSinkWithLegacyProperties() { // prepare parameters for Kafka table sink final TableSchema schema = TableSchema.builder() .field(FRUIT_NAME, DataTypes.STRING()) .field(COUNT, DataTypes.DECIMAL(10, 4)) .field(EVENT_TIME, DataTypes.TIMESTAMP(3)) .build(); final KafkaTableSinkBase expected = getExpectedKafkaTableSink( schema, TOPIC, KAFKA_PROPERTIES, Optional.of(new FlinkFixedPartitioner<>()), new TestSerializationSchema(schema.toRowType())); // construct table sink using descriptors and table sink factory final Map<String, String> legacyPropertiesMap = new HashMap<>(); legacyPropertiesMap.putAll(createKafkaSinkProperties()); // use legacy properties legacyPropertiesMap.remove("connector.specific-offsets"); legacyPropertiesMap.remove("connector.properties.bootstrap.servers"); legacyPropertiesMap.remove("connector.properties.group.id"); // keep compatible with a specified update-mode legacyPropertiesMap.put("update-mode", "append"); // legacy properties for specific-offsets and properties legacyPropertiesMap.put("connector.specific-offsets.0.partition", "0"); legacyPropertiesMap.put("connector.specific-offsets.0.offset", "100"); legacyPropertiesMap.put("connector.specific-offsets.1.partition", "1"); legacyPropertiesMap.put("connector.specific-offsets.1.offset", "123"); legacyPropertiesMap.put("connector.properties.0.key", "bootstrap.servers"); legacyPropertiesMap.put("connector.properties.0.value", "dummy"); legacyPropertiesMap.put("connector.properties.1.key", "group.id"); legacyPropertiesMap.put("connector.properties.1.value", "dummy"); final TableSink<?> actualSink = TableFactoryService.find(StreamTableSinkFactory.class, legacyPropertiesMap) .createStreamTableSink(legacyPropertiesMap); assertEquals(expected, actualSink); // test Kafka producer final KafkaTableSinkBase actualKafkaSink = (KafkaTableSinkBase) actualSink; final DataStreamMock streamMock = new DataStreamMock(new StreamExecutionEnvironmentMock(), schema.toRowType()); actualKafkaSink.consumeDataStream(streamMock); assertTrue(getExpectedFlinkKafkaProducer().isAssignableFrom(streamMock.sinkFunction.getClass())); }