This is an automated email from the ASF dual-hosted git repository.
abhishekrb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git
The following commit(s) were added to refs/heads/master by this push:
new e9f723344b3 Disable event hubs when kafka extensions isn't loaded
(#16559)
e9f723344b3 is described below
commit e9f723344b3de601b61f588fbbdbb4f14cd4b014
Author: Andreas Maechler <[email protected]>
AuthorDate: Thu Jun 6 17:59:26 2024 -0600
Disable event hubs when kafka extensions isn't loaded (#16559)
---
web-console/src/druid-models/ingestion-spec/ingestion-spec.tsx | 3 +++
1 file changed, 3 insertions(+)
diff --git a/web-console/src/druid-models/ingestion-spec/ingestion-spec.tsx
b/web-console/src/druid-models/ingestion-spec/ingestion-spec.tsx
index 37ec41d50e9..2705614571d 100644
--- a/web-console/src/druid-models/ingestion-spec/ingestion-spec.tsx
+++ b/web-console/src/druid-models/ingestion-spec/ingestion-spec.tsx
@@ -233,6 +233,9 @@ export function getIngestionDocLink(spec:
Partial<IngestionSpec>): string {
export function getRequiredModule(ingestionType: IngestionComboTypeWithExtra):
string | undefined {
switch (ingestionType) {
+ case 'azure-event-hubs':
+ return 'druid-kafka-indexing-service';
+
case 'index_parallel:s3':
return 'druid-s3-extensions';
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]