Skip to content

Commit 042e7eb

Browse files
authored
Merge pull request #91030 from kromerm/dataflow-1
Dataflow 1
2 parents fa235ff + 305287c commit 042e7eb

File tree

2 files changed

+77
-0
lines changed

2 files changed

+77
-0
lines changed

articles/data-factory/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -598,6 +598,8 @@
598598
href: ssis-integration-runtime-management-troubleshoot.md
599599
- name: Troubleshooting Package Execution in Azure-SSIS IR
600600
href: ssis-integration-runtime-ssis-activity-faq.md
601+
- name: Troubleshooting Data Flows
602+
href: data-flow-troubleshoot-guide.md
601603
- name: Scenarios
602604
items:
603605
- name: Data migration for data lake & EDW
Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
---
2+
title: Troubleshoot Azure Data Factory Data Flows | Microsoft Docs
3+
description: Learn how to troubleshoot data flow issues in Azure Data Factory.
4+
services: data-factory
5+
author: kromerm
6+
ms.service: data-factory
7+
ms.topic: troubleshooting
8+
ms.date: 10/08/2019
9+
ms.author: makromer
10+
---
11+
12+
# Troubleshoot Azure Data Factory Data Flows
13+
14+
This article explores common troubleshooting methods for data flows in Azure Data Factory.
15+
16+
## Error message: DF-SYS-01: shaded.databricks.org.apache.hadoop.fs.azure.AzureException: com.microsoft.azure.storage.StorageException: The specified container does not exist.
17+
18+
- **Symptoms**: Data preview, debug, and pipeline data flow execution fails because container does not exist
19+
20+
- **Cause**: When dataset contains a container that does not exist in the storage
21+
22+
- **Resolution**: Make sure that the container you are referencing in your dataset exists
23+
24+
## Error message: DF-SYS-01: java.lang.AssertionError: assertion failed: Conflicting directory structures detected. Suspicious paths
25+
26+
- **Symptoms**: When using wildcards in source transformation with Parquet files
27+
28+
- **Cause**: Incorrect or invalid wildcard syntax
29+
30+
- **Resolution**: Check the wildcard syntax you are using in your source transformation options
31+
32+
## Error message: DF-SRC-002: 'container' (Container name) is required
33+
34+
- **Symptoms**: Data preview, debug, and pipeline data flow execution fails because container does not exist
35+
36+
- **Cause**: When dataset contains a container that does not exist in the storage
37+
38+
- **Resolution**: Make sure that the container you are referencing in your dataset exists
39+
40+
## Error message: DF-UNI-001: PrimaryKeyValue has incompatible types IntegerType and StringType
41+
42+
- **Symptoms**: Data preview, debug, and pipeline data flow execution fails because container does not exist
43+
44+
- **Cause**: Happens when trying to insert incorrect primary key type in database sinks
45+
46+
- **Resolution**: Use a Derived Column to cast the column that you are using for the primary key in your data flow to match the data type of your target database
47+
48+
## Error message: DF-SYS-01: com.microsoft.sqlserver.jdbc.SQLServerException: The TCP/IP connection to the host xxxxx.database.windows.net port 1433 has failed. Error: "xxxx.database.windows.net. Verify the connection properties. Make sure that an instance of SQL Server is running on the host and accepting TCP/IP connections at the port. Make sure that TCP connections to the port are not blocked by a firewall."
49+
50+
- **Symptoms**: Unable to preview data or execute pipeline with database source or sink
51+
52+
- **Cause**: Database is protected by firewall
53+
54+
- **Resolution**: Open the firewall access to the database
55+
56+
## Error message: DF-SYS-01: com.microsoft.sqlserver.jdbc.SQLServerException: There is already an object named 'xxxxxx' in the database.
57+
58+
- **Symptoms**: Sink fails to create table
59+
60+
- **Cause**: There is already an existing table name in the target database with the same name defined in your source or in the dataset
61+
62+
- **Resolution**: Change the name of the table that you are trying to create
63+
64+
65+
66+
## Next steps
67+
68+
For more troubleshooting help, try these resources:
69+
70+
* [Data Factory blog](https://azure.microsoft.com/blog/tag/azure-data-factory/)
71+
* [Data Factory feature requests](https://feedback.azure.com/forums/270578-data-factory)
72+
* [Azure videos](https://azure.microsoft.com/resources/videos/index/?sort=newest&services=data-factory)
73+
* [MSDN forum](https://social.msdn.microsoft.com/Forums/home?sort=relevancedesc&brandIgnore=True&searchTerm=data+factory)
74+
* [Stack Overflow forum for Data Factory](https://stackoverflow.com/questions/tagged/azure-data-factory)
75+
* [Twitter information about Data Factory](https://twitter.com/hashtag/DataFactory)

0 commit comments

Comments
 (0)