Good day, I'm trying to perform my first ingestio...
# getting-started
f
Good day, I'm trying to perform my first ingestion of dbt data via datahub, but keep getting the error:
Copy code
[2022-06-30 19:34:16,095] WARNING  {urllib3.connectionpool:810} - Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f09ce5c2100>: Failed to establish a new connection: [Errno 111] Connection refused')': //config
Has this ever happened to anyone? Any solves?
This is my .yml
Copy code
source:
  type: "dbt"
  config:
    # Coordinates
    # To use this as-is, set the environment variable DBT_PROJECT_ROOT to the root folder of your dbt project
    manifest_path: "/project/.meltano/transformers/dbt/target/manifest_file.json"
    catalog_path: "/project/.meltano/transformers/dbt/target/catalog_file.json"
    sources_path: "/project/.meltano/transformers/dbt/target/sources_file.json"  # optional for freshness
    test_results_path: "/project/.meltano/transformers/dbt/target/run_results.json" # optional for recording dbt test results after running dbt test

    # Options
    target_platform: "bigquery" # e.g. bigquery/postgres/etc.
    load_schemas: False # note: enable this only if you are not ingesting metadata from your warehouse

# sink configs
sink:
  type: "datahub-rest"
  config:
    server: "<http://localhost:8080>"