PBI (Power BI) 服务不支持的 System.Object 类型

编程入门 行业动态 更新时间:2024-10-27 22:27:44
本文介绍了PBI (Power BI) 服务不支持的 System.Object 类型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我已将 Azure 流分析作业输出设置为 Power BI.但我在分析工作中收到警告,PBI 服务不支持的 System.Object 类型.

I have set Azure Stream Analytic job output as Power BI. But I am getting warning in the analytic job that System.Object type which is not supported by PBI service.

我也无法在 Power BI 中看到任何数据.但我可以看到那里创建的数据库确保流分析作业输出正在那里.

Also I am not able to see any data in Power BI . But I can see the database created there which ensure that stream analytic job output is coming there.

以下是发送到 Power BI 的示例数据.我知道发生错误是因为其中一个属性是 object .我可以在 Power BI 做些什么来处理这个问题?

Below is the sample data sent to Power BI. I know the error happens because one of the property is an object . Is there any thing I can do at Power BI to handle this?

{"test": {"name":"testApp", "date":"2015-07-31T10:38:45.1276956+05:30", "flag":true, "val":"2015-07-31T10:38:45.1276956+05:30", "var":"123","231":1}, "cmd":"123", "root":"123123", "result":61116}

推荐答案

为了处理这种情况,我们需要修改流分析查询.

In order to handle this scenario , we need to modify the stream analytics query.

对于上面的示例查询如下,

For the above the sample query will as follow,

SELECT test.name,test.date,test.flag,cmd,root,result into[streamanalyticsoutput] 来自 [streamanalyticsinput]

SELECT test.name,test.date,test.flag,cmd,root,result into [streamanalyticsoutput] from [streamanalyticsinput]

streamanalyticsoutput -- 将是 power bi 输出别名

streamanalyticsoutput -- will be the power bi output alias

streamanalyticsinput -- 事件中心输入

streamanalyticsinput -- event hub input

更多推荐

PBI (Power BI) 服务不支持的 System.Object 类型

本文发布于:2023-10-30 12:16:53,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1542823.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:不支持   类型   Power   PBI   BI

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!