英文:
Azure Function key disappears
问题
我有一个Azure函数应用程序,并创建了一个新的主机密钥。这个新的主机密钥是手动创建的。
在Azure数据工厂管道中,我有一个与这个函数应用程序连接的函数应用程序活动。
在连接服务中,我将手动创建的函数密钥的值放在那里,认证方法为系统分配的托管标识。
当我第一次运行管道时,它成功运行。当我尝试再次运行它时,它失败了,如果我去我的Azure函数应用程序,我手动创建的函数会消失。
我已经尝试查阅文档,但没有关于这个问题的信息。
是否有其他人遇到过这个问题?
尝试重新创建密钥,但仍然存在同样的问题。
英文:
I have an Azure Function App and created a new host key. This new host key was created manually.
On the Azure Data Factory pipeline, I have the Function App activity, connected to this Function App.
On the Linked Service I put the value of the function key I created manually and Authentication method as System Assigned Managed Identity.
When I run the pipeline the first time, it runs successfully. When I try to run it again, it fails, and if I go to my Azure Function App, my manually created function is disappeared.
I have tried to go through the documentations, but there is no such information about this.
Has anyone else encountered this issue?
Tried to recreate the key, but same issue.
答案1
得分: 0
Azure Function key disappears
我已经在我的环境中尝试复现,并获得了预期的结果:
ADF 设计:
运行:
据我所知,我猜问题可能出在您的 Function App 上(可能已损坏,这意味着配置可能有问题,可能在创建时出现错误或故障,也可能是在创建时出现了互联网中断),您可以检查 Function App 日志,那里您可以找到问题所在。
我建议您创建一个新的 Function App 并尝试,如果问题仍然存在,我建议您提出支持请求。
英文:
>Azure Function key disappears
I have tried to reproduce in my environment and got expected results:
ADF Design:
Runs:
AFAIK, I guess the problem is with your Function App(it may have been corrupted which means the configuration might be wrong, maybe an error or dysfunctionality got while it got created, may be an internet interruption while creation), You can check function app logs their you can find the issue of it.
I would suggest you create a new function app and try, If still the issue persists I would suggest you to raise a support request.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论