Good day everyone, I am facing a "problem" with Po...
# ingestion
m
Good day everyone, I am facing a "problem" with PostgreSQL ingestion. I am trying to ingest from all the databases that exist in my PostgreSQL using the postgres user but, although the ingestion succeeds, no data is ingested. But if I ingest one database at a time with the same user, it is ingested correctly. Does anybody know why this might be happening? (I will upload both the recipe that I use for all the databases ingestion and the resultant log in the thread)
Recipe:
Copy code
sink:
    type: datahub-rest
    config:
        server: '<http://datahub-gms:8080>'
source:
    type: postgres
    config:
        database: null
        password: '${POSTGRES_PASSWORD}'
        profiling:
            enabled: true
        host_port: 'postgresql:5432'
        username: postgres
d
This
database: null
looks a bit odd
m
Isn't that the way to indicate that it should ingest from all the databases that exist in such source??
d
ahh, I guess the same happens if you omit the
database
property, right?
m
That is right, at least it was in previous versions
Hello @dazzling-judge-80093, any news on how to avoid this strange behaviour and be able to ingest from all the databases of a postgres?