Hello again, I have ingested data from PostgreSQL ...
# ingestion
m
Hello again, I have ingested data from PostgreSQL with the profiling enabled. I was specting to have the "Queries" tab enabled as well as the "Stats", but the former one wasn't enabled. Is anything else needed to enable that tab?? Thanks in advance!!
The recipe of PostgreSQL
Copy code
sink:
    type: datahub-rest
    config:
        server: '<http://datahub-gms:8080>'
source:
    type: postgres
    config:
        database: testdb
        password: ****
        profiling:
            max_workers: 20
            enabled: true
        host_port: 'postgresql:5432'
        username: ***
d
We currently support queries with some sources like Bigquery, Snowflake, Redshift, etc.. You can check on the source docs what is supported and what is not. Usually, it is implemented for sources that have native audit log support. (being able to access the query history)
m
Thanks for the help!! :)