Skip to content

Commit 6e5b772

Browse files
authored
Merge pull request #292470 from whhender/december-synapse-freshness
December synapse freshness part 3
2 parents 433e93e + f395113 commit 6e5b772

File tree

7 files changed

+93
-140
lines changed

7 files changed

+93
-140
lines changed

articles/synapse-analytics/database-designer/concepts-lake-database.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: mahi
66
ms.service: azure-synapse-analytics
77
ms.subservice: database-editor
88
ms.topic: concept-article
9-
ms.date: 11/02/2021
9+
ms.date: 12/19/2024
1010
ms.custom: template-concept
1111
---
1212

articles/synapse-analytics/get-started-analyze-data-explorer.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: 'Quickstart: Get started analyzing with Data Explorer pools (Preview)'
3-
description: In this quickstart, you'll learn to analyze data with Data Explorer.
3+
description: In this quickstart, you learn to analyze data with Data Explorer.
44
ms.topic: quickstart
5-
ms.date: 11/18/2022
5+
ms.date: 12/20/2024
66
author: shsagir
77
ms.author: shsagir
88
ms.reviewer: shsagir
@@ -13,7 +13,7 @@ ms.custom: mode-other
1313

1414
# Quickstart: Analyze with Data Explorer (Preview)
1515

16-
In this article, you'll learn the basic steps to load and analyze data with Data Explorer for Azure Synapse.
16+
In this article, you learn the basic steps to load and analyze data with Data Explorer for Azure Synapse.
1717

1818
## Create a Data Explorer pool
1919

@@ -47,8 +47,8 @@ In this article, you'll learn the basic steps to load and analyze data with Data
4747

4848
## Ingest sample data and analyze with a simple query
4949

50-
1. In Synapse Studio, on the left-side pane, select **Develop**.
51-
1. Under **KQL scripts**, Select **+** (Add new resource) > **KQL script**. On the right-side pane, you can name your script.
50+
1. Once your pool is deployed, in the Synapse Studio, on the left-side pane, select **Develop**.
51+
1. Select **+** (Add new resource) > **KQL script**. On the right-side pane, you can name your script.
5252
1. In the **Connect to** menu, select *contosodataexplorer*.
5353
1. In the **Use database** menu, select *TestDatabase*.
5454
1. Paste in the following command, and select **Run** to create a StormEvents table.
@@ -78,7 +78,7 @@ In this article, you'll learn the basic steps to load and analyze data with Data
7878
7979
:::image type="content" source="data-explorer/media/get-started-analyze-data-explorer/sample-query-results.png" alt-text="Results for query run on sample data":::
8080
81-
## Next steps
81+
## Related content
8282
8383
- [Tutorial: Use KQL queries](/azure/data-explorer/kusto/query/tutorial?context=/azure/synapse-analytics/context/context&pivots=synapse)
8484
- [Monitor Data Explorer pools](data-explorer/data-explorer-monitor-pools.md)

articles/synapse-analytics/machine-learning/tutorial-cognitive-services-sentiment.md

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ ms.service: azure-synapse-analytics
55
ms.subservice: machine-learning
66
ms.topic: tutorial
77
ms.reviewer: whhender, garye
8-
ms.date: 11/20/2020
8+
ms.date: 12/20/2024
99
author: nelgson
1010
ms.author: negust
1111
---
1212

1313
# Tutorial: Sentiment analysis with Azure AI services
1414

15-
In this tutorial, you'll learn how to easily enrich your data in Azure Synapse Analytics with [Azure AI services](/azure/ai-services/). You'll use the [Azure AI Language](/azure/ai-services/language-service/) text analytics capabilities to perform sentiment analysis.
15+
In this tutorial, you learn how to enrich your data in Azure Synapse Analytics with [Azure AI services](/azure/ai-services/). You'll use the [Azure AI Language](/azure/ai-services/language-service/) text analytics capabilities to perform sentiment analysis.
1616

17-
A user in Azure Synapse can simply select a table that contains a text column to enrich with sentiments. These sentiments can be positive, negative, mixed, or neutral. A probability will also be returned.
17+
A user in Azure Synapse can select a table that contains a text column to enrich with sentiments. These sentiments can be positive, negative, mixed, or neutral. A probability will also be returned.
1818

1919
This tutorial covers:
2020

@@ -28,7 +28,7 @@ If you don't have an Azure subscription, [create a free account before you begin
2828

2929
- [Azure Synapse Analytics workspace](../get-started-create-workspace.md) with an Azure Data Lake Storage Gen2 storage account configured as the default storage. You need to be the *Storage Blob Data Contributor* of the Data Lake Storage Gen2 file system that you work with.
3030
- Spark pool in your Azure Synapse Analytics workspace. For details, see [Create a Spark pool in Azure Synapse](../quickstart-create-sql-pool-studio.md).
31-
- Pre-configuration steps described in the tutorial [Configure Azure AI services in Azure Synapse](tutorial-configure-cognitive-services-synapse.md).
31+
- Preconfiguration steps described in the tutorial: [Configure Azure AI services in Azure Synapse](tutorial-configure-cognitive-services-synapse.md).
3232

3333
## Sign in to the Azure portal
3434

@@ -38,7 +38,9 @@ Sign in to the [Azure portal](https://portal.azure.com/).
3838

3939
You'll need a Spark table for this tutorial.
4040

41-
1. Download the [FabrikamComments.csv](https://github.com/aghonaim/datasets/blob/master/FabrikamComments.csv) file, which contains a dataset for text analytics.
41+
1. Download the [FabrikamComments.csv](https://github.com/aghonaim/datasets/blob/master/FabrikamComments.csv) file, which contains a dataset for text analytics.
42+
43+
1. In Synapse analytics, open your storage account under **Data** and **Linked**.
4244

4345
1. Upload the file to your Azure Synapse storage account in Data Lake Storage Gen2.
4446

@@ -48,7 +50,7 @@ You'll need a Spark table for this tutorial.
4850

4951
![Screenshot that shows selections for creating a Spark table.](media/tutorial-cognitive-services/tutorial-cognitive-services-sentiment-00b.png)
5052

51-
1. Name the table in the code cell and run the notebook on a Spark pool. Remember to set `header=True`.
53+
1. Set `header=True` and name the table in the code cell. Then run the notebook on a Spark pool.
5254

5355
![Screenshot that shows running a notebook.](media/tutorial-cognitive-services/tutorial-cognitive-services-sentiment-00c.png)
5456

@@ -65,11 +67,12 @@ You'll need a Spark table for this tutorial.
6567

6668
## Open the Azure AI services wizard
6769

68-
1. Right-click the Spark table created in the previous procedure. Select **Machine Learning** > **Predict with a model** to open the wizard.
70+
1. In the **Workspace** tab on the data page, under your default lake table, right-click the Spark table created in the previous procedure.
71+
1. Select **Machine Learning** > **Predict with a model** to open the wizard.
6972

7073
![Screenshot that shows selections for opening the scoring wizard.](media/tutorial-cognitive-services/tutorial-cognitive-services-sentiment-00d.png)
7174

72-
2. A configuration panel appears, and you're asked to select a pre-trained model. Select **Sentiment Analysis**.
75+
1. A configuration panel appears, and you're asked to select a pretrained model. Select **Sentiment Analysis**.
7376

7477
![Screenshot that shows selection of a pre-trained sentiment analysis model.](media/tutorial-cognitive-services/tutorial-cognitive-services-sentiment-choose.png)
7578

@@ -94,7 +97,8 @@ The sentiments are returned as **positive**, **negative**, **neutral**, or **mix
9497

9598
![Screenshot that shows sentiment analysis.](media/tutorial-cognitive-services/tutorial-cognitive-services-sentiment-notebook.png)
9699

97-
## Next steps
100+
## Related content
101+
98102
- [Tutorial: Anomaly detection with Azure AI services](tutorial-cognitive-services-anomaly.md)
99103
- [Tutorial: Machine learning model scoring in Azure Synapse dedicated SQL pools](tutorial-sql-pool-model-scoring-wizard.md)
100104
- [Machine Learning capabilities in Azure Synapse Analytics](what-is-machine-learning.md)

articles/synapse-analytics/quickstart-power-bi.md

Lines changed: 15 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ author: jocaplan
55
ms.service: azure-synapse-analytics
66
ms.topic: quickstart
77
ms.subservice: business-intelligence
8-
ms.date: 10/27/2020
8+
ms.date: 12/20/2024
99
ms.author: jocaplan
1010
ms.reviewer: whhender
1111
ms.custom: mode-other
1212
---
1313

1414
# Quickstart: Linking a Power BI workspace to a Synapse workspace
1515

16-
In this quickstart, you will learn how to connect a Power BI workspace to an Azure Synapse Analytics workspace to create new Power BI reports and datasets from Synapse Studio.
16+
In this quickstart, you learn how to connect a Power BI workspace to an Azure Synapse Analytics workspace to create new Power BI reports and datasets from Synapse Studio.
1717

1818
If you don't have an Azure subscription, [create a free account before you begin](https://azure.microsoft.com/free/).
1919

@@ -24,45 +24,41 @@ If you don't have an Azure subscription, [create a free account before you begin
2424

2525
## Link Power BI workspace to your Synapse workspace
2626

27-
1. Starting from Synapse Studio, click **Manage**.
27+
1. Starting from Synapse Studio, select **Manage**.
2828

29-
![Synapse Studio click manage.](media/quickstart-link-powerbi/synapse-studio-click-manage.png)
29+
1. Under **External Connections**, select **Linked services**.
3030

31-
2. Under **External Connections**, click **Linked services**.
32-
33-
![Linked services highlighted.](media/quickstart-link-powerbi/manage-click-linked-services.png)
34-
35-
3. Click **+ New**.
31+
1. Select **+ New**.
3632

3733
![+ New linked services is highlighted.](media/quickstart-link-powerbi/new-highlighted.png)
3834

39-
4. Click **Power BI** and click **Continue**.
35+
1. Select **Power BI** and select **Continue**.
4036

4137
![Displaying Power BI linked service.](media/quickstart-link-powerbi/powerbi-linked-service.png)
4238

43-
5. Enter a name for the linked service and select a workspace from the dropdown list.
39+
1. Enter a name for the linked service and select a workspace from the dropdown list.
40+
41+
>[!TIP]
42+
>If the workspace name doesn't load, select **Edit** and then enter your workspace ID. You can find the ID in the URL for the PowerBI workspace: `https://msit.powerbi.com/groups/<workspace id>/`
4443
4544
![Displaying Power BI linked service setup.](media/quickstart-link-powerbi/workspace-link-dialog.png)
4645

47-
6. Click **Create**.
46+
1. Select **Create**.
4847

4948
## View Power BI workspace in Synapse Studio
5049

5150
Once your workspaces are linked, you can browse your Power BI datasets, edit/create new Power BI Reports from Synapse Studio.
5251

53-
1. Click **Develop**.
52+
1. Select **Develop**.
5453

55-
![Synapse Studio click develop.](media/quickstart-link-powerbi/synapse-studio-click-develop.png)
56-
57-
2. Expand Power BI and the workspace you wish to use.
54+
1. Expand Power BI and the workspace you wish to use.
5855

5956
![Expand Power BI and the workspace.](media/quickstart-link-powerbi/develop-expand-powerbi.png)
6057

61-
New reports can be created clicking **+** at the top of the **Develop** tab. Existing reports can be edited by clicking on the report name. Any saved changes will be written back to the Power BI workspace.
58+
New reports can be created selecting **+** at the top of the **Develop** tab. Existing reports can be edited by selecting on the report name. Any saved changes are written back to the Power BI workspace.
6259

6360
![View and edit Power BI report.](media/quickstart-link-powerbi/powerbi-report.png)
6461

65-
66-
## Next steps
62+
## Related content
6763

6864
Learn more about [creating Power BI report on files stored on Azure Storage](sql/tutorial-connect-power-bi-desktop.md).

articles/synapse-analytics/security/gateway-ip-addresses.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
title: Gateway IP addresses
33
description: An article that teaches you what are the IP addresses used in different regions.
44
ms.service: azure-synapse-analytics
5-
ms.topic: overview
5+
ms.topic: concept-article
66
ms.subservice: security
7-
ms.date: 03/23/2023
7+
ms.date: 12/20/2024
88
author: ilijazagorac
99
ms.author: ilijazagorac
1010
ms.custom: references_regions
@@ -14,7 +14,7 @@ ms.custom: references_regions
1414

1515
The table below lists the individual Gateway IP addresses and also Gateway IP address ranges per region.
1616

17-
Periodically, we will retire Gateways using old hardware and migrate the traffic to new Gateways as per the process outlined at [Azure SQL Database traffic migration to newer Gateways](/azure/azure-sql/database/gateway-migration).
17+
Periodically, we'll retire Gateways using old hardware and migrate the traffic to new Gateways as per the process outlined at [Azure SQL Database traffic migration to newer Gateways](/azure/azure-sql/database/gateway-migration).
1818
We strongly encourage customers to move away from relying on **any individual Gateway IP address** (since these will be retired in the future). Instead, allow network traffic to reach both the individual Gateway IP addresses and Gateway IP address subnets in a region.
1919

2020
> [!IMPORTANT]

0 commit comments

Comments
 (0)