Skip to content

Commit baf996b

Browse files
committed
Merge branch 'release-ignite-arcadia' of https://github.com/MicrosoftDocs/azure-docs-pr into release-ignite-arcadia
2 parents 3ebfb88 + d32f7f3 commit baf996b

File tree

4 files changed

+56
-9
lines changed

4 files changed

+56
-9
lines changed

articles/synapse-analytics/overview-what-is.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,9 @@ Azure Synapse provides a single way for enterprises to manage analytics resource
7777

7878
## Next steps
7979

80-
* Explore [Azure Synapse architecture](sql-data-warehouse/massively-parallel-processing-mpp-architecture.md)
81-
* Quickly [create a SQL pool](sql-data-warehouse/create-data-warehouse-portal.md)
82-
* [Load sample data](sql-data-warehouse/load-data-from-azure-blob-storage-using-polybase.md)
83-
* Explore [Videos](https://azure.microsoft.com/documentation/videos/index/?services=sql-data-warehouse)
80+
* [Create a workspace](quickstart-create-workspace.md)
81+
* [Use Synapse Studio](quickstart-synapse-studio.md)
82+
* [Create a SQL pool](quickstart-create-sql-pool.md)
83+
* [Use SQL on-demand](quickstart-sql-on-demand.md)
84+
* [Create an Apache Spark pool](quickstart-create-apache-spark-pool.md)
85+
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
title: Release notes
3+
description: Release notes for Azure Synapse Analytics (workspaces)
4+
services: synapse-analytics
5+
author: julieMSFT
6+
ms.service: synapse-analytics
7+
ms.topic: overview
8+
ms.subservice:
9+
ms.date: 10/09/2019
10+
ms.author: jrasnick
11+
ms.reviewer: jrasnick
12+
---
13+
14+
# Azure Synapse Analytics (preview) release notes
15+
16+
This article describes limitations and issues with Azure Synapse Analytics (workspaces). For related information, see [What is Azure Synapse Analytics (workspaces)](overview-what-is.md)
17+
18+
[!INCLUDE [preview](includes/note-preview.md)]
19+
20+
## Azure Synapse (workspaces)
21+
22+
### Azure Synapse CLI
23+
24+
- Issue and customer impact: Workspaces created by SDK can't launch Synapse Studio
25+
26+
- Workaround: Complete the following steps:
27+
1. Create workspace by running `az synapse workspace create`2. Extract managed identity id by running `$identity=$(az synapse workspace show --name {workspace name} --resource-group {resource group name} --query "identity.principalId")`
28+
3. Add workspace as role to storage account by running ` az role assignment create --role "Storage Blob Data Contributor" --assignee-object-id {identity } --scope {storage account resource id}`
29+
4. Add firewall rule by running ` az synapse firewall-rule create --name allowAll --start-ip-address 0.0.0.0 --end-ip-address 255.255.255.255 `
30+
31+
## Next steps
32+
33+
* [Create a workspace](quickstart-create-workspace.md)
34+
* [Use Synapse Studio](quickstart-synapse-studio.md)
35+
* [Create a SQL pool](quickstart-create-sql-pool.md)
36+
* [Use SQL on-demand](quickstart-sql-on-demand.md)
37+
* [Create an Apache Spark pool](quickstart-create-apache-spark-pool.md)

articles/synapse-analytics/sql/resources-self-help-sql-on-demand.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,17 @@ If Synapse Studio can't establish connection to SQL on-demand, you'll notice tha
2424

2525
## Query fails because file cannot be opened
2626

27-
If your query fails when with the error saying 'File cannot be opened because it does not exist or it is used by another process' and you're sure both file exist and it's not used by another process it means SQL on-demand can't access the file. This problem usually happens because your Azure Active Directory identity doesn't have rights to access the file. By default, SQL on-demand is trying to access the file using your Azure Active Directory identity. To resolve this issue, you need to have proper rights to access the file. Easiest way is to grant yourself 'Storage Blob Data Contributor' role on the storage account you're trying to query. [Visit full guide on Azure Active Directory access control for storage for more information](../../storage/common/storage-auth-aad-rbac-portal.md?toc=/azure/synapse-analytics/toc.json&bc=/azure/synapse-analytics/breadcrumb/toc.json).
27+
If your query fails with the error saying 'File cannot be opened because it does not exist or it is used by another process' and you're sure both file exist and it's not used by another process it means SQL on-demand can't access the file. This problem usually happens because your Azure Active Directory identity doesn't have rights to access the file. By default, SQL on-demand is trying to access the file using your Azure Active Directory identity. To resolve this issue, you need to have proper rights to access the file. Easiest way is to grant yourself 'Storage Blob Data Contributor' role on the storage account you're trying to query. [Visit full guide on Azure Active Directory access control for storage for more information](../../storage/common/storage-auth-aad-rbac-portal.md?toc=/azure/synapse-analytics/toc.json&bc=/azure/synapse-analytics/breadcrumb/toc.json).
28+
29+
## Query fails because it cannot be executed due to current resource constraints
30+
31+
If your query fails with the error message 'This query cannot be executed due to current resource constraints', it means that SQL OD is not able to execute it at this moment due to resource constraints:
32+
33+
- Please make sure data types of reasonable sizes are used. Also, specify schema for Parquet files for string columns as they will be VARCHAR(8000) by default.
34+
35+
- If your query targets CSV files, consider [creating statistics](develop-tables-statistics.md#statistics-in-sql-on-demand-preview).
36+
37+
- Visit [performance best practices for SQL on-demand](best-practices-sql-on-demand.md) to optimize query.
2838

2939
## Next steps
3040

articles/synapse-analytics/toc.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,8 @@
1212
href: overview-cheat-sheet.md
1313
- name: FAQ
1414
href: overview-faq.md
15-
- name: Release notes
16-
items:
17-
# - name: Recent release
18-
# href: ../sql-data-warehouse/release-notes-10-0-10106-0.md?toc=/azure/synapse-analytics/toc.json&bc=/azure/synapse-analytics/breadcrumb/toc.json
15+
- name: Release notes
16+
href: release-notes.md
1917
- name: Quickstarts
2018
items:
2119
- name: Create an Azure Synapse workspace

0 commit comments

Comments
 (0)