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

System.Object type which is not supported by PBI (Power BI)service(PBI (Power BI) 服务不支持的 System.Object 类型)
本文介绍了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 类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Custom Error Queue Name when using EasyNetQ for RabbitMQ?(使用 EasyNetQ for RabbitMQ 时自定义错误队列名称?)
How to generate password_hash for RabbitMQ Management HTTP API(如何为 RabbitMQ 管理 HTTP API 生成密码哈希)
Rabbitmq Ack or Nack, leaving messages on the queue(Rabbitmq Ack 或 Nack,将消息留在队列中)
Setup RabbitMQ consumer in ASP.NET Core application(在 ASP.NET Core 应用程序中设置 RabbitMQ 消费者)
Specify Publish timeouts in mass transit(指定公共交通中的发布超时)
RabbitMQ asynchronous support(RabbitMQ 异步支持)