Giter VIP home page Giter VIP logo

Comments (3)

kkonstantine avatar kkonstantine commented on September 3, 2024 1

Fixed by:
#118
Thanks for reporting.

from confluent-cli.

kkonstantine avatar kkonstantine commented on September 3, 2024

The fact that JAVA_HOME points to a different JDK version than the java command that is found in your PATH of executable (bin) commands reveals a misconfiguration of java in your system, not a bug here.

Initially we made the decision not to try and guess which exactly java version a user needs to use. Before changing the code in Confluent CLI you should consider one of the several options to set the default java, depending on your operating system. A few examples are:

  • update-java-alternatives
  • jenv
  • set both JAVA_HOME and PATH to point to the same JDK version
  • other options ...

Another advantage of using the java that is found in your PATH instead of your JAVA_HOME (again it's the user's responsibility to have these settings point to the same JDK) is that the chances of java and sudo java being the same are higher.

Nevertheless, given that most java services in Confluent platform check first if JAVA_HOME is set we could extend Confluent CLI to do the same and align it with what the rest of the services do.

from confluent-cli.

rocketraman avatar rocketraman commented on September 3, 2024

The fact that JAVA_HOME points to a different JDK version than the java command that is found in your PATH of executable (bin) commands reveals a misconfiguration of java in your system, not a bug here.

This is incorrect. It is not uncommon to have multiple versions of java installed on a system, and for program (a) to require a different version than program (b). Only one of these can be the "system java" which will run by default when executing java from the PATH. Using the alternatives mechanism changes the JVM for every process, not just the process that is the odd-man-out and needs an older version of the JDK for some reason (such as Confluent).

This is the whole reason why so many scripts, including Kafka itself as well as the run scripts produced by gradle, as well as gradle and maven and pretty much every other java-launching shell script on the planet, consult JAVA_HOME before falling back to the system java on the PATH -- to allow for the user to tell a particular process to use a version of java different than the system java. If the world were simple and every process could just use the system default java, that would be great, but that's just not reality (and will be even less so now with the increased java release cadence).

I appreciate the "nevertheless" and the fix, but would like to emphasize this not a misconfiguration but completely intentional and a normal situation in the java world.

from confluent-cli.

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.