I have a JAR I want to be installed as a library on all clusters. I have tried both
wget /databricks/jars/ some_repo
and
cp /dbfs/FileStore/jars/name_of_jar.jar /databricks/jars/
clusters start up but the JAR is not installed as a library. I am aware that it might not show in the UI under libraries however its effect allows the querying of JSON formatted tables. Testing with a newly started/created table results in an error when querying such a table. The only way I have gotten this to work is through the GUI on a cluster by cluster basis using the path in the second snippet. So the file is good.
What am I missing to doing this programmatically via an init script?