Skip to content

Commit f1696b1

Browse files
authored
Merge pull request #899 from cloudmelon/appdeploy-ssis
Appdeploy ssis
2 parents a2e053e + 66ea3c8 commit f1696b1

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

samples/features/sql-big-data-cluster/app-deploy/SSIS/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ To run this sample, you need the following prerequisites.
4949
Once the app is listed as `Ready` the job should run within a minute.
5050
You can check if the backup is created by running:
5151
```bash
52-
kubectl -n [your namespace] exec -it mssql-master-pool-0 -c mssql-server -- /bin/bash -c "ls /var/opt/mssql/data/*.DWConfigbak"
52+
kubectl -n [your namespace] exec -it master-0 -c mssql-server -- /bin/bash -c "ls /var/opt/mssql/data/*.DWConfigbak"
5353
```
5454
You should see a backup being created for every run of the job, with a maximum of 60 backups since the SSIS package cleans up backups older than one hour.
5555
You can use any of the `.DWConfigbak` files to restore the database.
@@ -80,7 +80,7 @@ name: back-up-db
8080
version: v1
8181
runtime: SSIS
8282
entrypoint: ./back-up-db.dtsx
83-
options: /REP V /CONN "MasterSQL"\;"\"Data Source=service-master-pool;User ID=sa;Initial Catalog=master;Password=[SA_PASSWORD]\""
83+
options: /REP V /CONN "MasterSQL"\;"\"Data Source=master-svc;User ID=sa;Initial Catalog=master;Password=[SA_PASSWORD]\""
8484
schedule: "*/1 * * * *"
8585
```
8686

samples/features/sql-big-data-cluster/app-deploy/SSIS/spec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ name: back-up-db
22
version: v1
33
runtime: SSIS
44
entrypoint: ./back-up-db.dtsx
5-
options: /REP V /CONN "MasterSQL"\;"\"Data Source=master-0;User ID=sa;Initial Catalog=master;Password=[SA_PASSWORD]\""
5+
options: /REP V /CONN "MasterSQL"\;"\"Data Source=master-svc;User ID=sa;Initial Catalog=master;Password=[SA_PASSWORD]\""
66
schedule: "*/1 * * * *"

0 commit comments

Comments
 (0)