nice-country-99675
10/22/2021, 2:40 PMdatahub
locally (using docker images) and I ran a ingestion to load some metadata from postgres... everything seem to be executed properly... no failures or warnings in the sink, plus about 116 records written. But I cannot see any dataset in the frontend. Do I need to run something else beyond datahub ingest run
? I'm using the default datahub
user, so I don't know how this user is related to the data ingested...better-orange-49102
10/22/2021, 4:30 PMnice-country-99675
10/22/2021, 4:49 PMsource:
type: postgres
config:
# Coordinates
host_port: <....>.<http://rds.amazonaws.com:5432|rds.amazonaws.com:5432>
database: mydb
# Credentials
username: myuser
password: <....>
# Options
database_alias: mydb
env: PROD
sink:
type: "datahub-rest"
config:
server: "<http://localhost:8080>"
nice-country-99675
10/22/2021, 4:49 PMnice-country-99675
10/22/2021, 4:58 PMnice-country-99675
10/22/2021, 4:59 PMunable to map type UUID() to metadata schema
we have several primary keys defined as uuidbetter-orange-49102
10/22/2021, 5:03 PMdocker exec -it mysql /bin/sh
mysql -u datahub -h localhost -p
or u could try looking into the ES index and see if there are any records.
though frankly if there are records ingested inside, i've no idea whats causing the lack of datasets in the UI. maybe some rendering bug?nice-country-99675
10/22/2021, 5:41 PMdatabub
database... metadata_aspect_v2
with 577 records and metadata_index
with 0 records... maybe I need to run some index process to fill that table..nice-country-99675
10/22/2021, 5:44 PMmetadata_aspect_v2
are actually the metadata from my postgres databasenice-country-99675
10/22/2021, 8:56 PMbetter-orange-49102
10/23/2021, 12:51 AMbetter-orange-49102
10/23/2021, 12:53 AMearly-lamp-41924
10/23/2021, 3:09 AMearly-lamp-41924
10/23/2021, 3:10 AMnice-country-99675
10/23/2021, 2:31 PMelasticsearch
logs and I found that indexes were read only due to the lack of space in docker's disk configuration... so I increase it and now ingestion worked properly! thank you so much!early-lamp-41924
10/23/2021, 11:24 PM