You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@kylin.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2017/11/01 21:03:00 UTC

[jira] [Updated] (KYLIN-2933) Fix compilation against the Kafka 1.0.0 release

     [ https://issues.apache.org/jira/browse/KYLIN-2933?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ted Yu updated KYLIN-2933:
--------------------------
    Description: 
Due to change of class location of SecurityProtocol, KafkaClusterConfig.java needs to be modified so that it compiles against the Kafka 1.0.0 release:
{code}
-import org.apache.kafka.common.protocol.SecurityProtocol;
+import org.apache.kafka.common.security.auth.SecurityProtocol;
{code}
A compatibility layer may be needed if we support multiple Kafka releases simultaneously.

  was:
Due to change of class location of SecurityProtocol, KafkaClusterConfig.java needs to be modified so that it compiles against the upcoming Kafka 1.0.0 release:
{code}
-import org.apache.kafka.common.protocol.SecurityProtocol;
+import org.apache.kafka.common.security.auth.SecurityProtocol;
{code}
A compatibility layer may be needed if we support multiple Kafka releases simultaneously.


> Fix compilation against the Kafka 1.0.0 release
> -----------------------------------------------
>
>                 Key: KYLIN-2933
>                 URL: https://issues.apache.org/jira/browse/KYLIN-2933
>             Project: Kylin
>          Issue Type: Bug
>            Reporter: Ted Yu
>            Priority: Major
>
> Due to change of class location of SecurityProtocol, KafkaClusterConfig.java needs to be modified so that it compiles against the Kafka 1.0.0 release:
> {code}
> -import org.apache.kafka.common.protocol.SecurityProtocol;
> +import org.apache.kafka.common.security.auth.SecurityProtocol;
> {code}
> A compatibility layer may be needed if we support multiple Kafka releases simultaneously.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)