Advanced Features with Azure Service Bus

Поделиться
HTML-код
  • Опубликовано: 1 дек 2024

Комментарии • 10

  • @MdHassan-el7cn
    @MdHassan-el7cn 2 года назад +1

    How to replicate messages from queue/topic to different namespace queue/topic

  • @javiermayorga9857
    @javiermayorga9857 3 года назад +1

    How can you integrate azure service bus with an IBM MQ?

  • @ibknl1986
    @ibknl1986 3 года назад

    Can i do batching with Microsoft.Azure.ServiceBus .... i know there is an api exposed for batching in "Azure.Message.ServiceBus" sdk like await sender.SendMessagesAsync(messageBatch);but can i do something similar in "Microsoft.Azure.ServiceBus" ?

  • @minkumaxable
    @minkumaxable 4 года назад

    I am completely new with azure, so just need to understand, if load increases on service bus then how my consumer app service will scale?

  • @akishaha
    @akishaha 4 года назад

    Are these advanced feature configurable in portal without using mangmentclient or CLI ?

  • @saikumar-vs9vip
    @saikumar-vs9vip 3 года назад

    Is there any link for code. Links like git hub

  • @vasant2411
    @vasant2411 4 года назад

    Will it use Utc date time in schedule

    • @vova4ik
      @vova4ik 4 года назад

      Yes, moreover the name of message field is ScheduledEnqueueTimeUtc, which suggests you it is in UTC. See my article where I was playing with scheduled messages gaevoy.com/2019/10/25/job-scheduler-via-azure-service-bus.html

    • @CecilPhillip
      @CecilPhillip 4 года назад +1

      The ScheduleMessageAsync method assumes you're passing in a UTC DateTime
      docs.microsoft.com/en-us/dotnet/api/microsoft.azure.servicebus.queueclient.schedulemessageasync?view=azure-dotnet#Microsoft_Azure_ServiceBus_QueueClient_ScheduleMessageAsync_Microsoft_Azure_ServiceBus_Message_System_DateTimeOffset_