I'm trying to follow along with the blog post Gaining Insights Into Your HL7 Data With Smolder and Databricks-#1 of 3. I was able to finally get a jar file built from the repo using Java 17 and it successfully imports into the cluster.
However, when I run the command:
import com.databricks.labs.smolder.functions.parse_hl7_message
I get the following error: ModuleNotFoundError: No module named 'com.databricks.labs'
I was offered the following by the Assistant:
It seems that you are trying to import a module that is not recognized by your notebook. It could be that the module is not installed correctly or that it is not available in your notebook's environment.
To fix the issue, try installing the smolder library using the following command in a new cell:
%pip install
databricks-smolder.
However twhen I run this, it fails as well.
Can anyone offer any guidance?