🔄 Synapse Pipelines¶
Data integration and orchestration within Azure Synapse Analytics.
🎯 Overview¶
Synapse Pipelines provide code-free data integration capabilities, sharing the same engine as Azure Data Factory with deep Synapse workspace integration.
Key Capabilities¶
- 90+ connectors for data sources
- Visual data flows for transformations
- Notebook orchestration for Spark workloads
- Lineage tracking with Azure Purview
- CI/CD integration with Azure DevOps
📚 Documentation¶
| Topic | Description |
|---|---|
| Lineage Tracking | Data lineage with Purview integration |
| Data Factory Guide | Shared engine documentation |
| Best Practices | Pipeline development patterns |
🚀 Quick Start¶
{
"name": "IngestSalesData",
"properties": {
"activities": [
{
"name": "CopyFromSQL",
"type": "Copy",
"inputs": [{"referenceName": "SqlSource"}],
"outputs": [{"referenceName": "DataLakeSink"}]
}
]
}
}
Last Updated: January 2025