简体   繁体   English

我可以在 ADF 管道中缓存连接机密而不是从每个活动中点击 AKV

[英]Can i cache connection secret in ADF pipeline instead of hitting AKV from every activity

Currently I am using parametrized linked service to connect to AKV and then retrieve the connection secret.目前我正在使用参数化链接服务连接到 AKV,然后检索连接机密。 But with many Pipelines and activities we are facing throttling issue on AKV side.但是由于许多管道和活动,我们在 AKV 方面面临节流问题。 We want to limit number of hots to AKV and cache/store the retrieved connection somewhere within ADF pipeline but I do not see any option to do so.我们希望将热点数量限制为 AKV,并将检索到的连接缓存/存储在 ADF 管道内的某处,但我没有看到任何这样做的选项。 Please advice.请指教。

Absolutely you can - I recently worked with a massive retail customer and they hit a similar issue so they used a Java cache class that cached the relevant data from AKV (it was a payment token) for 1hr and at the end of the hour it pulled the data in from AKV again.绝对可以 - 我最近与一个庞大的零售客户合作,他们遇到了类似的问题,所以他们使用了一个 Java 缓存类来缓存来自 AKV(它是一个支付令牌)的相关数据 1 小时,并在该小时结束时提取再次从 AKV 输入数据。 The cache time was configurable, they are not bound to 1hr.缓存时间是可配置的,它们不受 1 小时的限制。

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

相关问题 如何在条件内从失败的管道活动重新运行 ADF? - How to rerun ADF from Failed Pipeline Activity within conditional? 是否可以为暂停的ADF管道指定开始/结束? - Can I not specify start/end for a paused ADF pipeline? ADF 管道在复制活动中添加顺序值 - ADF Pipeline Adding Sequential Value in Copy Activity 如何在 Adf 管道复制活动中参数化源 - How to parameterize the source in Adf pipeline copy activity 使用 ADF 管道中的自定义活动从 OnPrem SQL 服务器复制到 DocumentDB - Copy From OnPrem SQL server to DocumentDB using custom activity in ADF Pipeline 如何从 ADF 管道调用其他资源组中的 ADF 管道? - How to call a ADF Pipeline in other resource group from ADF pipeline? 如何动态更改 Azure 数据工厂管道参数?我想从“元数据活动”为管道参数分配新值 - How can I change Azure data factory pipeline parameter dynamically?I want to assign new value to pipeline parameter from 'Metadata activity' 如何设置ADF V1管道在每个星期二运行 - How to set the ADF V1 pipeline to run every Tuesday Azure ADF 数据管道 - 多个活动到单个活动执行 - Azure ADF Data Pipeline- Multiple Activities to Single Activity Execution 从C#获取ADF管道JSON - Get ADF Pipeline JSON from C#
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM