Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/azure/11.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Azure函数输出绑定是否有重试策略?_Azure_Azure Functions_Azure Blob Storage_Azure Functions Runtime - Fatal编程技术网

Azure函数输出绑定是否有重试策略?

Azure函数输出绑定是否有重试策略?,azure,azure-functions,azure-blob-storage,azure-functions-runtime,Azure,Azure Functions,Azure Blob Storage,Azure Functions Runtime,某些Azure函数触发器对每个文档都有重试策略,但是输出绑定呢?如果试图通过输出绑定写入blob失败怎么办?是否有任何重试操作?不幸的是,没有。请在github函数中检查此问题: 根据结束注释,没有明确的错误处理 对于.net代码,建议如下: 对于使用的输出绑定(CosmosDb、BlobStorage和TableStorage),当您使用IAsyncCollector并对绑定调用FlushAsync()时,将执行该操作,并且能够捕获与该操作相关的错误

某些Azure函数触发器对每个文档都有重试策略,但是输出绑定呢?如果试图通过输出绑定写入blob失败怎么办?是否有任何重试操作?

不幸的是,没有。请在github函数中检查此问题:

根据结束注释,没有明确的错误处理

对于.net代码,建议如下:

对于使用的输出绑定(CosmosDb、BlobStorage和TableStorage),当您使用IAsyncCollector并对绑定调用FlushAsync()时,将执行该操作,并且能够捕获与该操作相关的错误