Podcast
Questions and Answers
When should a solution architect/developer consider using Service Bus queues?
When should a solution architect/developer consider using Service Bus queues?
When should a solution architect/developer consider using Storage queues?
When should a solution architect/developer consider using Storage queues?
When should a solution architect/developer consider using Service Bus queues?
When should a solution architect/developer consider using Service Bus queues?
What is a suitable use case for Storage queues?
What is a suitable use case for Storage queues?
Signup and view all the answers
In what scenario should Service Bus queues be considered?
In what scenario should Service Bus queues be considered?
Signup and view all the answers
When is it appropriate to use Storage queues?
When is it appropriate to use Storage queues?
Signup and view all the answers
What type of message delivery do queues offer in Service Bus?
What type of message delivery do queues offer in Service Bus?
Signup and view all the answers
How do queues enable load-leveling in message processing?
How do queues enable load-leveling in message processing?
Signup and view all the answers
What benefit does using queues provide in terms of system coupling?
What benefit does using queues provide in terms of system coupling?
Signup and view all the answers
Which languages can be used to write clients for sending and receiving messages in Service Bus queues?
Which languages can be used to write clients for sending and receiving messages in Service Bus queues?
Signup and view all the answers
What are the two different modes in which Service Bus receives messages?
What are the two different modes in which Service Bus receives messages?
Signup and view all the answers
In which mode does Service Bus mark the message as consumed and return it to the consumer?
In which mode does Service Bus mark the message as consumed and return it to the consumer?
Signup and view all the answers
Why is 'Peek lock' mode suitable for applications that can't tolerate missing messages?
Why is 'Peek lock' mode suitable for applications that can't tolerate missing messages?
Signup and view all the answers
What does a topic and subscription provide in contrast to queues?
What does a topic and subscription provide in contrast to queues?
Signup and view all the answers
How are messages sent to a topic and received from subscriptions in Service Bus?
How are messages sent to a topic and received from subscriptions in Service Bus?
Signup and view all the answers
What is used to copy a subset of messages to the virtual subscription queue in Service Bus?
What is used to copy a subset of messages to the virtual subscription queue in Service Bus?
Signup and view all the answers
What type of properties can a filter expression operate on in Service Bus subscriptions?
What type of properties can a filter expression operate on in Service Bus subscriptions?
Signup and view all the answers
What is the purpose of a filter action in Service Bus subscriptions?
What is the purpose of a filter action in Service Bus subscriptions?
Signup and view all the answers
What is the outcome of defining a SQL filter expression on a subscription in Service Bus?
What is the outcome of defining a SQL filter expression on a subscription in Service Bus?
Signup and view all the answers
How are topics and subscriptions created in Azure Service Bus?
How are topics and subscriptions created in Azure Service Bus?
Signup and view all the answers
What is the advantage of using topics and subscriptions in Service Bus for message processing?
What is the advantage of using topics and subscriptions in Service Bus for message processing?
Signup and view all the answers
Which mode of message processing in Service Bus is suitable for scenarios where the application can tolerate not processing a message if a failure occurs?
Which mode of message processing in Service Bus is suitable for scenarios where the application can tolerate not processing a message if a failure occurs?
Signup and view all the answers
What does a Service Bus message consist of?
What does a Service Bus message consist of?
Signup and view all the answers
How are messages routed to particular destinations in Service Bus?
How are messages routed to particular destinations in Service Bus?
Signup and view all the answers
What is the purpose of the To property in Service Bus messages?
What is the purpose of the To property in Service Bus messages?
Signup and view all the answers
What is the role of user properties in Service Bus messages?
What is the role of user properties in Service Bus messages?
Signup and view all the answers
What is the suggested format for the ContentType property values when describing the payload?
What is the suggested format for the ContentType property values when describing the payload?
Signup and view all the answers
How does the .NET Framework version of the Service Bus API support creating BrokeredMessage instances?
How does the .NET Framework version of the Service Bus API support creating BrokeredMessage instances?
Signup and view all the answers
What does the AMQP protocol do to serialize objects?
What does the AMQP protocol do to serialize objects?
Signup and view all the answers
What is the suggested approach for applications to take explicit control of object serialization when using AMQP?
What is the suggested approach for applications to take explicit control of object serialization when using AMQP?
Signup and view all the answers
What is the payload type when in transit or stored inside of Service Bus?
What is the payload type when in transit or stored inside of Service Bus?
Signup and view all the answers
What is the primary recommendation for applications that implement routing?
What is the primary recommendation for applications that implement routing?
Signup and view all the answers
What does the ContentType property enable applications to describe?
What does the ContentType property enable applications to describe?
Signup and view all the answers
What does the legacy SBMP protocol use to serialize objects?
What does the legacy SBMP protocol use to serialize objects?
Signup and view all the answers
What does setting ReplyToSessionId enable in Service Bus?
What does setting ReplyToSessionId enable in Service Bus?
Signup and view all the answers
What is the recommended approach for applications implementing routing in Service Bus?
What is the recommended approach for applications implementing routing in Service Bus?
Signup and view all the answers
How can routing across namespaces be performed in Service Bus?
How can routing across namespaces be performed in Service Bus?
Signup and view all the answers
What property contains the address of the queue to receive replies in a simple request/reply pattern in Azure Service Bus?
What property contains the address of the queue to receive replies in a simple request/reply pattern in Azure Service Bus?
Signup and view all the answers
In a multicast request/reply pattern in Azure Service Bus, what can a set of discovery responses be distributed to if ReplyTo points to a topic?
In a multicast request/reply pattern in Azure Service Bus, what can a set of discovery responses be distributed to if ReplyTo points to a topic?
Signup and view all the answers
What feature in Azure Service Bus enables multiplexing of streams of related messages through a single queue or subscription?
What feature in Azure Service Bus enables multiplexing of streams of related messages through a single queue or subscription?
Signup and view all the answers
In a simple request/reply pattern in Azure Service Bus, what property does the consumer copy the MessageId of the handled message into for the reply message?
In a simple request/reply pattern in Azure Service Bus, what property does the consumer copy the MessageId of the handled message into for the reply message?
Signup and view all the answers
What is the maximum size a queue message can be in Azure Queue Storage?
What is the maximum size a queue message can be in Azure Queue Storage?
Signup and view all the answers
What is the primary purpose of queues in Azure Queue Storage?
What is the primary purpose of queues in Azure Queue Storage?
Signup and view all the answers
How do you access messages in Azure Queue Storage?
How do you access messages in Azure Queue Storage?
Signup and view all the answers