- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在创建一个由 EventHub 触发的 C# 隔离工作进程 Azure Function,该函数会将带有 header 的 EventData
列表输出到另一个 EventHub。
该函数在使用 string[]
绑定(bind)时运行良好,但当我使用 Azure.Messaging.EventHubs
中的绑定(bind) EventData
时,函数在控制台中抛出以下消息:
System.Private.CoreLib: Exception while executing function: Functions.MyFunction. Microsoft.Azure.WebJobs.Host: Exception binding parameter 'eventDatas'. Azure.Core.Amqp: Serialization failed due to an unsupported type, System.Byte[].
Executed 'Functions.MyFunction' (Failed, Id=4a2fcfa1-0042-4cb8-92d6-75289685b4dd, Duration=15ms)
System.Private.CoreLib: Exception while executing function: Functions.MyFunction. Microsoft.Azure.WebJobs.Host: Exception binding parameter 'eventDatas'. Azure.Core.Amqp: Serialization failed due to an unsupported type, System.Byte[].
<TargetFramework>net7.0</TargetFramework>
<AzureFunctionsVersion>v4</AzureFunctionsVersion>
...
<PackageReference Include="Azure.Messaging.EventHubs" Version="5.9.2" />
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="1.19.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.EventHubs" Version="5.5.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.14.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
using Azure.Messaging.EventHubs;
using Microsoft.Azure.Functions.Worker;
using Microsoft.Extensions.Logging;
using my.Models;
using Newtonsoft.Json;
namespace my.function
{
public class MyFunction
{
[EventHubOutput("EventHubOutput", Connection = "EventHubOutputConnectionString")]
[FixedDelayRetry(5, "00:00:10")]
[Function("MyFunction")]
public EventData[] Run([EventHubTrigger("EventHubInput", Connection = "EventHubInputConnectionString", IsBatched = true)] EventData[] eventDatas)
{
List<EventData> eventDataOutputs = new List<EventData> { };
// Receive events
foreach (EventData eventData in eventDatas)
{
// Serialize the event
string eventJsonBody = eventData.EventBody.ToString();
MyObject? myObject = JsonConvert.DeserializeObject<MyObject>(eventJsonBody);
// Append nested elements
if (myObject != null)
{
eventDataOutputs.AddRange(myObject.nestedElements.Select(nestedElement => new EventData(JsonConvert.SerializeObject(nestedElement))));
}
}
return eventDataOutputs.ToArray();
}
}
}
namespace my.Models
{
using Newtonsoft.Json;
public class MyObject
{
[JsonProperty("randomField")]
public string RandomField { get; set; }
[JsonProperty("nestedFields")]
public NestedField[] NestedFields { get; set; }
}
}
namespace my.Models
{
using Newtonsoft.Json;
public class NestedField
{
[JsonProperty("randomFieldNested")]
public string RandomField { get; set; }
[JsonProperty("time")]
public DateTimeOffset Time { get; set; }
[JsonProperty("longField")]
public long LongField { get; set; }
}
}
我尝试了较新的 EventHub,并且收到了事件。
最佳答案
我对您的代码做了一些修改,它对我有用
代码:
[Function(nameof(Function1))]
[FixedDelayRetry(5, "00:00:10")]
[EventHubOutput("eventHubOutput", Connection = "EventHubConnectionAppSetting")]
public EventData[] Run([EventHubTrigger("eventhubinput", Connection = "EventHubConnectionAppSetting", IsBatched = true)] EventData[] events)
{
_logger.LogInformation($"Received {events.Length} events");
List<EventData> eventDataOutputs = new List<EventData>();
foreach (EventData eventData in events)
{
string eventJsonBody = Encoding.UTF8.GetString(eventData.EventBody);
MyObject[]? myObjects = JsonConvert.DeserializeObject<MyObject[]>(eventJsonBody);
if (myObjects != null)
{
foreach (MyObject myObject in myObjects)
{
if (myObject.NestedFields != null)
{
foreach (NestedField nestedField in myObject.NestedFields)
{
// Extract field values from the NestedField object
string randomFieldNested = nestedField.RandomField;
DateTimeOffset time = nestedField.Time;
long longField = nestedField.LongField;
// Create a new EventData instance with the extracted field values
string eventDataJson = JsonConvert.SerializeObject(new
{
RandomFieldNested = randomFieldNested,
Time = time,
LongField = longField
});
EventData newEventData = new EventData(Encoding.UTF8.GetBytes(eventDataJson));
// Add the new EventData to the output list
eventDataOutputs.Add(newEventData);
}
}
}
}
}
_logger.LogInformation("Data Processed.....");
return eventDataOutputs.ToArray();
}
输出:
关于c# - EventHubTrigger EventData[] 绑定(bind)不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/76882371/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!