From f3b1e6de7502808bcc1712e6ce2b175b60d6cede Mon Sep 17 00:00:00 2001 From: Rafal Skolasinski Date: Wed, 12 Jul 2023 14:12:09 +0100 Subject: [PATCH] add note that Basic tier in Event Hub does not support Kafka protocol --- .../security/azure-event-hub-sasl.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/source/contents/getting-started/kubernetes-installation/security/azure-event-hub-sasl.md b/docs/source/contents/getting-started/kubernetes-installation/security/azure-event-hub-sasl.md index fe2d586c0f..1266fa2a00 100644 --- a/docs/source/contents/getting-started/kubernetes-installation/security/azure-event-hub-sasl.md +++ b/docs/source/contents/getting-started/kubernetes-installation/security/azure-event-hub-sasl.md @@ -4,9 +4,13 @@ Seldon Core v2 can integrate with Azure Event Hub via Kafka protocol. +```{warning} +You will need at least `Standard` tier for your Event Hub Namespace as `Basic` tier does not support Kafka protocol. +``` + ```{warning} Seldon Core v2 creates 2 Kafka topics for each pipeline and model plus one global topic for errors. -This means that total number of topics will be `2 x (#models + #pipelines) + 1` which will likely exceed the limit of `Basic` and `Standard` tier in Azure Event Hub. +This means that total number of topics will be `2 x (#models + #pipelines) + 1` which will likely exceed the limit of `Standard` tier in Azure Event Hub. See quota information [here](https://learn.microsoft.com/en-us/azure/event-hubs/event-hubs-quotas#basic-vs-standard-vs-premium-vs-dedicated-tiers). ```