Skip to content

Commit

Permalink
Merge from master
Browse files Browse the repository at this point in the history
  • Loading branch information
mrpaulandrew committed Dec 14, 2020
2 parents 641ca52 + 8be49e1 commit 554d50d
Show file tree
Hide file tree
Showing 6 changed files with 86 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug-found.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Bug Found
about: Tell me about the bug please
about: Tell me about the bug you've found in the procfwk please
title: ''
labels: bug
assignees: mrpaulandrew
Expand All @@ -12,7 +12,7 @@ A clear and concise description of what the bug is.

**Affected services**
Which resource within the processing framework does this affect?
* Data Factory
* Data Factory/Synapse
* SQL Database
* Functions
* All of them
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature-request.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Feature Request
about: Tell me about your idea please
about: Tell me about your idea to enhance the procfwk please
title: ''
labels: enhancement
assignees: mrpaulandrew
Expand Down
32 changes: 32 additions & 0 deletions .github/ISSUE_TEMPLATE/help---support-request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
name: Help & Support Request
about: Tell me about the problem or error you are facing when using the procfwk
title: ''
labels: help wanted
assignees: mrpaulandrew

---

**Describe the error**
A clear and concise description of what the bug is.

**Error message**
An output of the error message presented.

**Affected services**
Which resource within the processing framework does this affect?
* Data Factory/Synapse
* SQL Database
* Functions
* All of them
* Other

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Screenshots**
If applicable, add screenshots to help explain your problem.
16 changes: 16 additions & 0 deletions Synapse/integrationRuntime/AutoResolveIntegrationRuntime.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"name": "AutoResolveIntegrationRuntime",
"properties": {
"type": "Managed",
"typeProperties": {
"computeProperties": {
"location": "AutoResolve",
"dataFlowProperties": {
"computeType": "General",
"coreCount": 8,
"timeToLive": 0
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "procfwkforsynapse-WorkspaceDefaultSqlServer",
"type": "Microsoft.Synapse/workspaces/linkedservices",
"properties": {
"typeProperties": {
"connectionString": "Data Source=tcp:procfwkforsynapse.sql.azuresynapse.net,1433;Initial Catalog=@{linkedService().DBName}"
},
"parameters": {
"DBName": {
"type": "String"
}
},
"type": "AzureSqlDW",
"connectVia": {
"referenceName": "AutoResolveIntegrationRuntime",
"type": "IntegrationRuntimeReference"
},
"annotations": []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"name": "procfwkforsynapse-WorkspaceDefaultStorage",
"type": "Microsoft.Synapse/workspaces/linkedservices",
"properties": {
"typeProperties": {
"url": "https://frameworkdatalake01.dfs.core.windows.net"
},
"type": "AzureBlobFS",
"connectVia": {
"referenceName": "AutoResolveIntegrationRuntime",
"type": "IntegrationRuntimeReference"
},
"annotations": []
}
}

0 comments on commit 554d50d

Please sign in to comment.