Skip to content

Commit c60208d

Browse files
Merge pull request #304302 from MicrosoftDocs/main
Auto Publish – main to live - 2025-08-17 22:00 UTC
2 parents 7ebed59 + 575026b commit c60208d

10 files changed

+306
-8
lines changed

articles/data-factory/connector-release-stages-and-timelines.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ For comprehensive details on support levels and recommended usage at each stage,
7878
| [Salesforce Service Cloud V1](connector-salesforce-service-cloud-legacy.md) | / | End of support | June 30, 2025 | September 30, 2025 |
7979
| [ServiceNow V2](connector-servicenow.md) | / | GA | / | / |
8080
| [ServiceNow V1](connector-servicenow-legacy.md) | / | End of support | June 30, 2025 | September 30, 2025 |
81+
| [Shopify (Preview)](connector-shopify.md) | version 2.0 | Public Preview | / |/
82+
| | version 1.0 | End of support announced | October 22, 2025 | November 22, 2025 |
83+
| [Salesforce V2](connector-salesforce.md) | / |
8184
| [Snowflake V2](connector-snowflake.md) | version 1.1 | GA | / | / |
8285
| | version 1.0 | GA | / | / |
8386
| [Snowflake V1](connector-snowflake-legacy.md) | / | End of support | June 30, 2025 | September 30, 2025 |

articles/data-factory/connector-shopify.md

Lines changed: 83 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: jianleishen
77
ms.subservice: data-movement
88
ms.topic: conceptual
99
ms.custom: synapse
10-
ms.date: 11/05/2024
10+
ms.date: 08/12/2025
1111
---
1212

1313
# Copy data from Shopify using Azure Data Factory or Synapse Analytics (Preview)
@@ -18,6 +18,9 @@ This article outlines how to use the Copy Activity in an Azure Data Factory or S
1818
> [!IMPORTANT]
1919
> This connector is currently in preview. You can try it out and give us feedback. If you want to take a dependency on preview connectors in your solution, please contact [Azure support](https://azure.microsoft.com/support/).
2020
21+
> [!IMPORTANT]
22+
> The Shopify connector version 2.0 (Preview) provides improved native Shopify support. If you are using Shopify connector version 1.0 in your solution, please [upgrade the Shopify connector](#upgrade-the-shopify-connector-from-version-10-to-version-20) before **October 22, 2025**. Refer to this [section](#shopify-connector-lifecycle-and-upgrade) for details on the difference between version 2.0 (Preview) and version 1.0.
23+
2124
## Supported capabilities
2225

2326
This Shopify connector is supported for the following capabilities:
@@ -37,6 +40,9 @@ The connector supports the Windows versions in this [article](create-self-hosted
3740

3841
The billing_on column property was removed from the Recurring_Application_Charges and UsageCharge tables due to Shopify's official deprecation of billing_on field.
3942

43+
> [!Note]
44+
> For version 2.0 (Preview), column names retain the Shopify GraphQL structure, such as `data.customers.edges.node.xx`. For version 1.0, column names use simplified names.
45+
4046
## Getting started
4147

4248
[!INCLUDE [data-factory-v2-connector-get-started](includes/data-factory-v2-connector-get-started.md)]
@@ -70,7 +76,44 @@ The following sections provide details about properties that are used to define
7076

7177
## Linked service properties
7278

73-
The following properties are supported for Shopify linked service:
79+
The Shopify connector now supports version 2.0 (Preview). Refer to this [section](#upgrade-the-shopify-connector-from-version-10-to-version-20) to upgrade your Shopify connector version from version 1.0. For the property details, see the corresponding sections.
80+
81+
- [Version 2.0 (Preview)](#version-20)
82+
- [Version 1.0](#version-10)
83+
84+
### <a name="version-20"></a>Version 2.0 (Preview)
85+
86+
The Shopify linked service supports the following properties when apply version 2.0 (Preview):
87+
88+
| Property | Description | Required |
89+
|:--- |:--- |:--- |
90+
| type | The type property must be set to: **Shopify** | Yes |
91+
| version | The version that you specify. The value is `2.0`. | Yes |
92+
| host | The endpoint of the Shopify server. (that is, mystore.myshopify.com) | Yes |
93+
| accessToken | The API access token that can be used to access Shopify’s data. The token does not expire if it is offline mode. Mark this field as a SecureString to store it securely, or [reference a secret stored in Azure Key Vault](store-credentials-in-key-vault.md). | Yes |
94+
95+
**Example:**
96+
97+
```json
98+
{
99+
"name": "ShopifyLinkedService",
100+
"properties": {
101+
"type": "Shopify",
102+
"version": "2.0",
103+
"typeProperties": {
104+
"host" : "mystore.myshopify.com",
105+
"accessToken": {
106+
"type": "SecureString",
107+
"value": "<accessToken>"
108+
}
109+
}
110+
}
111+
}
112+
```
113+
114+
### Version 1.0
115+
116+
The Shopify linked service supports the following properties when apply version 1.0:
74117

75118
| Property | Description | Required |
76119
|:--- |:--- |:--- |
@@ -108,7 +151,7 @@ To copy data from Shopify, set the type property of the dataset to **ShopifyObje
108151
| Property | Description | Required |
109152
|:--- |:--- |:--- |
110153
| type | The type property of the dataset must be set to: **ShopifyObject** | Yes |
111-
| tableName | Name of the table. | No (if "query" in activity source is specified) |
154+
| tableName | Name of the table. | Yes for version 2.0 (Preview).<br> No for version 1.0 (if "query" in activity source is specified) |
112155

113156
**Example**
114157

@@ -140,6 +183,9 @@ To copy data from Shopify, set the source type in the copy activity to **Shopify
140183
| type | The type property of the copy activity source must be set to: **ShopifySource** | Yes |
141184
| query | Use the custom SQL query to read data. For example: `"SELECT * FROM "Products" WHERE Product_Id = '123'"`. | No (if "tableName" in dataset is specified) |
142185

186+
> [!Note]
187+
> `query` is not supported in version 2.0 (Preview).
188+
143189
**Example:**
144190

145191
```json
@@ -172,10 +218,44 @@ To copy data from Shopify, set the source type in the copy activity to **Shopify
172218
]
173219
```
174220

221+
## Data type mapping for Shopify
222+
223+
When you copy data from Shopify, the following mappings apply from Shopify's data types to the internal data types used by the service. To learn about how the copy activity maps the source schema and data type to the sink, see [Schema and data type mappings](copy-activity-schema-and-type-mapping.md).
224+
225+
| Shopify data type | Interim service data type (for version 2.0 (Preview)) | Interim service data type (for version 1.0) |
226+
|------------------|----------------------------------|----------------------|
227+
| Boolean | Boolean | Boolean |
228+
| Int | Int | Int |
229+
| UnsignedInt64 | UInt64 | UInt64 |
230+
| Decimal | Decimal | Decimal |
231+
| Float | Double | Double |
232+
| String | String | String |
233+
| Date | Date | Date |
234+
| DateTime | DateTime | DateTime |
235+
| ID | String | String |
236+
| URL | String | String |
237+
| CountryCode | String | String |
238+
| Other custom datatypes | String | String |
239+
240+
175241
## Lookup activity properties
176242

177243
To learn details about the properties, check [Lookup activity](control-flow-lookup-activity.md).
178244

245+
## Shopify connector lifecycle and upgrade
246+
247+
The following table shows the release stage and change logs for different versions of the Shopify connector:
248+
249+
| Version | Release stage | Change log |
250+
| :----------- | :------- |:------- |
251+
| Version 1.0 | End of support announced | / |
252+
| Version 2.0 | Public Preview | • Column names retain the Shopify GraphQL structure, such as `data.customers.edges.node.xx`. <br><br> • `useEncryptedEndpoints`, `useHostVerification`, `usePeerVerification` are not supported in the linked service. <br><br> • `query` is not supported. |
253+
254+
### <a name="upgrade-the-shopify-connector-from-version-10-to-version-20"></a> Upgrade the Shopify connector from version 1.0 to version 2.0 (Preview)
255+
256+
1. In **Edit linked service** page, select 2.0 (Preview) for version. For more information, see [linked service version 2.0 (Preview) properties](#version-20).
257+
1. For version 2.0 (Preview), note that column names retain the Shopify GraphQL structure, such as `data.customers.edges.node.xx`. For version 1.0, column names use simplified names.
258+
1. `query` is only supported in version 1.0. You should use the `tableName` instead of `query` in version 2.0 (Preview).
179259

180260
## Related content
181261
For a list of data stores supported as sources and sinks by the copy activity, see [supported data stores](copy-activity-overview.md#supported-data-stores-and-formats).
595 Bytes
Loading

articles/reliability/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,8 @@ items:
296296
href: /azure/virtual-machines/disks-high-availability?toc=/azure/reliability/toc.json&bc=/azure/reliability/breadcrumb/toc.json
297297
- name: Azure Storage Mover
298298
href: reliability-azure-storage-mover.md
299+
- name: Azure Table Storage
300+
href: reliability-storage-table.md
299301
- name: Web
300302
items:
301303
- name: Azure AI Search

articles/reliability/availability-zones-service-support.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ Some Azure services are *nonregional*, which means that you don't deploy the ser
9393
| [Azure SQL Database](/azure/azure-sql/database/enable-zone-redundancy?view=azuresql-db&preserve-view=true&toc=/azure/reliability/toc.json&bc=/azure/reliability/breadcrumb/toc.json) | :::image type="content" source="media/icon-checkmark.svg" alt-text="Yes" border="false"::: | |
9494
| [Azure SQL Managed Instance](/azure/azure-sql/database/business-continuity-high-availability-disaster-recover-hadr-overview) | :::image type="content" source="media/icon-checkmark.svg" alt-text="Yes" border="false"::: | |
9595
| [Azure Stream Analytics](../stream-analytics/stream-analytics-introduction.md) | :::image type="content" source="media/icon-checkmark.svg" alt-text="Yes" border="false"::: | |
96+
| [Azure Table Storage](./reliability-storage-table.md)| :::image type="content" source="media/icon-checkmark.svg" alt-text="Yes" border="false"::: | |
9697
| [Azure Ultra Disk Storage](/azure/virtual-machines/disks-enable-ultra-ssd)| | :::image type="content" source="media/icon-checkmark.svg" alt-text="Yes" border="false"::: |
9798
| [Azure Virtual Machine Scale Sets](./reliability-virtual-machine-scale-sets.md#availability-zone-support) | :::image type="content" source="media/icon-checkmark.svg" alt-text="Yes" border="false"::: | :::image type="content" source="media/icon-checkmark.svg" alt-text="Yes" border="false"::: |
9899
| [Azure Virtual Machines](./reliability-virtual-machines.md#availability-zone-support) | | :::image type="content" source="media/icon-checkmark.svg" alt-text="Yes" border="false"::: |

articles/reliability/includes/storage/reliability-storage-architecture-include.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
ms.custom: include file
1010
---
1111

12-
[Locally redundant storage (LRS)](/azure/storage/common/storage-redundancy?#locally-redundant-storage) replicates the data within your storage accounts to one or more Azure availability zones located in the primary region of your choice. Although there's no option to choose your preferred availability zone, Azure may move or expand LRS accounts across zones to improve load balancing. There's no guarantee that your data will be spread across zones. LRS provides at least 99.999999999 (11 nines) durability of objects over a given year. For more information about availability zones, see [What are Availability Zones?](../../availability-zones-overview.md).
12+
[Locally redundant storage (LRS)](/azure/storage/common/storage-redundancy?#locally-redundant-storage) replicates the data within your storage accounts to one or more Azure availability zones located in the primary region of your choice. Although there's no option to choose your preferred availability zone, Azure may move or expand LRS accounts across zones to improve load balancing. There's no guarantee that your data will be spread across zones. For more information about availability zones, see [What are Availability Zones?](../../availability-zones-overview.md).
1313

1414
:::image type="complex" source="../../media/reliability-storage/locally-redundant-storage.png" alt-text="Diagram that shows how data is replicated in availability zones by using LRS." lightbox="../../media/reliability-storage/locally-redundant-storage.png" border="false":::
1515
A blue box represents the primary region. It contains a gray box that represents the datacenter. A dark purple box inside the datacenter box represents LRS. It contains a light purple box that includes the storage account and three icons labeled copy 1, copy 2, and copy 3.

articles/reliability/overview-reliability-guidance.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ This section provides links to reliability guidance for many Azure services. Eac
115115
|Azure Storage Actions| [Reliability in Storage Actions](reliability-storage-actions.md)||
116116
|Azure Storage Mover| [Reliability in Storage Mover](reliability-azure-storage-mover.md)||
117117
|Azure Stream Analytics|| [Achieve geo-redundancy for Stream Analytics jobs](../stream-analytics/geo-redundancy.md?toc=/azure/reliability/toc.json&bc=/azure/reliability/breadcrumb/toc.json) |
118+
|Azure Table Storage| [Reliability in Azure Table Storage](reliability-storage-table.md)||
118119
|Azure Traffic Manager| [Reliability in Traffic Manager](reliability-traffic-manager.md)||
119120
|Azure Virtual Machines| [Reliability in Virtual Machines](reliability-virtual-machines.md)||
120121
|Azure VM Image Builder| [Reliability in VM Image Builder](reliability-image-builder.md)||

articles/reliability/regions-multi-region-nonpaired.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,12 @@ To achieve geo-replication in nonpaired regions:
130130

131131
- To learn about how to create multi-region solutions by using Queue Storage, see [Reliability in Queue Storage](./reliability-storage-queue.md).
132132

133+
- **For Azure Table Storage:** To learn about how to create multi-region solutions using Azure Table Storage, see [Reliability in Azure Table Storage](./reliability-storage-table.md).
134+
135+
## Azure Table Storage
136+
137+
To learn about how to create multi-region solutions using Azure Table Storage, see [Reliability in Azure Table Storage](./reliability-storage-table.md).
138+
133139
## Azure Virtual Desktop
134140

135141
For geo-replication in nonpaired regions for Azure Virtual Desktop, you need to consider session host VMs and storage for user profiles, applications, and data. Microsoft manages the Azure Virtual Desktop control plane, which is globally distributed and highly available.

0 commit comments

Comments
 (0)