上篇博文中,咱們介紹了Azure Event Hub的一些基本概念和架構:html
Azure Event Hub 技術研究系列1-Event Hub入門篇編程
本篇文章中,咱們繼續深刻研究,瞭解Azure Event Hub的建立、編程SDK,實現將事件發送到雲端的Azure Event Hub。api
1、Azure Portal中建立Event Hub架構
建立一個新的Event Hub:異步
將鏈接字符串拷貝出來,備用。async
2、經過Event Hub的SDK將事件發送到Event Hub函數
新建一個Console工程:EventHubSendpost
添加Nuget:ui
Microsoft.Azure.EventHubsspa
添加關鍵引用:
using Microsoft.Azure.EventHubs; using System.Text; using System.Threading.Tasks;
添加常量做爲事件中心鏈接字符串和實體路徑(單個事件中心名稱)
private static EventHubClient eventHubClient; private const string EhConnectionString = "{Event Hubs connection string}"; //第一步拷貝的鏈接字符串 private const string EhEntityPath = "{Event Hub path/name}"; //MyEventHub
新加MainAsync函數
private static async Task MainAsync(string[] args) { var connectionStringBuilder = new EventHubsConnectionStringBuilder(EhConnectionString) { EntityPath = EhEntityPath }; eventHubClient = EventHubClient.CreateFromConnectionString(connectionStringBuilder.ToString()); await SendEvents(100); await eventHubClient.CloseAsync(); Console.WriteLine("Press ENTER to exit."); Console.ReadLine(); }
將100個事件消息發送到EventHub方法:SendEvents
/// <summary> /// 建立100個消息事件,異步發送到EventHub /// </summary> /// <param name="count">個數</param> /// <returns></returns> private static async Task SendEvents(int count) { for (var i = 0; i < count; i++) { try { var eventEntity = $"Event {i}"; Console.WriteLine($"Sending Event: {eventEntity}"); await eventHubClient.SendAsync(new EventData(Encoding.UTF8.GetBytes(eventEntity))); } catch (Exception exception) { Console.WriteLine($"{DateTime.Now} > Exception: {exception.Message}"); } await Task.Delay(10); } Console.WriteLine($"{count} messages sent."); }
在Main函數中添加:
static void Main(string[] args)
{
MainAsync(args).GetAwaiter().GetResult();
}
Run:
發現錯誤了:The messaging entity 'sb://myeventhubtest.servicebus.chinacloudapi.cn/MyEventHub' could not be found.
MyEventHub這個是咱們在代碼中指定的。
private const string EhEntityPath = "MyEventHub"; //MyEventHub
這個是否須要在Azure Portal中提早建立好?
再次Run:
此次能夠了。
周國慶
2017/5/17