0

这是我的设置:我有一个 azure web 角色和一个 worker 角色,它们都配置为通过 blob 存储使用数据总线通道。我现在需要添加另一个需要数据总线的 Web 客户端。

使用相同的数据总线通道是否可以接受,或者这是否会导致与后台发生的消息清理操作相关的问题?

更新: 我在我的网络角色的事件日志中看到此错误:

An unhandled exception occurred. Type: Microsoft.WindowsAzure.StorageClient.StorageClientException Process ID: 2968
Process Name: w3wp
Thread ID: 12
AppDomain Unhandled Exception for role My.Assembly.Web_IN_4
Exception: The specified blob does not exist.
   at Microsoft.WindowsAzure.StorageClient.Tasks.Task`1.get_Result()
   at Microsoft.WindowsAzure.StorageClient.Tasks.Task`1.ExecuteAndWait()
   at Microsoft.WindowsAzure.StorageClient.CloudBlob.FetchAttributes(BlobRequestOptions options)
   at NServiceBus.DataBus.Azure.BlobStorage.BlobStorageDataBus.DeleteExpiredBlobs()
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean ignoreSyncCtx)
   at System.Threading._TimerCallback.PerformTimerCallback(Object state)

Inner Exception: The remote server returned an error: (404) Not Found.
   at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult)
   at Microsoft.WindowsAzure.StorageClient.EventHelper.ProcessWebResponse(WebRequest req, IAsyncResult asyncResult, EventHandler`1 handler, Object sender)
4

1 回答 1

0

我认为您必须使用相同的通道,因为发送者和接收者都必须能够访问它并且您只能配置一个,这意味着它必须被共享。

它不应该导致清理问题,看到任何奇怪的东西吗?如果是这样,请告诉我!

亲切的问候,伊夫

于 2013-02-05T08:21:18.990 回答