-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathProcessPos.cs
55 lines (50 loc) · 2.06 KB
/
ProcessPos.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Azure.EventHubs;
using Microsoft.Azure.WebJobs;
using Microsoft.Extensions.Logging;
using Newtonsoft.Json;
using Team1.Models;
namespace Team1
{
public static class ProcessPos
{
[FunctionName("ProcessPos")]
public static void Run(
[EventHubTrigger("icrapi", Connection = "EventHubConnection")] EventData[] events,
[CosmosDB(
databaseName: "ratingsdata",
collectionName: "orders",
ConnectionStringSetting = "CosmosDBConnection")] out dynamic cosmosDoc,
ILogger log)
{
var exceptions = new List<Exception>();
cosmosDoc = null;
foreach (EventData eventData in events)
{
try
{
string messageBody = Encoding.UTF8.GetString(eventData.Body.Array, eventData.Body.Offset, eventData.Body.Count);
var salesOrder = JsonConvert.DeserializeObject<SalesOrder>(messageBody);
salesOrder.id = Guid.NewGuid().ToString();
cosmosDoc = salesOrder;
log.LogInformation($"sales order id: {salesOrder.id}, sales number: {salesOrder.header.salesNumber}");
}
catch (Exception e)
{
// We need to keep processing the rest of the batch - capture this exception and continue.
// Also, consider capturing details of the message that failed processing so it can be processed again later.
exceptions.Add(e);
}
}
// Once processing of the batch is complete, if any messages in the batch failed processing throw an exception so that there is a record of the failure.
if (exceptions.Count > 1)
throw new AggregateException(exceptions);
if (exceptions.Count == 1)
throw exceptions.Single();
}
}
}