上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 50 下一页
摘要: 问题描述 查看Java Storage SDK,想找一个 uploadWithResponse 的示例代码,但是通过全网搜索,结果没有任何有帮助的代码。使用最近ChatGPT来寻求答案,得到非常有格式的内容: 问:java azure storage account to use uploadWit 阅读全文
posted @ 2023-05-08 21:49 路边两盏灯 阅读(97) 评论(0) 推荐(0) 编辑
摘要: Warning: Unexpected call to 'log' on the context object after function execution has completed. Please check for asynchronous calls that are not awaited or calls to 'done' made before function execution completes. The context.done method is deprecated,Now, it's recommended to remove the call to context.done() and mark your function as async so that it returns a promise (even if you don't await anything). 阅读全文
posted @ 2023-05-06 20:49 路边两盏灯 阅读(91) 评论(0) 推荐(2) 编辑
摘要: 问题描述 使用 Azure AD 注册应用 Oauth2 v2.0的终结点(OAuth 2.0 token endpoint (v2): https://login.partner.microsoftonline.cn/<your tenant id>/oauth2/v2.0/token ) 获取T 阅读全文
posted @ 2023-05-04 20:31 路边两盏灯 阅读(223) 评论(0) 推荐(1) 编辑
摘要: Spec. Rule 1.3 - onSubscribe, onNext, onError and onComplete signaled to a Subscriber MUST be signaled serially 阅读全文
posted @ 2023-04-26 20:51 路边两盏灯 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 问题描述 在App Service中启用Identity后,使用系统自动生成 Identity。 使用如下代码连接数据库 SQL Server: SQLServerDataSource dataSource = new SQLServerDataSource(); dataSource.setSer 阅读全文
posted @ 2023-04-25 20:38 路边两盏灯 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 问题描述 使用Azure API Management, 想对一些固定的IP地址进行访问次数的限制,如被限制的IP地址一分钟可以访问10次,而不被限制的IP地址则可以无限访问? ChatGPT 解答 最近ChatGPT爆火,所以也把这个问题让ChatGPT来解答,然后人工验证它的回答正确与否? 根据 阅读全文
posted @ 2023-04-24 20:16 路边两盏灯 阅读(219) 评论(0) 推荐(1) 编辑
摘要: 问题描述 在Azure的Spring Cloud服务 (官名为:Spring Apps)中,在Metrics 页面中查看 App Memory Usage 和 jvm.memory.use,发现两则在下图中出现巨大差距。 App Memory Usage还是在逐渐上升 jvm.memory.use 阅读全文
posted @ 2023-04-20 20:26 路边两盏灯 阅读(21) 评论(0) 推荐(1) 编辑
摘要: 问题描述 在Azure App Service的门户上 Log Stream 日志无输出,需要如何操作让其输出Application Logs呢? 如下图所示: 问题解答 请注意,上图中提示说:Application logs are switched off. You can turn them 阅读全文
posted @ 2023-04-18 21:15 路边两盏灯 阅读(59) 评论(0) 推荐(1) 编辑
摘要: 问题描述 PHP应用再连接Azure Redis服务时,出现Connection Timed out。当通过升级提高Azure Redis的性能时候,发现之前的数据丢失了。 问题解答 当Redis服务出现Timeout的情况时,可以从Redis服务的指标(Metrics)开始查看,如果出现负载(Se 阅读全文
posted @ 2023-04-17 21:00 路边两盏灯 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 问题描述 查看官方文档“ Get a user ” , 产生了一个操作示例的想法,在中国区Azure环境中,演示如何获取AAD User信息。 问题解答 使用Microsoft Graph API,演示如何获取AAD User信息,因参考文档是针对Global Azure,所以文档种的URL为: / 阅读全文
posted @ 2023-04-13 20:12 路边两盏灯 阅读(297) 评论(0) 推荐(2) 编辑
摘要: 问题描述 在Azure上,如果需要恢复之前删除的存储账户(Storage Account), 有什么办法呢? 问题解答 Azure 现在推出了自主恢复已删除的存储账号的功能,具体步骤如下: 第一步: 进入Azure门户,导航到Storage Account服务(https://portal.azur 阅读全文
posted @ 2023-04-12 20:10 路边两盏灯 阅读(38) 评论(0) 推荐(1) 编辑
摘要: 问题描述 在安全级别要求高的公司中,任何系统都会进行安全扫描。比如Azure 云上的Redis服务,也在扫描的范围中,最后发现Redis 4.0存在以下漏洞: CVE-2019-10192:https://nvd.nist.gov/vuln/detail/CVE-2019-10192 CVE-201 阅读全文
posted @ 2023-04-11 20:25 路边两盏灯 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 问题描述 使用Azure Redis服务,客户端使用Redisson 3.X , 在近期Microsoft Azure对Redis服务进行大规模变动升级( Redis 版本由 4 升级到 6),对于这次升级的影响有以下的问题? 问题解释 问题一:Redis 6.0 和 Redisson 3.X 之间 阅读全文
posted @ 2023-04-07 20:57 路边两盏灯 阅读(100) 评论(0) 推荐(0) 编辑
摘要: { "code":"DeploymentFailed", "message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/arm-deployment-operations for usage details.", "details":[ {"message":"Linux Version is too long. It cannot be more than 4000 characters."} ] } 阅读全文
posted @ 2023-04-06 20:48 路边两盏灯 阅读(51) 评论(0) 推荐(1) 编辑
摘要: "Code": "Conflict","Message": "No available instances to satisfy this request. App Service is attempting to increase capacity. Please retry your request later. If urgent, this can be mitigated by deploying this to a new resource group." 阅读全文
posted @ 2023-03-31 21:45 路边两盏灯 阅读(88) 评论(0) 推荐(1) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 50 下一页