Jesse Squire

Results 499 comments of Jesse Squire
trafficstars

//cc: @JoshLove-msft, in case there's any overlap with the test proxy sanitization.

@pharring : Give a mention when you're comfortable with things and I'll merge on your behalf.

@tmp505: Thank you for reaching out and we regret that you're experiencing difficulties. Based on the code snippet that you've included, I'm going to assume that your inquiry is about...

Hi @ewancoder. This is known and intentional behavior when you set [EventProcessorClientOptions.MaximumWaitTime](https://learn.microsoft.com/dotnet/api/azure.messaging.eventhubs.eventprocessorclientoptions.maximumwaittime?view=azure-dotnet#azure-messaging-eventhubs-eventprocessorclientoptions-maximumwaittime). This tells the processor to wait for that interval and when no events are available from that partition,...

> So, in regards to the issue above, if we ignore all events that have null args.Data property, but are still processing the ones that have Data set, we aren't...

The [ProcessEventArgs](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/eventhub/Azure.Messaging.EventHubs/src/Processor/ProcessEventArgs.cs) structure is not mutable; there's no way that the value of `Data` can change under normal circumstances. For it to do so, you'd have to drop down to...

> btw if we do use `MaximumWaitTime`, the empty event will come to **every** Partition, right? even if one instance of a service is handling multiple partitions, it will get...

Hi @anand374. Thanks very much for your contribution. Unfortunately, this is not a change that we'll be moving forward with. The `Azure.Services.AppAuthentication` package reached end-of-life in 2023 and is no...

Hi @SeanFeldman. Thanks for letting us know. The [current implementation](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/servicebus/Azure.Messaging.ServiceBus/src/Amqp/AmqpSender.cs#L183) is based on the now outdated service limitation that the maximum message size was based on the SKU and was...

Client portions addressed in #44328. It should help a bit, but won't be fully effective until the service forces client disconnection when the size is updated.