dianfu commented on a change in pull request #8531: [FLINK-12440][python] Add 
all connector support align Java Table API.
URL: https://github.com/apache/flink/pull/8531#discussion_r287263917
 
 

 ##########
 File path: flink-python/pyflink/table/table_descriptor.py
 ##########
 @@ -373,6 +375,485 @@ def path(self, path_str):
         return self
 
 
+class Kafka(ConnectorDescriptor):
+    """
+    Connector descriptor for the Apache Kafka message queue.
+    """
+
+    def __init__(self):
+        gateway = get_gateway()
+        self._j_kafka = gateway.jvm.Kafka()
+        super(ConnectorDescriptor, self).__init__(self._j_kafka)
 
 Review comment:
   super(Kafka, self)

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


With regards,
Apache Git Services

Reply via email to