I am new to azure and databricks, I learned that how to mount blob and utilize but there are few doubts which I have and I did not found any answers to any documentation yet. So please help me to explain these:
dbutils.fs.mount(
  source = "wasbs://<container-name>@<storage-account-name>.blob.core.windows.net",
  mount_point = "/mnt/<mount-name>",
  extra_configs = {"<conf-key>":dbutils.secrets.get(scope = "<scope-name>", key = "<key-name>")})
here  "/mnt/<mount-name>" refers to which location, is it some virtual file location which is used to mount and later use it.
Also, what is the need of dbutils.secrets.get.
If anyone can explain it will be great help to my learning.
Thanks.

