- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 Azure 文档中给出的语法通过容器在 Azure Storage Gen2 中创建安装点。我发现了两种使用“abfss”进行 Gen2 和使用“wasbs”进行常规 blob 存储的方法。由于我使用的是 'Storage Gen2' ,所以使用 'abfss' 但这不起作用。虽然如果我使用“wasb”它就可以安装。不知道为什么。我很困惑
语法1
url = "wasbs://"+container+"@"+storage_name+".blob.core.windows.net"
config = "fs.azure.account.key."+storage_name+".blob.core.windows.net"
语法2
url="abfss://"+container+"@"+storage_name+".dfs.core.windows.net"
as_config = "fs.azure.account.key."+storage_name+".dfs.core.windows.net
当我使用 Syntax-2 时,出现错误:
ExecutionError: An error occurred while calling o246.mount. :java.lang.NullPointerException: authEndpoint atshaded.databricks.v20180920_b33d810.com.google.common.base.Preconditions.checkNotNull(Preconditions.java:204)
最佳答案
您无法使用存储 key 挂载 abfss
- 它仅适用于 wasbs
(正如您所确认的那样)。只能使用服务主体来安装 abfss
,如 documentation 中所述。 :
configs = {"fs.azure.account.auth.type": "OAuth",
"fs.azure.account.oauth.provider.type": "org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider",
"fs.azure.account.oauth2.client.id": "<application-id>",
"fs.azure.account.oauth2.client.secret": dbutils.secrets.get(scope="<scope-name>",key="<service-credential-key-name>"),
"fs.azure.account.oauth2.client.endpoint": "https://login.microsoftonline.com/<directory-id>/oauth2/token"}
# Optionally, you can add <directory-name> to the source URI of your mount point.
dbutils.fs.mount(
source = "abfss://<container-name>@<storage-account-name>.dfs.core.windows.net/",
mount_point = "/mnt/<mount-name>",
extra_configs = configs)
关于azure - 无法从 Azure DataBricks 在存储 Gen2 上创建装载 [wasbs 与 abfss],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67643851/
我的应用程序在 Docker 容器中运行,并且我在其中使用离线部署 docker save我的开发机器上的图像并将其与应用程序捆绑在一起 通过 U 盘手动传输 tarfile 包和我的应用程序 doc
我有这个中间人项目。 我用 bower 给它添加了基础。 所以我的文件夹结构是这样的: -myproject -source -bower_components -foundation(c
我正在使用 linux RedHat 7。 我没有选项可以更改我的服务器的配置。 当我跑 docker load -i images.tar Error processing tar file(exi
我在治具方面做错了。 我必须在契约(Contract)中包含许多契约(Contract)项的模型中进行建模,并尝试为其加载夹具 App.Contract = DS.Model.extend({ c
我是一名优秀的程序员,十分优秀!