【发布时间】:2022-01-20 11:19:21
【问题描述】:
我正在查看this Microsft page 关于Push-OutputBinding。在链接的页面中有这个例子:
Push-OutputBinding -Name outQueue -Value @("output #3", "output #4")
我还有一个 PowerShell 脚本,它使用 Push-OutputBinding 将数据写入 Azure 存储表。我的问题是我可以使用单个 Push-OutputBinding 推送多少数据?
【问题讨论】:
-
指定因为我在这里迷路了 - 您正在将数据写入 Azure 队列或 Azure 表?
-
我正在写一个表,但我真的只是想知道
Push-OutputBinding可以传递多少数据 -
我的问题是,有不同的存储类型由不同的数据组成,具有不同的限制。就队列而言,消息的大小可以达到 64KB。参考:docs.microsoft.com/en-us/azure/storage/queues/…
-
对,但是
Push-OutputBinding可以传递多少数据?例如,我认为存储表中的一行最大可以为 1mb,但我可以推送多少行数据?我知道我可以推送 1mb 的数据,但最大值是多少?我可以一次推送 100GB 的数据吗? -
Azure Functions 的可用内存限制为 1.5 GB 到 14 GB,具体取决于所选的 Azure Function App Service 计划。见:docs.microsoft.com/en-us/azure/azure-functions/functions-scale
标签: azure powershell