Hi I am curious where are `datasetProfile` aspect ...
# ingestion
m
Hi I am curious where are
datasetProfile
aspect physically in? I am seeing the dataset stats in the UI. I don't see them in db
Copy code
mysql> select * from metadata_aspect_v2 where aspect='datasetProfile'\G
Empty set (0.00 sec)
b
weird.. so you see stats on datasets in the UI but nothing shows up from that query above?
I'm curious why you have a
\G
at the end there instead of just finishing with a
;
?
m
b
gotcha - and thanks for that! learn something new every day.
could you post a screenshot of your stats tab on the entity you're looking for? and maybe we can try a query to get all aspects for that entity?
select * from metadata_aspect_v2 where urn=<entity_urn>;
m
In a meeting, will reply you in 30 min. Sorry
b
oh no worries at all, take your time
m
b
after looking at your gist it appears like we're getting
numRows
from the
schemaMetadata
aspect...
odd
b
dataset Profiles is stored in ES only, not mysql
👍 2