There is Error Message While Installing Golang Kafka Client (Confluent) Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Apache Kafka and Avro: org.apache.avro.generic.GenericData$Record cannot be cast to com.harmeetsingh13.java.CustomerFaking Confluent .NET Kafka consumersHow to use confluent-kafka with the key store fileConfluent Kafka Streams - Could not find class io.confluent.connect.avro.ConnectDefaultDifference between poll and consume in Kafka Confluent libraryDocker: kafka confluent go client errorDuplicate symbol errors when running go run main.go when using Kafka with librdkafkaCannot Build kafka-connect-jdbc Source CodeSpecificAvroDeserializer and “specifc.avro.reader”Building Go Application using confluent-kafka-go on Linux
Most bit efficient text communication method?
How to compare two different files line by line in unix?
How come Sam didn't become Lord of Horn Hill?
Why do we need to use the builder design pattern when we can do the same thing with setters?
If Windows 7 doesn't support WSL, then what does Linux subsystem option mean?
Why weren't discrete x86 CPUs ever used in game hardware?
How fail-safe is nr as stop bytes?
Why does the remaining Rebel fleet at the end of Rogue One seem dramatically larger than the one in A New Hope?
When a candle burns, why does the top of wick glow if bottom of flame is hottest?
A term for a woman complaining about things/begging in a cute/childish way
What is the difference between globalisation and imperialism?
What was the first language to use conditional keywords?
Chinese Seal on silk painting - what does it mean?
What is "gratricide"?
Time to Settle Down!
How does Python know the values already stored in its memory?
Illegal assignment from sObject to Id
Do wooden building fires get hotter than 600°C?
Why do early math courses focus on the cross sections of a cone and not on other 3D objects?
Why is it faster to reheat something than it is to cook it?
Significance of Cersei's obsession with elephants?
Disembodied hand growing fangs
Is a ledger board required if the side of my house is wood?
Is there hard evidence that the grant peer review system performs significantly better than random?
There is Error Message While Installing Golang Kafka Client (Confluent)
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)
Data science time! April 2019 and salary with experience
The Ask Question Wizard is Live!Apache Kafka and Avro: org.apache.avro.generic.GenericData$Record cannot be cast to com.harmeetsingh13.java.CustomerFaking Confluent .NET Kafka consumersHow to use confluent-kafka with the key store fileConfluent Kafka Streams - Could not find class io.confluent.connect.avro.ConnectDefaultDifference between poll and consume in Kafka Confluent libraryDocker: kafka confluent go client errorDuplicate symbol errors when running go run main.go when using Kafka with librdkafkaCannot Build kafka-connect-jdbc Source CodeSpecificAvroDeserializer and “specifc.avro.reader”Building Go Application using confluent-kafka-go on Linux
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I want to ask about my problem in installing confluent golang kafka client on Mac OS Mojave.
Why is there always error message while installing golang kafka client go get -u github.com/confluentinc/confluent-kafka-go/kafka
even the librdkafka
already installed?
The error message:
$GOPATH/src/github.com/confluentinc/confluent-kafka-go/kafka/event.go:234:9: could not determine kind of name for C.RD_KAFKA_RESP_ERR__FATAL
$GOPATH/src/github.com/confluentinc/confluent-kafka-go/kafka/event.go:242:18: could not determine kind of name for C.rd_kafka_fatal_error
The librdkafka
is already installed librdkafka 0.11.6 already installed
.
The pkg-config
version already 0.29.2
.
What should i do to fix this issue?
go apache-kafka confluent
add a comment |
I want to ask about my problem in installing confluent golang kafka client on Mac OS Mojave.
Why is there always error message while installing golang kafka client go get -u github.com/confluentinc/confluent-kafka-go/kafka
even the librdkafka
already installed?
The error message:
$GOPATH/src/github.com/confluentinc/confluent-kafka-go/kafka/event.go:234:9: could not determine kind of name for C.RD_KAFKA_RESP_ERR__FATAL
$GOPATH/src/github.com/confluentinc/confluent-kafka-go/kafka/event.go:242:18: could not determine kind of name for C.rd_kafka_fatal_error
The librdkafka
is already installed librdkafka 0.11.6 already installed
.
The pkg-config
version already 0.29.2
.
What should i do to fix this issue?
go apache-kafka confluent
add a comment |
I want to ask about my problem in installing confluent golang kafka client on Mac OS Mojave.
Why is there always error message while installing golang kafka client go get -u github.com/confluentinc/confluent-kafka-go/kafka
even the librdkafka
already installed?
The error message:
$GOPATH/src/github.com/confluentinc/confluent-kafka-go/kafka/event.go:234:9: could not determine kind of name for C.RD_KAFKA_RESP_ERR__FATAL
$GOPATH/src/github.com/confluentinc/confluent-kafka-go/kafka/event.go:242:18: could not determine kind of name for C.rd_kafka_fatal_error
The librdkafka
is already installed librdkafka 0.11.6 already installed
.
The pkg-config
version already 0.29.2
.
What should i do to fix this issue?
go apache-kafka confluent
I want to ask about my problem in installing confluent golang kafka client on Mac OS Mojave.
Why is there always error message while installing golang kafka client go get -u github.com/confluentinc/confluent-kafka-go/kafka
even the librdkafka
already installed?
The error message:
$GOPATH/src/github.com/confluentinc/confluent-kafka-go/kafka/event.go:234:9: could not determine kind of name for C.RD_KAFKA_RESP_ERR__FATAL
$GOPATH/src/github.com/confluentinc/confluent-kafka-go/kafka/event.go:242:18: could not determine kind of name for C.rd_kafka_fatal_error
The librdkafka
is already installed librdkafka 0.11.6 already installed
.
The pkg-config
version already 0.29.2
.
What should i do to fix this issue?
go apache-kafka confluent
go apache-kafka confluent
edited Mar 22 at 10:48
Julius Bernhard
asked Mar 22 at 10:32
Julius BernhardJulius Bernhard
83
83
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Seems like an issue with the confluent-kafka-go package on master branch.
If you use go modules and you bind the version to 0.11.6 it works.
go 1.12:
go get -u github.com/confluentinc/confluent-kafka-go/kafka@v0.11.6
go 1.11:
GO111MODULE=on go get -u github.com/confluentinc/confluent-kafka-go/kafka@v0.11.6
If you don't have go modules, clone the package under the correct go path and checkout to tag v0.11.6.
thanks, i clone the specific version that you state
– Julius Bernhard
Mar 22 at 12:14
Ok, if it works fine for you, please mark this answer as correct.
– François P.
Mar 22 at 12:18
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55297679%2fthere-is-error-message-while-installing-golang-kafka-client-confluent%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Seems like an issue with the confluent-kafka-go package on master branch.
If you use go modules and you bind the version to 0.11.6 it works.
go 1.12:
go get -u github.com/confluentinc/confluent-kafka-go/kafka@v0.11.6
go 1.11:
GO111MODULE=on go get -u github.com/confluentinc/confluent-kafka-go/kafka@v0.11.6
If you don't have go modules, clone the package under the correct go path and checkout to tag v0.11.6.
thanks, i clone the specific version that you state
– Julius Bernhard
Mar 22 at 12:14
Ok, if it works fine for you, please mark this answer as correct.
– François P.
Mar 22 at 12:18
add a comment |
Seems like an issue with the confluent-kafka-go package on master branch.
If you use go modules and you bind the version to 0.11.6 it works.
go 1.12:
go get -u github.com/confluentinc/confluent-kafka-go/kafka@v0.11.6
go 1.11:
GO111MODULE=on go get -u github.com/confluentinc/confluent-kafka-go/kafka@v0.11.6
If you don't have go modules, clone the package under the correct go path and checkout to tag v0.11.6.
thanks, i clone the specific version that you state
– Julius Bernhard
Mar 22 at 12:14
Ok, if it works fine for you, please mark this answer as correct.
– François P.
Mar 22 at 12:18
add a comment |
Seems like an issue with the confluent-kafka-go package on master branch.
If you use go modules and you bind the version to 0.11.6 it works.
go 1.12:
go get -u github.com/confluentinc/confluent-kafka-go/kafka@v0.11.6
go 1.11:
GO111MODULE=on go get -u github.com/confluentinc/confluent-kafka-go/kafka@v0.11.6
If you don't have go modules, clone the package under the correct go path and checkout to tag v0.11.6.
Seems like an issue with the confluent-kafka-go package on master branch.
If you use go modules and you bind the version to 0.11.6 it works.
go 1.12:
go get -u github.com/confluentinc/confluent-kafka-go/kafka@v0.11.6
go 1.11:
GO111MODULE=on go get -u github.com/confluentinc/confluent-kafka-go/kafka@v0.11.6
If you don't have go modules, clone the package under the correct go path and checkout to tag v0.11.6.
answered Mar 22 at 11:55
François P.François P.
2,110716
2,110716
thanks, i clone the specific version that you state
– Julius Bernhard
Mar 22 at 12:14
Ok, if it works fine for you, please mark this answer as correct.
– François P.
Mar 22 at 12:18
add a comment |
thanks, i clone the specific version that you state
– Julius Bernhard
Mar 22 at 12:14
Ok, if it works fine for you, please mark this answer as correct.
– François P.
Mar 22 at 12:18
thanks, i clone the specific version that you state
– Julius Bernhard
Mar 22 at 12:14
thanks, i clone the specific version that you state
– Julius Bernhard
Mar 22 at 12:14
Ok, if it works fine for you, please mark this answer as correct.
– François P.
Mar 22 at 12:18
Ok, if it works fine for you, please mark this answer as correct.
– François P.
Mar 22 at 12:18
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55297679%2fthere-is-error-message-while-installing-golang-kafka-client-confluent%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown