Skip to content

Commit 380dc4c

Browse files
committed
Add new TSG
1 parent 0c606e0 commit 380dc4c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

articles/data-factory/data-factory-troubleshoot-guide.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1019,6 +1019,14 @@ When you observe that the activity is running much longer than your normal runs
10191019
10201020
**Recommendation:** You hit this limit likely because you pass in one or more large parameter values from either upstream activity output or external, especially if you pass actual data across activities in control flow. Check if you can reduce the size of large parameter values, or tune your pipeline logic to avoid passing such values across activities and handle it inside the activity instead.
10211021
1022+
### Unsupported compression causes files to be corrupted
1023+
1024+
**Symptoms**: You try to unzip a file that is stored in a blob container. A single copy activity in a pipeline has a source with the compression type set to "deflate64" (or any unsupported type). This activity runs successfully and produces the text file contained in the zip file. However, there is a problem with the text in the file, and this file appears corrupted. When this file is unzipped locally, it is fine.
1025+
1026+
**Cause**: Your zip file was compressed by the algorithm of "deflate64", while the internal zip library of Azure Data Factory only supports "deflate". If the zip file is compressed by the Windows system and the overall file size exceeds a certain number, Windows will use "deflate64" by default, which is not supported in Azure Data Factory. On the other hand, if the file size is smaller or using some third party zip tools that supports specifying the compress algorithm, Windows will use "deflate" by default.
1027+
1028+
Actually, both [Binary format in Azure Data Factory and Synapse Analytics](format-binary.md) and [Delimited text format in Azure Data Factory and Azure Synapse Analytics](format-delimited-text.md) clearly states that the "deflate64" format is not supported in Azure Data Factory.
1029+
10221030
## Next steps
10231031
10241032
For more troubleshooting help, try these resources:

0 commit comments

Comments
 (0)