Azure Synapse

Supports:

  • ✅ Models
  • ✅ Model sync destination
  • ✅ Bulk sync source
  • ✅ Bulk sync destination

Connection

Configuration

NameTypeDescriptionRequired
databasestringDatabasetrue
hostnamestringServertrue
passwordstringPasswordtrue
portintegerPorttrue
usernamestringUsernametrue

Example

{
"name": "Azure Synapse connection",
"type": "synapse",
"configuration": {
"database": "yourdatabase",
"hostname": "yourserver.sql.azuresynapse.net",
"password": "secret",
"port": 1433,
"username": "user"
}
}

Model Sync

Source

Configuration

NameTypeDescriptionRequired
querystringfalse
tablestringTablefalse
viewstringViewfalse

Example

{
...
"configuration": {
"query": "SELECT * from users",
"table": "users",
"view": "active_users"
}
}

Target

Azure Synapse connections may be used as the destination in a model sync.

All targets

Configuration
NameTypeDescriptionRequired
created_columnstring’Created at’ timestamp columnfalse
preserve_table_on_resyncbooleanPreserve destination table when resyncingfalse
updated_columnstring’Updated at’ timestamp columnfalse
write_record_timestampsbooleanWrite row timestamp metadatafalse
Example
{
...
"target": {
"configuration": {
"created_column": "",
"preserve_table_on_resync": false,
"updated_column": "",
"write_record_timestamps": false
}
}
}

Target creation

Azure Synapse connections support creating a new target for a model sync. To create a new target, set target.new_name to the desired name.

Bulk Sync

Source

Azure Synapse connections may be used as a bulk sync source. No additional configuration options are required.

Destination

Configuration

NameTypeDescriptionRequired
advancedobjectfalse
mirror_schemasbooleanMirror schemasfalse
schemastringOutput schemafalse

Example

{
...
"destination_configuration": {
"advanced": {
"empty_strings_null": false,
"hard_deletes": false,
"initial_execution": "",
"table_prefix": "",
"truncate_existing": false
},
"mirror_schemas": false,
"schema": "schema"
}
}