Siba Prasad Nayak
04/02/2025, 3:50 AMmeltano config
. To configure a specific environment, please use the option --environment=<environment name>
.
(meltanoEnv) PS C:\Siba_\Work\POC_ConnectorFactory\Gerrit\Connector_Factory_Development\meltano-backend>
I am getting no values.
Is it the right way to set configuration if I want to use env variables.
The purpose is not to store the config parameters in meltano.yml file.
note: there is no .env file under my meltano project root directory.
Thanks in advance !Reuben (Matatika)
04/02/2025, 7:59 AMMELTANO_SETTING_
prefix, then I think you're good to go.visch
04/02/2025, 12:13 PMmeltano config tap-postgres list
will list out what everything is currently set to and where it's coming from which can be very helpful in debugging this kind of thing! (@Reuben (Matatika) is right)Siba Prasad Nayak
04/02/2025, 1:01 PMmeltano config tap-postgres list
comes as blank.
- name: tap-postgres
namespace: tap_postgres
pip_url: ./connectors/tap-postgres
executable: tap-postgres
capabilities:
- state
- catalog
- discover
- metrics
- about
- stream-maps
- inline-schemas
# config:
# database: meltano
# host: localhost
# port: 5432
# user: postgres
# password: ******
# filter_schemas: [public]
# sqlalchemy_url: <postgresql://postgres:siba1234@localhost:5432/meltano>
# select:
# #- '*.*'
# - public-employees.*
I have set the env variable for this shell.
(meltanoEnv) PS C:\Siba_\Work\POC_ConnectorFactory\Gerrit\Connector_Factory_Development\meltano-backend> Get-ChildItem Env:TAP_POSTGRES_* | Format-Table Name, Value
Name Value
---- -----
TAP_POSTGRES_SQLALCHEMY_URL <postgresql://postgres:siba1234@localhost:5432/meltano>
TAP_POSTGRES_HOST localhost
TAP_POSTGRES_DATABASE meltano
TAP_POSTGRES_USER postgres
TAP_POSTGRES_PORT 5432
TAP_POSTGRES_PASSWORD *****
TAP_POSTGRES_FILTER_SCHEMAS harman
(meltanoEnv) PS C:\Siba_\Work\POC_ConnectorFactory\Gerrit\Connector_Factory_Development\meltano-backend>
The output is coming as blank. Not sure why !!!
(meltanoEnv) PS C:\Siba_\Work\POC_ConnectorFactory\Gerrit\Connector_Factory_Development\meltano-backend> meltano config tap-postgres list
2025-04-02T13:00:29.222183Z [warning ] Failed to create symlink to 'meltano.exe': administrator privilege required
2025-04-02T13:00:29.233587Z [info ] The default environment 'dev' will be ignored for `meltano config`. To configure a specific environment, please use the option `--environment=<environment name>`.
(meltanoEnv) PS C:\Siba_\Work\POC_ConnectorFactory\Gerrit\Connector_Factory_Development\meltano-backend>
visch
04/02/2025, 1:13 PMSiba Prasad Nayak
04/02/2025, 1:38 PMmeltano install extractor tap-postgres
https://github.com/MeltanoLabs/tap-postgresSiba Prasad Nayak
04/02/2025, 1:41 PMsettings:
section for tap-postgres ??Reuben (Matatika)
04/02/2025, 2:47 PMsettings
.