I have run the following code from a databricks notebook:
dbutils.fs.mount('<ip_address>', '/mnt/efs')
And I get the following error:
IllegalArgumentException: Unsupported scheme: null. Allowed schemes are: gs,s3a,s3n,wasbs,adl,abfss.
I have have pinged my EFS IP address from my Databricks notebook and I do not get errors on that side.
Moreover I have tried following this blog post, but by running this command:
%sh
mkdir -m 777 /mnt/efs
mount -t nfs4 -o nosuid,nodev <ip_address>:/ /mnt/efs
I get this error:
mount: /mnt/efs: cannot mount <ip_address>:/ read-only.
For your information, I am using Databricks on AWS.