Closed ldshuai closed 1 year ago
Thanks for your reply.
I have changed DATAHUB_TELEMETRY_ENABLED
to false
in the compose file and restarted datahub, but it still doesn't work with the Ingestion
operation via UI
(althought whihout the UnknownHostException
).
My ingestion source configuration recipe:
source:
type: postgres
config:
host_port: 'xxx:5432'
database: xxx
username: postgres
include_tables: true
include_views: false
profiling:
enabled: true
profile_table_level_only: true
stateful_ingestion:
enabled: false
password: '${postgres_secret}'
schema_pattern:
allow:
- public
But it worked well with the same configuration above when I ingested data from CLI. CLI command:
datahub ingest -c postgresql_to_datahub.dbub.yaml
postgresql_to_datahub.dbub.yaml
file content:
source:
type: "postgres"
config:
host_port: xxx:5432
database: xxx
username: postgres
password: postgresql
include_tables: true
include_views: false
profiling:
enabled: true
profile_table_level_only: true
schema_pattern:
allow:
- 'public'
sink:
type: "datahub-rest"
config:
server: "http://localhost:8080"
Are there any mistakes?
i can't help much on UI ingestion as I never used it - been using CLI so far.
This issue is stale because it has been open for 30 days with no activity. If you believe this is still an issue on the latest DataHub release please leave a comment with the version that you tested it with. If this is a question/discussion please head to https://slack.datahubproject.io. For feature requests please use https://feature-requests.datahubproject.io
This issue was closed because it has been inactive for 30 days since being marked as stale.
Description
I downloaded all necessary docker images(https://datahubproject.io/docs/docker/) and imported them into my private offline environment. Follow the quickstart quide (https://datahubproject.io/docs/quickstart) I brought up all these images, and saw the output
✔ DataHub is now running
. But when I ingested data from postgres via UI, something was wrong. TheLast Status
was awaysPending
, and I got an error in containerdatahub-gms
as below:Steps
datahub CLI version:
0.10.0.6
datahub startup command:compose file:
docker-compose-without-neo4j-m1.quickstart.yml
indatahub-master/docker/quickstart/
Ingestion Source Courigure Recipe: