Skip to content

Commit 3d66780

Browse files
authored
Merge pull request #133432 from DCtheGeek/dmc-links-eventhubs-202010
Links: Azure - event-hubs (2020-10)
2 parents b967355 + 062d18c commit 3d66780

8 files changed

+14
-14
lines changed

articles/event-hubs/event-hubs-for-kafka-ecosystem-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ Standalone and without ksqlDB, Kafka Streams has fewer capabilities than many al
122122

123123
- [Azure Stream Analytics](../stream-analytics/stream-analytics-introduction.md)
124124
- [Azure Synapse Analytics (via Event Hubs Capture)](../event-grid/event-grid-event-hubs-integration.md)
125-
- [Azure Databricks](https://docs.microsoft.com/azure/databricks/scenarios/databricks-stream-from-eventhubs)
125+
- [Azure Databricks](/azure/databricks/scenarios/databricks-stream-from-eventhubs)
126126
- [Apache Samza](https://samza.apache.org/learn/documentation/latest/connectors/eventhubs)
127127
- [Apache Storm](event-hubs-storm-getstarted-receive.md)
128128
- [Apache Spark](event-hubs-kafka-spark-tutorial.md)
@@ -134,4 +134,4 @@ The listed services and frameworks can generally acquire event streams and refer
134134
If you must use the Kafka Streams framework on Azure, [Apache Kafka on HDInsight](../hdinsight/kafka/apache-kafka-introduction.md) will provide you with that option. Apache Kafka on HDInsight provides full control over all configuration aspects of Apache Kafka, while being fully integrated with various aspects of the Azure platform, from fault/update domain placement to network isolation to monitoring integration.
135135

136136
## Next steps
137-
This article provided an introduction to Event Hubs for Kafka. To learn more, see [Apache Kafka developer guide for Azure Event Hubs](apache-kafka-developer-guide.md).
137+
This article provided an introduction to Event Hubs for Kafka. To learn more, see [Apache Kafka developer guide for Azure Event Hubs](apache-kafka-developer-guide.md).

articles/event-hubs/event-hubs-kafka-akka-streams-tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ To complete this tutorial, make sure you have the following prerequisites:
2525

2626
* Read through the [Event Hubs for Apache Kafka](event-hubs-for-kafka-ecosystem-overview.md) article.
2727
* An Azure subscription. If you do not have one, create a [free account](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio) before you begin.
28-
* [Java Development Kit (JDK) 1.8+](https://aka.ms/azure-jdks)
28+
* [Java Development Kit (JDK) 1.8+](/azure/developer/java/fundamentals/java-jdk-long-term-support)
2929
* On Ubuntu, run `apt-get install default-jdk` to install the JDK.
3030
* Be sure to set the JAVA_HOME environment variable to point to the folder where the JDK is installed.
3131
* [Download](https://maven.apache.org/download.cgi) and [install](https://maven.apache.org/install.html) a Maven binary archive
@@ -133,4 +133,4 @@ To learn more about Event Hubs for Kafka, see the following articles:
133133
- [Connect Apache Flink to an event hub](event-hubs-kafka-flink-tutorial.md)
134134
- [Integrate Kafka Connect with an event hub](event-hubs-kafka-connect-tutorial.md)
135135
- [Explore samples on our GitHub](https://github.com/Azure/azure-event-hubs-for-kafka)
136-
- [Apache Kafka developer guide for Azure Event Hubs](apache-kafka-developer-guide.md)
136+
- [Apache Kafka developer guide for Azure Event Hubs](apache-kafka-developer-guide.md)

articles/event-hubs/event-hubs-kafka-connect-debezium.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.date: 08/11/2020
1111

1212
**Change Data Capture (CDC)** is a technique used to track row-level changes in database tables in response to create, update, and delete operations. [Debezium](https://debezium.io/) is a distributed platform that builds on top of Change Data Capture features available in different databases (for example, [logical decoding in PostgreSQL](https://www.postgresql.org/docs/current/static/logicaldecoding-explanation.html)). It provides a set of [Kafka Connect connectors](https://debezium.io/documentation/reference/1.2/connectors/index.html) that tap into row-level changes in database table(s) and convert them into event streams that are then sent to [Apache Kafka](https://kafka.apache.org/).
1313

14-
This tutorial walks you through how to set up a change data capture based system on Azure using [Azure Event Hubs](https://docs.microsoft.com/azure/event-hubs/event-hubs-about?WT.mc_id=devto-blog-abhishgu) (for Kafka), [Azure DB for PostgreSQL](../postgresql/overview.md) and Debezium. It will use the [Debezium PostgreSQL connector](https://debezium.io/documentation/reference/1.2/connectors/postgresql.html) to stream database modifications from PostgreSQL to Kafka topics in Azure Event Hubs
14+
This tutorial walks you through how to set up a change data capture based system on Azure using [Azure Event Hubs](./event-hubs-about.md?WT.mc_id=devto-blog-abhishgu) (for Kafka), [Azure DB for PostgreSQL](../postgresql/overview.md) and Debezium. It will use the [Debezium PostgreSQL connector](https://debezium.io/documentation/reference/1.2/connectors/postgresql.html) to stream database modifications from PostgreSQL to Kafka topics in Azure Event Hubs
1515

1616
In this tutorial, you take the following steps:
1717

@@ -279,4 +279,4 @@ To learn more about Event Hubs for Kafka, see the following articles:
279279
- [Connect Apache Flink to an event hub](event-hubs-kafka-flink-tutorial.md)
280280
- [Explore samples on our GitHub](https://github.com/Azure/azure-event-hubs-for-kafka)
281281
- [Connect Akka Streams to an event hub](event-hubs-kafka-akka-streams-tutorial.md)
282-
- [Apache Kafka developer guide for Azure Event Hubs](apache-kafka-developer-guide.md)
282+
- [Apache Kafka developer guide for Azure Event Hubs](apache-kafka-developer-guide.md)

articles/event-hubs/event-hubs-kafka-flink-tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ To complete this tutorial, make sure you have the following prerequisites:
2525

2626
* Read through the [Event Hubs for Apache Kafka](event-hubs-for-kafka-ecosystem-overview.md) article.
2727
* An Azure subscription. If you do not have one, create a [free account](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio) before you begin.
28-
* [Java Development Kit (JDK) 1.7+](https://aka.ms/azure-jdks)
28+
* [Java Development Kit (JDK) 1.7+](/azure/developer/java/fundamentals/java-jdk-long-term-support)
2929
* On Ubuntu, run `apt-get install default-jdk` to install the JDK.
3030
* Be sure to set the JAVA_HOME environment variable to point to the folder where the JDK is installed.
3131
* [Download](https://maven.apache.org/download.cgi) and [install](https://maven.apache.org/install.html) a Maven binary archive

articles/event-hubs/event-hubs-kafka-mirror-maker-tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ To complete this tutorial, make sure you have:
3434

3535
* Read through the [Event Hubs for Apache Kafka](event-hubs-for-kafka-ecosystem-overview.md) article.
3636
* An Azure subscription. If you do not have one, create a [free account](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio) before you begin.
37-
* [Java Development Kit (JDK) 1.7+](https://aka.ms/azure-jdks)
37+
* [Java Development Kit (JDK) 1.7+](/azure/developer/java/fundamentals/java-jdk-long-term-support)
3838
* On Ubuntu, run `apt-get install default-jdk` to install the JDK.
3939
* Be sure to set the JAVA_HOME environment variable to point to the folder where the JDK is installed.
4040
* [Download](https://maven.apache.org/download.cgi) and [install](https://maven.apache.org/install.html) a Maven binary archive

articles/event-hubs/event-hubs-kafka-stream-analytics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ You do not need to change your protocol clients or run your own clusters when yo
2020
To complete this quickstart, make sure you have the following prerequisites:
2121

2222
* An Azure subscription. If you do not have one, create a [free account](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio) before you begin.
23-
* [Java Development Kit (JDK) 1.7+](https://aka.ms/azure-jdks).
23+
* [Java Development Kit (JDK) 1.7+](/azure/developer/java/fundamentals/java-jdk-long-term-support).
2424
* [Download](https://maven.apache.org/download.cgi) and [install](https://maven.apache.org/install.html) a Maven binary archive.
2525
* [Git](https://www.git-scm.com/)
2626
* An **Azure Storage account**. If you don't have one, [create one](../storage/common/storage-account-create.md) before proceeding further. The Stream Analytics job in this walkthrough stores the output data in an Azure blob storage.
@@ -166,4 +166,4 @@ After you have a Stream Analytics job setup to read an incoming data stream, the
166166

167167

168168
## Next steps
169-
In this article, you learned how to stream into Event Hubs without changing your protocol clients or running your own clusters. To learn more about Event Hubs for Apache Kafka, see [Apache Kafka developer guide for Azure Event Hubs](apache-kafka-developer-guide.md).
169+
In this article, you learned how to stream into Event Hubs without changing your protocol clients or running your own clusters. To learn more about Event Hubs for Apache Kafka, see [Apache Kafka developer guide for Azure Event Hubs](apache-kafka-developer-guide.md).

articles/event-hubs/event-hubs-quickstart-kafka-enabled-event-hubs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To complete this quickstart, make sure you have the following prerequisites:
1818

1919
* Read through the [Event Hubs for Apache Kafka](event-hubs-for-kafka-ecosystem-overview.md) article.
2020
* An Azure subscription. If you do not have one, create a [free account](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio) before you begin.
21-
* [Java Development Kit (JDK) 1.7+](https://aka.ms/azure-jdks).
21+
* [Java Development Kit (JDK) 1.7+](/azure/developer/java/fundamentals/java-jdk-long-term-support).
2222
* [Download](https://maven.apache.org/download.cgi) and [install](https://maven.apache.org/install.html) a Maven binary archive.
2323
* [Git](https://www.git-scm.com/)
2424

@@ -99,4 +99,4 @@ When you create a **standard** tier Event Hubs namespace, the Kafka endpoint for
9999
If your Event Hubs Kafka cluster has events, you now start receiving them from the consumer.
100100

101101
## Next steps
102-
In this article, you learned how to stream into Event Hubs without changing your protocol clients or running your own clusters. To learn more, see [Apache Kafka developer guide for Azure Event Hubs](apache-kafka-developer-guide.md).
102+
In this article, you learned how to stream into Event Hubs without changing your protocol clients or running your own clusters. To learn more, see [Apache Kafka developer guide for Azure Event Hubs](apache-kafka-developer-guide.md).

articles/event-hubs/network-security.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This article describes how to use the following security features with Azure Eve
1717
## Service tags
1818
A service tag represents a group of IP address prefixes from a given Azure service. Microsoft manages the address prefixes encompassed by the service tag and automatically updates the service tag as addresses change, minimizing the complexity of frequent updates to network security rules. For more information about service tags, see [Service tags overview](../virtual-network/service-tags-overview.md).
1919

20-
You can use service tags to define network access controls on [network security groups](../virtual-network/security-overview.md#security-rules) or [Azure Firewall](../firewall/service-tags.md). Use service tags in place of specific IP addresses when you create security rules. By specifying the service tag name (for example, **EventHub**) in the appropriate *source* or *destination* field of a rule, you can allow or deny the traffic for the corresponding service.
20+
You can use service tags to define network access controls on [network security groups](../virtual-network/network-security-groups-overview.md#security-rules) or [Azure Firewall](../firewall/service-tags.md). Use service tags in place of specific IP addresses when you create security rules. By specifying the service tag name (for example, **EventHub**) in the appropriate *source* or *destination* field of a rule, you can allow or deny the traffic for the corresponding service.
2121

2222
| Service tag | Purpose | Can use inbound or outbound? | Can be regional? | Can use with Azure Firewall? |
2323
| --- | -------- |:---:|:---:|:---:|:---:|:---:|:---:|:---:|
@@ -78,4 +78,4 @@ See the following articles:
7878

7979
- [How to configure IP firewall for an event hub](event-hubs-ip-filtering.md)
8080
- [How to configure virtual network service endpoints for an event hub](event-hubs-service-endpoints.md)
81-
- [How to configure private endpoints for an event hub](private-link-service.md)
81+
- [How to configure private endpoints for an event hub](private-link-service.md)

0 commit comments

Comments
 (0)