atif_imam
11/01/2021, 4:49 AMdockerfile
create docker . I am using tap-mysql and target-redshift . The issue is when I am adding passwords it is writing to system-db
but it is unable to retrieve the passwords and fails with catalog discovery error.
@aaronsteers . Your help will be appreciated.steve_clarke
11/01/2021, 5:50 AM- name: tap-mssql
namespace: tap_mssql
pip_url: git+<https://github.com/s7clarke10/pipelinewise-tap-mssql.git>
executable: tap-mssql
capabilities:
- catalog
- discover
- properties
- state
settings:
- name: host
kind: string
- name: port
kind: string
- name: user
kind: string
- name: password
kind: password
- name: database
kind: string
select:
- HumanResources-Department.*
- HumanResources-Employee.*
I also have some setting in a .env if I am running it locally for my credentials.
####################################
# Setting for Extractor MSSQL #
####################################
TAP_MSSQL_HOST=myhost
TAP_MSSQL_PORT=1433
TAP_MSSQL_USER=my_user
TAP_MSSQL_PASSWORD=My_password
TAP_MSSQL_DATABASE=AdventureWorks2016
TAP_MSSQL_USE_DATE_DATATYPE=true
atif_imam
11/01/2021, 5:52 AMsteve_clarke
11/01/2021, 6:13 AMsteve_clarke
11/01/2021, 9:26 AM