Git Product home page Git Product logo

Comments (7)

peter-evans avatar peter-evans commented on September 26, 2024 1

Got it. Thank you for clearing this up! Really appreciate the quick response, too. ❤️

By the way I just tested this command and it silently doesn't work, similar to my code. It might be best to return an error here so the user knows that they must specify partitions with the topic name.
kcl admin partas list -t my_test_topic

from franz-go.

twmb avatar twmb commented on September 26, 2024

Are you specifying any partitions in these topics? If not, if you directly specify a topic at all, you also have to specify any partitions in that topic.

from franz-go.

peter-evans avatar peter-evans commented on September 26, 2024

The kcl implementation seems to work without specifying partitions, though. This part sets the partitions to nil if you only specify the topic name.

I've also tried this command and it works, which makes it all the more confusing why my code does not.
kcl admin partas list my_test_topic

from franz-go.

twmb avatar twmb commented on September 26, 2024

I just had to double check that myself because that sure did look confusing, but after staring at this code a bit, are you using the -t flag?

kcl admin partas list requires a -t flag to set the topics / partiitons to list -- I actually should change that code to cobra.ExactArgs(0) or, even better, just drop the -t flag and use the input arguments. I'm not sure why I didn't, but currently right now kcl is silently ignoring your topic and instead defaulting to everything because the -t flag is not used.

from franz-go.

peter-evans avatar peter-evans commented on September 26, 2024

Ah, it makes sense now! I wasn't using the -t flag so it was just defaulting to everything.
That probably means that the following command won't work, similar to my code.
kcl admin partas list -t my_test_topic

So just to clarify, the API requires all partitions to be specified? There is no way to say "give me all the partitions for this topic?"

from franz-go.

twmb avatar twmb commented on September 26, 2024

Yeah, I checked the Kafka source earlier once I saw this issue (and mildly remember checking it for my same confusion when I first implemented this in kcl). If you want all partitions for a topic, you'll have to issue a metadata request beforehand. I do a similar thing now in kcl misc list-offsets foo: https://github.com/twmb/kcl/blob/dad6a73ac64fbde24bc6a7774a57afb92fa46b3a/commands/misc/misc.go#L616

from franz-go.

twmb avatar twmb commented on September 26, 2024

I think I actually use the non-specified partitions in some handlers actually (notably that misc command, at least) ... but I should return an error when an empty partition list does nothing.

from franz-go.

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.