Anoop
Anoop

Reputation: 486

Azure Event Grid Costing if event are batched

If we choose to batch 100 events in one batch. Event grid delivers 100 events in as single batch. I will be billed $0.000060 for one operation or number of events sent $0.000060 x 100?

Pricing document talks about only operations. So, if I have 100 events in batch size of 64 Kb it will cost $0.000060. Am I right?

https://azure.microsoft.com/en-us/pricing/details/event-grid/

Edit: updated cost for one operation.

Upvotes: 0

Views: 659

Answers (1)

LMG
LMG

Reputation: 1370

The pricing is clear for event grid:

  • First 100,000 operations are free
  • Price per million operations is $0.60
  • Events are charged per 64 KB unit of data. Events larger than 64 KB are charged in multiples of 64 KB. For example, a single event of 96 KB will be billed as two separate 64 KB events.

Microsoft does not make any difference whether events are batched or not. All your events will count against your free tier in your case (since you are way below the 100,000 operations).

Upvotes: 1

Related Questions