上一页 1 2 3 4 5 6 7 8 9 ··· 32 下一页
摘要: 问题描述 在使用Azure SDK开发时,遇到以下几个问题: 分页list blob是一个一致性事务级的操作吗?在这个过程中,文件的创建、更新、删除会对分页获取的list blob列表产生什么影响? 文档《响应中的标记》中描述索引是最终一致性,这个过程的时延是多久(更新Tag后大概多长时间可以通过F 阅读全文
posted @ 2025-02-10 20:17 编码者卢布 阅读(48) 评论(0) 推荐(0)
摘要: 遇见错误一:operator torchvision::nms does not exist 遇见错误二:RuntimeError: Failed to infer device type 阅读全文
posted @ 2025-02-08 17:04 编码者卢布 阅读(969) 评论(0) 推荐(1)
摘要: 问题描述 在分配一组策略中包含了很多修正任务时候,从门户上,只能选择一个修正任务执行。 如下图: 是否有好的办法,执行全部的修正任务呢? 问题解答 从Azure门户的设计来看,只能选择一个修正任务是设计使然。如果想批量执行全部的修正任务,需要使用PowerShell脚本来循环执行。 详细步骤: 第一 阅读全文
posted @ 2025-02-06 20:16 编码者卢布 阅读(39) 评论(0) 推荐(0)
摘要: 问题描述 基于Linux创建的App Service是否可以主动升级内置的Nginx版本呢? 问题解答 Web App Linux 默认使用的 Nginx 版本是由平台预定义的,无法更改这个版本。 如果需要自定义Nginx的版本,只有通过 App Service For Container自定义容器 阅读全文
posted @ 2025-02-02 18:17 编码者卢布 阅读(32) 评论(0) 推荐(0)
摘要: Exception while executing function: xxxxxxx,The type initializer for 'xxxxxx.Storage.Adls2.StoreDataLakeGen2Reading' threw an exception. Could not load file or assembly 'Microsoft.Extensions.Configuration, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. 阅读全文
posted @ 2025-01-29 19:16 编码者卢布 阅读(53) 评论(1) 推荐(0)
摘要: Logic App MySQL Connector: Unknown column 'created_at' in 'order clause' 阅读全文
posted @ 2025-01-27 16:30 编码者卢布 阅读(45) 评论(1) 推荐(0)
摘要: 如果没有关联的网络安全组,则阻止所有网络流量通过子网和网络接口。 阅读全文
posted @ 2025-01-21 20:25 编码者卢布 阅读(115) 评论(0) 推荐(0)
摘要: Error starting gRPC call. HttpRequestException: The SSL connection could not be established, see inner exception. AuthenticationException: The remote certificate is invalid because of errors in the certificate chain: UntrustedRoot 阅读全文
posted @ 2025-01-19 22:09 编码者卢布 阅读(142) 评论(0) 推荐(0)
摘要: Invalid parameter: This Migration API option is not supported or is temporarily disabled due to internal issues. Please visit https://aka.ms/apim-migrate-stv2 to see other migration options. 阅读全文
posted @ 2025-01-17 20:11 编码者卢布 阅读(42) 评论(0) 推荐(0)
摘要: 问题描述 在 C# Azure Function使用 Service Bus 作为触发器时候,在C# 独立工作模式下,说可以支持使用 ServiceBusReceivedMessage 类型作为触发消息的参数类型: [Function(nameof(ServiceBusReceivedMessage 阅读全文
posted @ 2025-01-14 21:26 编码者卢布 阅读(39) 评论(0) 推荐(0)
摘要: 问题描述 在使用Azure App Service服务时,对于它的CPU占比,从App Service Plan级别可以查看整个实例(vm)资源的CPU占比,而如果在具体的一个App Service服务中,则只能查看到当前应用所消耗的CPU时间,如果需要计算它的占比:需要使用公式【 CPU Time 阅读全文
posted @ 2025-01-12 19:51 编码者卢布 阅读(40) 评论(0) 推荐(0)
摘要: 在中国区的Azure上,已经可以创建机器人服务(Bot Service:https://docs.azure.cn/zh-cn/bot-service/?view=azure-bot-service-4.0),目前可以使用集成的渠道有三种(Direct Line,Web Chat 和 Microsoft Teams):Direct Line 和 Web Chat方式就非常直接,嵌入到自己应用的网页就可以。但是使用Microsoft Teams,则有很多限制。本文主要就是介绍,如果您的机器人服务部署在中国区上,并且需要使用Microsoft Teams时候的注意事项。 阅读全文
posted @ 2025-01-10 17:17 编码者卢布 阅读(205) 评论(0) 推荐(0)
摘要: deploy [ERROR] Status code 401, (empty body) & 阅读全文
posted @ 2025-01-08 20:01 编码者卢布 阅读(62) 评论(0) 推荐(0)
摘要: Azure closes inbound Transmission Control Protocol (TCP) idle > 240,000 ms, which can result in sending on dead connections (shown as expired batches because of send timeout). 阅读全文
posted @ 2025-01-05 20:20 编码者卢布 阅读(87) 评论(0) 推荐(0)
摘要: 问题描述 Event Hub消费端消费事件延迟,并且有重新分配分区等行为,讨论这种现象的可能原因。 问题解答 Event Hub 如果有大量的 Rebalancing 请求,就会导致事件消费延迟。 而Rebalance的原因也与服务端和消费端的心跳探测有关,如果服务端失去了消费端的心跳请求,触发 R 阅读全文
posted @ 2025-01-02 19:54 编码者卢布 阅读(59) 评论(1) 推荐(0)
摘要: 通过 OData 绑定支持向组添加多个成员 阅读全文
posted @ 2024-12-30 20:33 编码者卢布 阅读(53) 评论(0) 推荐(0)
摘要: Failed to deploy new revision: The Ingress's TargetPort or ExposedPort must be specified for TCP apps. 阅读全文
posted @ 2024-12-27 18:50 编码者卢布 阅读(30) 评论(0) 推荐(0)
摘要: 问题描述 在使用Azure Storage Account的时候,有两种模式账号,一种是普通的Stroage Account,另外一种是大数据存储模式 Data Lake模式,而这两种模式的启用与 Hierarchical Namespace设置有关: 讨论问题为: 问题一:是不是只要把Hierar 阅读全文
posted @ 2024-12-24 19:02 编码者卢布 阅读(51) 评论(0) 推荐(0)
摘要: Log search alert rules from API version 2020-05-01 use this payload type, which only supports common schema. Search results aren't embedded in the log search alerts payload when you use this version. Use dimensions to provide context to fired alerts. You can also use LinkToFilteredSearchResultsAPI or LinkToSearchResultsAPI to access query results with the Log Analytics API. If you must embed the results, use a logic app with the provided links to generate a custom payload. 阅读全文
posted @ 2024-12-18 19:47 编码者卢布 阅读(54) 评论(2) 推荐(0)
摘要: 问题描述 使用Azure Batch Account服务(批处理),所访问的资源受防火墙保护。 现在需要把Batch Account服务池中的实例地址IP加入到防火墙白名单中,但是由于Batch Account被没有指定的出口访问IP地址,所以需要把Batch Account服务的全部IP地址加入到 阅读全文
posted @ 2024-12-17 21:55 编码者卢布 阅读(29) 评论(0) 推荐(0)
摘要: 问题描述 在测试Application Insights的每日上限(Daily Cap)功能,想通过最简单的 curl 脚本来循环发送请求,验证日志摄入量大道设置的300MB (0.03GB)后,是否可以通过调大Daily Cap限制值马上恢复数据的摄入! 问题解答 一个简单的 CMD 脚本示例,它 阅读全文
posted @ 2024-12-11 20:11 编码者卢布 阅读(137) 评论(0) 推荐(0)
摘要: 问题描述 Azure Function 从.NET6 升级到 .NET8 后 Function出现运行时版本错误 问题解答 因为Azure Function在使用.NET6时,默认使用的为进程内模型(简单来讲:进程内模型就是应用运行在w3wp.exe 中,而独立进程模型是单独的 dotnet.exe 阅读全文
posted @ 2024-12-09 21:06 编码者卢布 阅读(123) 评论(0) 推荐(0)
摘要: 问题描述 在Azure门户(Create new user - Microsoft Azure 由世纪互联运营)中添加新用户,如果想通过代码来实现,有没有示例代码参考呢? 问题解答 示例代码 from azure.identity import AzureAuthorityHosts from az 阅读全文
posted @ 2024-12-03 20:26 编码者卢布 阅读(73) 评论(0) 推荐(0)
摘要: ADLS "This request is not authorized to perform this operation using this permission" 403 阅读全文
posted @ 2024-12-02 20:44 编码者卢布 阅读(33) 评论(0) 推荐(0)
摘要: 问题描述 使用Azure bicep对多个ServicePrinciple 进行role assignment分配 步骤如下 第一步:定义传参,里面包括object ID和role的一个map如: param servicePrincipals array = [ { objectId: 'serv 阅读全文
posted @ 2024-11-26 22:16 编码者卢布 阅读(39) 评论(0) 推荐(0)
摘要: “'IDX10503: Signature validation failed. Keys tried: 'Microsoft.IdentityModel.Tokens.X509SecurityKey , KeyId: xxxxxxxxxxxxxxxxxxx” 阅读全文
posted @ 2024-11-25 20:02 编码者卢布 阅读(225) 评论(0) 推荐(0)
摘要: An TLS 1.2 connection request was received from a remote client application, but non of the cipher suites supported by the client application are supported by the server. The connection request has failed. 从远程客户端应用程序收到 TLS 1.2 连接请求,但服务器不支持客户端应用程序支持的任何密码套件。连接请求失败。 阅读全文
posted @ 2024-11-24 11:58 编码者卢布 阅读(380) 评论(0) 推荐(0)
摘要: 通常,在生产环境中,为了保证系统环境的安全和纯粹,是不建议安装其它软件或排查工具(如果可以安装,也是需要走审批流程)。 本文将介绍一种,不用安装Wireshark / tcpdump 等工具,使用Windows系统自带的 netsh trace 命令来获取网络包的步骤: 阅读全文
posted @ 2024-11-23 10:17 编码者卢布 阅读(105) 评论(0) 推荐(0)
摘要: 查看Redis状态,没有任何异常,服务没有更新,Service Load, CPU, Memory, Connect等指标均正常。在排除Redis端问题后,转向了AKS中。 开始调查AKS的网络状态。最终发现每次Redis客户端出现超时问题时,几乎都对应了AKS NAT Gateway的更新事件,而Redis服务端没有任何异常。因此,超时问题很可能是由于NAT Gateway更新事件导致TCP连接被重置。 阅读全文
posted @ 2024-11-22 21:24 编码者卢布 阅读(63) 评论(0) 推荐(0)
摘要: 问题描述 通过FTP的方式,把本地能正常运行的Python Function文件上传到云上后,无法加载函数列表问题。 1:上传 function_app.py,requirements.txt文件到 wwwroot 目录中 2:在Azure Function App的Overview页面,无法显示函 阅读全文
posted @ 2024-11-21 21:10 编码者卢布 阅读(149) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 32 下一页