Giter VIP home page Giter VIP logo

Comments (7)

mateusjunges avatar mateusjunges commented on August 21, 2024 2

@daavelar fixed on v1.7.5. Please let me know if it solves your issue

from laravel-kafka.

rtuin avatar rtuin commented on August 21, 2024 1

@daavelar Publishing (and) to MSK with SASL/SCRAM works fine.
Not sure if directly related, but as far as I know MSK uses SCRAM-SHA-512. The error message would be confusing if this is the problem you're facing, though.

from laravel-kafka.

mateusjunges avatar mateusjunges commented on August 21, 2024 1

@daavelar, don't know if i can help you much on this one, since i've never used MSK before. However, this exception is thrown when the flush method returns with error, as you can see here:

return retry(10, function () {
$result = $this->producer->flush(1000);
if (RD_KAFKA_RESP_ERR_NO_ERROR === $result) {
return true;
}
throw CouldNotPublishMessage::flushError();

from laravel-kafka.

daavelar avatar daavelar commented on August 21, 2024 1

Solved! Thanks a lot!

from laravel-kafka.

daavelar avatar daavelar commented on August 21, 2024

I changed the code to this:

        $sasl = new Sasl(
            username: 'myuser',
            password: 'mypass',
            mechanisms: 'SCRAM-SHA-512',
            securityProtocol: 'SASL_SSL'
        );

and managed to publish messages, the problem now is consuming:
Disconnected while requesting ApiVersion: might be caused by incorrect security.protocol configuration (connecting to a SSL listener?) or broker version is < 0.10 (see api.version.request) (after 159ms in state APIVERSION_QUERY)

from laravel-kafka.

daavelar avatar daavelar commented on August 21, 2024

I found out here what the problem was, even with the flag --securityProtocol=SASL_SSL, the consumer was using the default SASL_PLAINTEXT value because the parameter was missing in the getSasl() method of the Options class, i change the method to this and worked fine:

    public function getSasl(): ?Sasl
    {
        if (is_null($this->saslMechanisms) || is_null($this->saslPassword) || is_null($this->saslUsername)) {
            return null;
        }

        return new Sasl(
            username: $this->saslUsername,
            password: $this->saslPassword,
            mechanisms: $this->saslMechanisms,
            securityProtocol: $this->securityProtocol
        );
    }

from laravel-kafka.

mateusjunges avatar mateusjunges commented on August 21, 2024

@daavelar can you send it as a PR?

from laravel-kafka.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.