You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/stream-analytics/cicd-deploy-with-bicep.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,14 @@
1
1
---
2
-
title: Deploy Stream Analytics jobs with Bicep
3
-
description: This article shows you how to generate and deploy Stream Analytics jobs using Bicep template.
2
+
title: Deploy Azure Stream Analytics jobs using Bicep files
3
+
description: This article shows you how to generate and deploy Azure Stream Analytics jobs using Bicep files.
4
4
ms.service: stream-analytics
5
5
author: alexlzx
6
6
ms.author: zhenxilin
7
7
ms.date: 05/24/2023
8
8
ms.topic: how-to
9
9
---
10
10
11
-
# Deploy Stream Analytics jobs with Bicep
11
+
# Deploy Stream Analytics jobs with Bicep files
12
12
13
13
The Azure Stream Analytics (ASA) CI/CD npm package allows you to build, test, and deploy your Stream Analytics projects in your CI/CD pipeline using Bicep files. This article walks you through how to generate bicep files and deploy your ASA jobs.
title: Export and manage Stream Analytics jobs in Visual Studio Code
2
+
title: Export and manage Azure Stream Analytics jobs in Visual Studio Code
3
3
description: This article shows you how to export and manage an Azure Stream Analytics job with the Azure Stream Analytics extension for Visual Studio Code.
4
4
ms.service: stream-analytics
5
5
author: alexlzx
@@ -10,7 +10,7 @@ ms.topic: how-to
10
10
11
11
# Export and manage Stream Analytics jobs in Visual Studio Code
12
12
13
-
The Azure Stream Analytics extension (ASA) for Visual Studio Code gives you a seamless experience for managing Stream Analytics jobs in the cloud. It can be used across Windows, Mac and Linux platforms. With the ASA extension, it allows you to:
13
+
The Azure Stream Analytics (ASA) extension for Visual Studio Code gives you a seamless experience for managing Stream Analytics jobs in the cloud. It can be used across Windows, Mac and Linux platforms. With the ASA extension, it allows you to:
14
14
15
15
- Create, start, and stop a cloud job in Azure
16
16
- Export existing jobs to a local machine
@@ -22,59 +22,59 @@ The Azure Stream Analytics extension (ASA) for Visual Studio Code gives you a se
22
22
1. Open your VS Code and select **Azure** icon on the activity bar. If you haven't installed the ASA extension, follow [this guide](./quick-create-visual-studio-code.md) to install.
23
23
2. Select **STREAM ANALYTICS** in the explorer to locate the job you want to export.
24
24
25
-

25
+

26
26
27
27
## List job and view job entities
28
28
29
29
You can use the job view to interact with Azure Stream Analytics jobs from Visual Studio.
30
30
31
31
1. Select the **Azure** icon on Visual Studio Code Activity Bar and then expand **Stream Analytics node**. Your jobs should appear under your subscriptions.

62
62
63
63
2. You can interact with it and analyze your job with key metrics showing in chart. You can choose to view job-level metrics or nodes level metrics. And you can also decide which metrics you want them to show in the chart.
Copy file name to clipboardExpand all lines: articles/stream-analytics/visual-studio-code-local-run-live-input.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: Testing Stream Analytics query locally against live stream input with Visual Studio Code
2
+
title: Testing Azure Stream Analytics query locally against live stream input using Visual Studio Code extension.
3
3
description: This article describes how to test query locally against live stream input using the Azure Stream Analytics Tools extension for Visual Studio Code.
4
4
ms.service: stream-analytics
5
5
ms.custom: build-2023
@@ -21,32 +21,32 @@ Testing your Stream Analytics query locally against live stream input is a cruci
21
21
## Define a live stream input
22
22
23
23
1. Right-click the **Inputs** folder in your Stream Analytics project and select **ASA: Add Input**.
24
-

24
+

25
25
OR press **Ctrl+Shift+P** to open the command palette and enter **ASA: Add Input**. Then choose the query script for processing the input stream.
26
-

26
+

27
27
28
28
2. Choose a live input source type from the drop-down list, **Select from your Azure Subscriptions** and enter a name for the input source.
29
-

29
+

30
30
31
31
3. You see a new JSON file created under the **Input** folder. Open the file and **Select from your subscriptions** to help you configure your Event Hubs input.
32
-

32
+

33
33
34
34
4. Select **Preview data** to validate if the live input is successfully configured.
35
-

35
+

36
36
37
37
## Run query locally
38
38
39
39
Open your query file, select **Run locally** or the **Play** button on the menu bar to open a **Local run option** window for configuring local run mode.
40
40
41
-

41
+

42
42
43
43
Choose **Use Live Input and Local Output** to run job locally against live input stream and produce output results to a local folder. Then select **Run** to start running job locally.
44
44
45
-

45
+

46
46
47
47
You can see a **Local test** window is opened and refreshed every 3 seconds. The output results are stored as JSON format in **LocalRunOutputs** folder.
48
48
49
-

49
+

50
50
51
51
52
52
## Specify input partitions for local testing
@@ -57,7 +57,7 @@ To avoid ingesting all data from Event Hubs, you can specify specific partitions
57
57
2. Under **Select the input partitions** section and choose **Custom**.
58
58
3. Enter the specific partition numbers that you want to ingest data from for your local testing.
59
59
60
-

60
+

61
61
62
62
By specifying the partitions, you can focus on testing your query logic without worrying about a large volume of data. This feature allows for more efficient and targeted testing of your Stream Analytics job.
63
63
@@ -68,11 +68,11 @@ Once you have completed testing your query locally, you can submit your Stream A
68
68
2. In the submit options window, you can **update an existing job in Azure** or **create a new job** for the upload.
69
69
3. Provide the necessary details, including your subscription, resource group, and region for the deployment.
70
70
71
-

71
+

72
72
73
73
Once the submission process is complete, you can view your cloud job in a new window. From there, you can monitor its performance and manage its configurations as needed. You can also open the job in your browser by clicking on the link provided in the OUTPUT panel.
74
74
75
-

75
+

0 commit comments