[ 
https://issues.apache.org/jira/browse/FLINK-9979?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16564819#comment-16564819
 ] 

ASF GitHub Bot commented on FLINK-9979:
---------------------------------------

tzulitai commented on a change in pull request #6440: [FLINK-9979] [table] 
Support a FlinkKafkaPartitioner for Kafka table sink factory
URL: https://github.com/apache/flink/pull/6440#discussion_r206767543
 
 

 ##########
 File path: 
flink-connectors/flink-connector-kafka-0.8/src/main/java/org/apache/flink/streaming/connectors/kafka/Kafka08TableSink.java
 ##########
 @@ -51,11 +52,11 @@ public Kafka08TableSink(
                        String topic,
                        Properties properties,
                        SerializationSchema<Row> serializationSchema,
-                       FlinkKafkaPartitioner<Row> partitioner) {
+                       Optional<FlinkKafkaPartitioner<Row>> partitioner) {
                return new FlinkKafkaProducer08<>(
                        topic,
                        serializationSchema,
                        properties,
-                       partitioner);
+                       partitioner.orElse(null));
 
 Review comment:
   Same question here.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> Support a custom FlinkKafkaPartitioner for a Kafka table sink factory
> ---------------------------------------------------------------------
>
>                 Key: FLINK-9979
>                 URL: https://issues.apache.org/jira/browse/FLINK-9979
>             Project: Flink
>          Issue Type: Sub-task
>          Components: Table API &amp; SQL
>            Reporter: Timo Walther
>            Assignee: Timo Walther
>            Priority: Major
>              Labels: pull-request-available
>
> Currently, the Kafka table sink factory does not support a custom 
> FlinkKafkaPartitioner. However, this is needed for many use cases.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to