Getting Py4J "Could not find py4j jar" error when trying to use pypmml, solution doesn't work
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2022 05:45 PM
I'm trying to use pypmml in a DB notebook, but I'm getting the known `Error : Py4JError: Could not find py4j jar at` error. I've followed the solution here: https://kb.databricks.com/libraries/pypmml-fail-find-py4j-jar.html. However, this has not worked for me.
Details:
- When I run `%pip install py4j==0.10.9` followed by `%sh find /databricks/ -name "py4j*jar"`, no results are found. However, if I install to the cluster via the Compute UI, then I do find the jar in the expected path.
- I move the jar via:
dbutils.fs.cp('/databricks/python3/share/py4j/py4j0.10.9.jar', '/py4j/')- I create the init script, like so:
dbutils.fs.put("/<my-path>/install-py4j-jar.sh", """
#!/bin/bash
mkdir -p /share/py4j/ /current-release/
cp /dbfs/py4j/py4j0.10.9.jar /share/py4j/
cp /dbfs/py4j/py4j0.10.9.jar /current-release
""", True)- I attach init script, and restart.
- I install pypmml and run something like:
from pypmml import Model
model = Model.load('/dbfs/<my-path>/<my-model>.pmml')- I've tried installing pypmml using %pip as well as in the cluster UI.
No matter what, I always get the same error: Py4JError: Could not find py4j jar at
I'm using DRV 10.4 LTS ML, though I've tried other versions to no avail.
Any ideas?
Labels:
- Labels:
-
DB Notebook