Sending delayed messages to Azure Service Bus

Sending delayed messages to Azure Service Bus

When working with Azure Service Bus I was wondering if I can send delayed messages to Service Bus Queues. It will decrease the calls count for Azure Functions and simplify the whole solution’s architecture. Yes you can (of course). It is simply setting the ScheduledEnqueueTimeUtc propertis in Microsoft.Azure.ServiceBus.Message class. Making example delayed message looks as…

Task names in Azure Batch

Task names in Azure Batch

Recently I worked intensively with Azure Batch. During the work, there were couple of problems (as usual). One of them were too long task id or containing illegal characters in task id. Exception In the effect the Microsoft.Azure.Batch.AddTaskCollectionTerminatedException was thrown. In the details of that exception I found the following message:Error.Code=InvalidPropertyValue, Error.Message=The value provided for…