简体   繁体   English

我们可以将挂载点保存在 azure 突触中吗

[英]Can we save the mount point in azure synapse

I have a question in Azure Synapse spark pool.我在 Azure Synapse spark pool 有问题。 Does anyone know how to save the mount point?有谁知道如何保存挂载点? I did create the mount point referencing it to ADLS.我确实创建了将它引用到 ADLS 的挂载点。 It goes deleted or not referenced once after session terminates.在 session 终止后,它会被删除或不再被引用一次。

I have used the same in Azure databricks, where we can create mount point once and use any number of times.我在 Azure 数据块中使用了相同的方法,我们可以在其中创建一次挂载点并使用任意次数。 I was looking at same kind of behavior in synapse as well.我也在研究突触中的同类行为。

mssparkutils.fs.mount( 
    "abfss://xyz@stadlsdev.dfs.core.windows.net/RawData", 
    "/mountraw", 
    {"linkedService":"LS_ADLS_Raw"} 
) 

appreciate if anyone answers this?感谢有人回答这个问题吗? Thanks in advance.提前致谢。

There is no exact solution for your requirement.没有满足您要求的确切解决方案。 This is possible in Databricks but not in Synapse.这在 Databricks 中是可能的,但在 Synapse 中是不可能的。

As a workaround, you can use CREATE EXTERNAL TABLE AS SELECT statement to export tables to files in Azure storage.作为解决方法,您可以使用CREATE EXTERNAL TABLE AS SELECT语句将表导出到 Azure 存储中的文件。

Refer: CETAS with Synapse SQL .请参阅: 带有 Synapse 的 CETAS SQL

Unfortunately, this feature is not yet available on Azure Synapse Analytics.遗憾的是,此功能在 Azure Synapse Analytics 上尚不可用。 Our product team is currently working on this feature.我们的产品团队目前正在开发此功能。

At this moment we don't have exact ETA on when will this feature will be available.目前我们还没有关于此功能何时可用的确切 ETA。 And we will update this thread once it's available.一旦可用,我们将更新此线程。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 访问 azure 突触中的挂载点时,获取权限被拒绝错误 - Getting permission denied error accessing mount point in azure synapse 我们如何在 Windows 中将 azure blob 存储挂载为网络驱动器? - How can we mount azure blob storage as a network drive in windows? 我们如何从 Azure Logic App 查询 Azure Synapse 表 - How can we query Azure Synapse table from Azure Logic App 如何在 Azure Synapse 中使用 PySpark 将文件挂载为文件 object - How to mount file as a file object using PySpark in Azure Synapse 我们可以在 Power BI 中编写多个 SQL 查询以将其加载到 Azure Synapse - Can we write multiple SQL Queries in Power BI to load it to Azure Synapse 我们可以从管道 azure 突触在无服务器池中执行 sql 查询吗? - can we execute sql query in serverless pool from pipeline azure synapse? 我们可以将 azure 函数日志保存到文件中吗? - Can we save azure functions logs to a file? 仅将 kubernetes 挂载点设置到 azure 文件 - Make kubernetes mount point only to azure files 我可以在 Azure 环境之外使用 Azure Synapse 功能吗? - Can I use Azure Synapse functionality outside the Azure environment? Azure 存储文件共享挂载点未显示文件 - Azure Storage file share mount point not showing files
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM