Skip to content

Commit 6225a5d

Browse files
committed
PR review
1 parent 3455072 commit 6225a5d

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

articles/partner-solutions/apache-kafka-confluent-cloud/add-confluent-connectors.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
---
2-
title: Use Confluent connectors in Azure (preview)
3-
description: Learn how to use Confluent connectors in Azure (preview) to connect an instance of Apache Kafka® & Apache Flink on Confluent Cloud to Azure Blob Storage.
4-
# customerIntent: As a developer I want use Confluent connectors in Azure
2+
title: Use Confluent Connectors in Azure (preview)
3+
description: Learn how to use Confluent Connectors in Azure (preview) to connect an instance of Apache Kafka® & Apache Flink on Confluent Cloud to Azure Blob Storage.
4+
# customerIntent: As a developer I want use Confluent Connectors in Azure
55
ms.topic: how-to
66
ms.date: 05/28/2024
77
ms.author: malev
88
author: maud-lv
99
---
1010

11-
# Use Confluent connectors in Azure (preview)
11+
# Use Confluent Connectors in Azure (preview)
1212

13-
Confluent Cloud offers a solution designed to help developers connect their Confluent clusters to popular data sources and sinks. This solution is available in Azure using the Confluent connectors feature.
13+
Confluent Cloud offers a solution designed to help developers connect their Confluent clusters to popular data sources and sinks. This solution is available in Azure using the Confluent Connectors feature.
1414

1515
> [!NOTE]
16-
> Currently, Apache Kafka® & Apache Flink® on Confluent Cloud™ - An Azure Native ISV Service only supports Confluent connectors for Azure Blob Storage, including source and sink connectors.
16+
> Currently, Apache Kafka® & Apache Flink® on Confluent Cloud™ - An Azure Native ISV Service only supports Confluent Connectors for Azure Blob Storage, including source and sink connectors.
1717
1818
In this guide, you learn how to connect an instance of Apache Kafka & Apache Flink on Confluent Cloud to Azure Blob Storage.
1919

@@ -23,9 +23,9 @@ In this guide, you learn how to connect an instance of Apache Kafka & Apache Fli
2323
* An [Azure Blob Storage](/azure/storage/blobs/storage-quickstart-blobs-portal) resource.
2424
* A [Confluent organization](./create.md) created on Azure Native ISV Services
2525
* The Azure subscription Owner or subscription Contributor role is required. If necessary, contact your subscription administrator to assign you one of these roles.
26-
* A [configured environment, cluster, and topic](https://docs.confluent.io/cloud/current/get-started/index.html) inside the confluent organization. lIf you do not have one already, please go to Confluent to create these constructs.
26+
* A [configured environment, cluster, and topic](https://docs.confluent.io/cloud/current/get-started/index.html) inside the confluent organization. If you don't have one already, go to Confluent to create these constructs.
2727

28-
## Create a Confluent sink connector for Azure Blob Storage (preview)
28+
## Create a Confluent sink Connector for Azure Blob Storage (preview)
2929

3030
Follow these steps to create a sink connector for Azure Blob Storage.
3131

@@ -46,7 +46,7 @@ Set the basic settings below, then select **Next**.
4646
| **Connector name** | *blob-sink-connector* | Enter a name for your connector. |
4747
| **Environment** | *env1* | Select the environment where you would like to create this connector. |
4848
| **Cluster** | *cluster1* | Select the cluster where you would like to create this connector. |
49-
| **Topics** | *topic_1* | Select one or more topic from where the data needs to be pulled. If there are no topics in the cluster in the selected cluster, create one by selecting **new topic**, which will open the Confluent website. |
49+
| **Topics** | *topic_1* | Select one or more topics from where the data needs to be pulled. If there are no topics in the cluster in the selected cluster, create one by selecting **new topic**, which will open the Confluent website. |
5050
| **Subscription** | *My subscription* | Select the Azure subscription for the Azure Blob Storage where the data needs to be pushed. |
5151
| **Storage Account** | *storageaccount1* | Select the storage account where the data needs to be pushed. If needed, select **Create new** to create a new [storage account](../../storage/common/storage-account-create.md#basics-tab). |
5252
| **Container** | *container1* | Select the container within the storage account where the data needs to be pushed. If needed, [create a new container](../../storage/blobs/storage-quickstart-blobs-portal.md#create-a-container). |
@@ -77,9 +77,9 @@ Select **Review + create** to continue.
7777

7878
Review the listed settings for your new connector to ensure that the details are good to go. Once done, select **Create** to begin the connector deployment.
7979

80-
A notification is displayed on the top right, calling out the status of the deployment. Once it shows **created**, refresh the **Confluent Connectors (Preview)** page. You can now see the new connector tile on this page.
80+
A notification is displayed on the top right, calling out the status of the deployment. Once it shows "created", refresh the **Confluent Connectors (Preview)** page. You can now see the new connector tile on this page.
8181

82-
## Create a Confluent source connector for Azure Blob Storage (preview)
82+
## Create a Confluent source Connector for Azure Blob Storage (preview)
8383

8484
1. Open your Confluent organization and select **Confluent** > **Confluent Connectors (Preview)** from the left menu.
8585

@@ -116,25 +116,25 @@ Configure the authentication of your Kafka cluster via API keys. **Create New**
116116
|--------------------------|-----------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
117117
| **Input Data Format** | *JSON* | Select an input Kafka record data format type among the following options: AVRO, JSON, string, Protobuf. |
118118
| **Output Data Format** | *JSON* | Select an output data format among the following options: AVRO, JSON, string, Protobuf. |
119-
| **Topic name and regex** | `my-topic:.*\.json+` | Configure the topic name and the regex pattern of your messages to ensure they are mapped. For example, *my-topic:.*\.json+** moves all the files ending with .json into *my-topic*. |
119+
| **Topic name and regex** | `my-topic:.*\.json+` | Configure the topic name and the regex pattern of your messages to ensure they are mapped. For example, `*my-topic:.*\.json+` moves all the files ending with .json into *my-topic*. |
120120
| **Number of tasks** | *1* | Optionally enter the maximum number of tasks you would like your connector to support simultaneously. Default is 1. |
121121

122-
:::image type="content" source="./media/confluent-connectors/configuration-source.png" alt-text="Screenshot from the Azure portal showing the Configuration tab, createing asource connetor .":::
122+
:::image type="content" source="./media/confluent-connectors/configuration-source.png" alt-text="Screenshot from the Azure portal showing the Configuration tab, creating a source connector.":::
123123

124124
Select **Review + create** to continue.
125125

126126
### Review + Create
127127

128128
Review the listed settings for your new connector to ensure that the details are good to go. Once done, select **Create** to begin the connector deployment.
129129

130-
A notification is displayed on the top right, calling out the status of the deployment. Once it shows completed, refresh the **Confluent Connectors** page. You can now see the new connector tile on this page.
130+
A notification is displayed on the top right, calling out the status of the deployment. Once it shows *completed*, refresh the **Confluent Connectors** page. You can now see the new connector tile on this page.
131131

132132
## Manage Azure Confluent Connectors (preview)
133133

134134
1. Open your Confluent organization and select **Confluent** > **Confluent Connectors** from the left menu.
135135
1. Select your **Environment** and **Cluster** from the dropdown menu. The Azure portal now displays the list of Azure connectors in the respective environment and cluster. The following optional actions are available:
136136

137-
* Filter connectors by **Type** (**Source** or **Sink**) and **Status** (**Running**, **Failed**, **Provisioning** or **Paused**).
137+
* Filter connectors by **Type** (**Source** or **Sink**) and **Status** (**Running**, **Failed**, **Provisioning, or **Paused**).
138138
* Search for a connector by entering a name in the search bar on the right hand side.
139139

140140
:::image type="content" source="./media/confluent-connectors/display-connectors.png" alt-text="Screenshot of the Azure platform that shows a list of existing connectors in the Confluent Connectors (Preview) tab." lightbox="./media/confluent-connectors/display-connectors.png":::

0 commit comments

Comments
 (0)