skip to Main Content

We have our delta-lake from which we can query data. We also connected it with Power BI to make interactive dashboards. It’s in production. Now we want to use Azure Purview to avail all the data governance and data catalog things on top of this delta-lake.

We followed this official documentation and have done all the steps. As you can see from the screenshot below, we are able to connect both worlds.

enter image description here

Now when we start the scan, it shows an error with "Error: (3913) JavaException: Must have Java 8 or newer installed"

enter image description here

In the Windows VM where we are having integration runtime, we installed Java, added it to the system path, and also added JAVA_HOME as system variables as well

Here are the screenshots of that Windows VM ensuring we have Java:

java --version:

enter image description here

JAVA_HOME as System Variable:

enter image description here

Java directory in the Path:

enter image description here

We have pulled every trick we could, no luck at all. We are not sure if is there any other place where we need to install Java.

2

Answers


  1. Error: (3913) JavaException: Must have Java 8 or newer install

    The message error is quite misleading

    As per Microsoft Document,

    Ensure JDK 11 is installed on the machine where the self-hosted integration runtime is installed

    Currently the Purview preview connection only functions with JDK 11; it is not compatible with JDK versions higher or below.

    To fix this issue uninstall your current JDK installed version and install JDK 11 after installing, restart the computer and try again.

    Login or Signup to reply.
  2. Microsoft has released a new documentation concerning the Databricks connector that avoids setting up connection to the Hive Metasore manually.

    Note that it is still in preview and requires JDK 11 installed on the machine where the IR is installed.

    You can find the newly updated documentation (as of 01/01/2023) here

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search