我正在尝试创建Stream Analytics作业。邮件的格式为JSON
:
var message = "Name;\n" + Guid.NewGuid().ToString() + ";" ;
当我正在运行我的工作时,我收到以下错误:
Could not deserialize the input event as Json. Some possible reasons:
1) Malformed events
2) Input source configured with incorrect serialization format
答案 0 :(得分:2)
根据您的代码示例,您的输入显示为以下形式:
Name;
AA7509E7-D482-459B-9689-456A0F952B44;
然后您看到的错误消息是正确的,这不是有效的JSON,因此ASA将无法对其进行反序列化。您的JSON字符串应如下所示:
{
"Name": "AA7509E7-D482-459B-9689-456A0F952B44"
}