wonderful-egg-79350
10/24/2022, 5:44 AMvictorious-author-66803
10/24/2022, 7:10 AMdazzling-alarm-64985
10/24/2022, 8:09 AMaverage-dinner-25106
10/24/2022, 8:28 AMquiet-wolf-56299
10/24/2022, 1:13 PMcuddly-greece-84260
10/24/2022, 2:06 PMwide-musician-39968
10/25/2022, 5:32 AMdocker pull --platform linux/amd64 neo4j:4.2.4
before Helm install because of imagepull backoff
• Command docker pull --platform linux/amd64 acryldata/datahub-actions:v0.0.7
before Helm install because of imagepull backoff
• Edit Elasticsearch config in prerequisites because I run this on single node cluster
â—¦ replicas: *1
,* minimumMasterNodes: *1
,* antiAffinity: "soft"
, clusterHealthCheckParams: "wait_for_status=yellow&timeout=1s"
• Edit datahub-gms config because I got 0/1 nodes are available: 1 node(s) didn't have free ports for the requested pod ports. preemption: 0/1 nodes are available: 1 No preemption victims found for incoming pod.
from pod svclb-dataiub-datahub-gms
. Actually when I redeploy data hub, either svclb-dataiub-datahub-gms
or svclb-datahub-datahub-frontend
got this error.
Then I deploy Postgresql(https://artifacthub.io/packages/helm/bitnami/postgresql) to same cluster. And I make one table
I create Ingestion from UI and below is my yaml setting.
source:
type: postgres
config:
include_tables: true
database: test
password: '${secret}'
profiling:
enabled: false
host_port: 'test-postgresql:5432'
include_views: true
stateful_ingestion:
enabled: true
username: postgres
pipeline_name: 'urn:li:dataHubIngestionSource:21f75ec0-4034-401f-82bc-edf8f5d0e259'
sink:
type: datahub-rest
config:
server: '<http://datahub-datahub-gms:8080>'
And this is ingestion failed log
~~~~ Execution Summary ~~~~
RUN_INGEST - {'errors': [],
'exec_id': '7a6c8d3f-43cb-4d7c-aae6-a568423d2518',
'infos': ['2022-10-25 04:08:20.614216 [exec_id=7a6c8d3f-43cb-4d7c-aae6-a568423d2518] INFO: Starting execution for task with name=RUN_INGEST',
'2022-10-25 04:08:41.826105 [exec_id=7a6c8d3f-43cb-4d7c-aae6-a568423d2518] INFO: stdout=venv setup time = 0\n'
'This version of datahub supports report-to functionality\n'
'datahub --debug ingest run -c /tmp/datahub/ingest/7a6c8d3f-43cb-4d7c-aae6-a568423d2518/recipe.yml --report-to '
'/tmp/datahub/ingest/7a6c8d3f-43cb-4d7c-aae6-a568423d2518/ingestion_report.json\n'
'[2022-10-25 04:08:29,691] DEBUG {datahub.telemetry.telemetry:206} - Sending init Telemetry\n'
'[2022-10-25 04:08:30,184] DEBUG {datahub.telemetry.telemetry:239} - Sending Telemetry\n'
'[2022-10-25 04:08:30,399] INFO {datahub.cli.ingest_cli:177} - DataHub CLI version: 0.8.43.5\n'
"[2022-10-25 04:08:30,412] DEBUG {datahub.cli.ingest_cli:189} - Using config: {'pipeline_name': "
"'urn:li:dataHubIngestionSource:21f75ec0-4034-401f-82bc-edf8f5d0e259', 'run_id': '7a6c8d3f-43cb-4d7c-aae6-a568423d2518', 'sink': "
"{'config': {'server': '<http://10.42.0.143:8080>'}, 'type': 'datahub-rest'}, 'source': {'config': {'database': 'test', 'host_port': "
"'10.42.0.148:5432', 'include_tables': True, 'include_views': True, 'password': 'Z2gUhyBPv2', 'profiling': {'enabled': False}, "
"'stateful_ingestion': {'enabled': True}, 'username': 'postgres'}, 'type': 'postgres'}}\n"
'[2022-10-25 04:08:30,479] DEBUG {datahub.ingestion.sink.datahub_rest:125} - Setting env variables to override config\n'
'[2022-10-25 04:08:30,479] DEBUG {datahub.ingestion.sink.datahub_rest:127} - Setting gms config\n'
'[2022-10-25 04:08:30,479] DEBUG {datahub.ingestion.run.pipeline:162} - Sink type:datahub-rest,<class '
"'datahub.ingestion.sink.datahub_rest.DatahubRestSink'> configured\n"
'[2022-10-25 04:08:30,480] INFO {datahub.ingestion.run.pipeline:163} - Sink configured successfully. DataHubRestEmitter: configured '
'to talk to <http://10.42.0.143:8080>\n'
'[2022-10-25 04:08:30,480] DEBUG {datahub.ingestion.run.pipeline:253} - Reporter type:file,<class '
"'datahub.ingestion.reporting.file_reporter.FileReporter'> configured.\n"
'/usr/local/bin/run_ingest.sh: line 40: 452 Killed ( datahub ${debug_option} ingest run -c "${recipe_file}" '
'${report_option} )\n',
"2022-10-25 04:08:41.826607 [exec_id=7a6c8d3f-43cb-4d7c-aae6-a568423d2518] INFO: Failed to execute 'datahub ingest'",
'2022-10-25 04:08:41.830033 [exec_id=7a6c8d3f-43cb-4d7c-aae6-a568423d2518] INFO: Caught exception EXECUTING '
'task_id=7a6c8d3f-43cb-4d7c-aae6-a568423d2518, name=RUN_INGEST, stacktrace=Traceback (most recent call last):\n'
' File "/usr/local/lib/python3.10/site-packages/acryl/executor/execution/default_executor.py", line 123, in execute_task\n'
' task_event_loop.run_until_complete(task_future)\n'
' File "/usr/local/lib/python3.10/asyncio/base_events.py", line 646, in run_until_complete\n'
' return future.result()\n'
' File "/usr/local/lib/python3.10/site-packages/acryl/executor/execution/sub_process_ingestion_task.py", line 168, in execute\n'
' raise TaskError("Failed to execute \'datahub ingest\'")\n'
"acryl.executor.execution.task.TaskError: Failed to execute 'datahub ingest'\n"]}
Execution finished with errors.
I can’t find what makes fail. Do you know what is wrong?
And any good way to debug this issue?quiet-wolf-56299
10/25/2022, 3:25 PMprehistoric-fireman-61692
10/27/2022, 10:06 PMbitter-furniture-95993
10/28/2022, 3:14 PMmicroscopic-tailor-94417
10/31/2022, 7:30 AMbreezy-shoe-41523
10/31/2022, 11:57 AMbreezy-shoe-41523
10/31/2022, 11:58 AMmodern-garden-35830
10/31/2022, 12:51 PMcareful-france-26343
11/01/2022, 12:41 AMnice-zebra-54018
11/02/2022, 5:47 AMdazzling-alarm-64985
11/02/2022, 8:56 AM"ANTLR Tool version 4.5 used for code generation does not match the current runtime version 4.7.2ANTLR Runtime version 4.5 used for parser compilation does not match the current runtime version 4.7.2ANTLR Tool version 4.5 used for code generation does not match the current runtime version 4.7.2ANTLR Runtime version 4.5 used for parser compilation does not match the current runtime version 4.7.2"
rich-pencil-57339
11/02/2022, 12:18 PMquiet-wolf-56299
11/02/2022, 2:49 PMquiet-wolf-56299
11/02/2022, 2:51 PMquiet-wolf-56299
11/02/2022, 3:52 PMhallowed-lizard-92381
11/03/2022, 3:02 AMfew-air-34037
11/03/2022, 9:04 AMfaint-actor-78390
11/03/2022, 10:46 AMaverage-dinner-25106
11/04/2022, 3:57 AMripe-eye-60209
11/04/2022, 11:41 AMshy-garden-57011
11/04/2022, 1:06 PMgreen-intern-1667
11/04/2022, 4:36 PMTest Connection
button I can only see Testing you connection for several minutes
.
Any clue on that?gifted-rocket-7960
11/07/2022, 5:16 AMcolossal-laptop-87082
11/07/2022, 6:10 AM