0

Is it possible to change the Duplicate Detection Window on an existing Windows Azure Service Bus topic?

I am using C# to interact with Service Bus.

Ryan Kirkman
  • 4,051
  • 2
  • 25
  • 20

2 Answers2

1

You can't update the core policy on an existing entity in the broker today.

Clemens Vasters
  • 2,666
  • 16
  • 28
0

I think you need to set the DuplicateDetectionHistoryTimeWindow

http://msdn.microsoft.com/en-us/library/microsoft.servicebus.messaging.queuedescription.duplicatedetectionhistorytimewindow.aspx

Alan Smith has a nice blog post (overview): http://geekswithblogs.net/asmith/archive/2011/08/17/146556.aspx

user728584
  • 2,135
  • 2
  • 21
  • 24
  • If you enable Duplicate Detection using, for example the management console on windowsazure.com it defaults to 10 minutes. I am looking for a way to modify that property on an existing topic. – Ryan Kirkman May 25 '12 at 00:57
  • I'm not going to argue with Clemens on this one ;) – user728584 May 25 '12 at 02:13