About This Page
This page is part of the Azure documentation. It contains code examples and configuration instructions for working with Azure services.
Bias Analysis
Bias Types:
⚠️
windows_first
⚠️
missing_linux_example
Summary:
The documentation page demonstrates a mild Windows bias. The only file path example for the U-SQL script uses backslashes (scripts\kona\SearchLogProcessing.txt), which is a Windows convention. There are no explicit Linux or cross-platform examples or notes about path separators. No PowerShell or Windows-specific tools are mentioned, but the lack of Linux/Unix-style examples or clarifications may confuse non-Windows users.
Recommendations:
- Provide both Windows (backslash) and Linux/macOS (forward slash) path examples when referencing file paths.
- Add a note clarifying that Azure Data Lake paths and script paths are platform-agnostic or specify the required separator.
- Ensure that any code snippets or configuration examples use forward slashes (/) for paths, or explicitly state if backslashes are required.
- If relevant, include CLI or scripting examples for both Windows (PowerShell, CMD) and Linux/macOS (Bash, Azure CLI).
- Review all screenshots and UI references to ensure they do not assume a Windows-only environment.
Create pull request
Flagged Code Snippets
{
"name": "ADLA U-SQL Activity",
"description": "description",
"type": "DataLakeAnalyticsU-SQL",
"linkedServiceName": {
"referenceName": "<linked service name of Azure Data Lake Analytics>",
"type": "LinkedServiceReference"
},
"typeProperties": {
"scriptLinkedService": {
"referenceName": "<linked service name of Azure Data Lake Store or Azure Storage which contains the U-SQL script>",
"type": "LinkedServiceReference"
},
"scriptPath": "scripts\\kona\\SearchLogProcessing.txt",
"degreeOfParallelism": 3,
"priority": 100,
"parameters": {
"in": "/datalake/input/SearchLog.tsv",
"out": "/datalake/output/Result.tsv"
}
}
}