Hello, I have question. Data was imported using a ...
# ingestion
s
Hello, I have question. Data was imported using a hive recipe. When I did
show databases
, there was no
none
DB, but it was created. This is Hive Recipe
Copy code
source:
    type: hive
    config:
      host_port: ip:port
      username: id
      password: pw
      env: DEV
      platform: hive
      schema_pattern:
        allow:
          - 'dev_db_.*'
      domain:
        test:
          allow:
            - '.*'
      options:
       connect_args:
          auth: LDAP

sink:
    type: datahub-rest
    config:
      server: "<http://localhost:8080>"
c
There seems to be some issue here. I am able to reproduce it on my side. Will get back with the solution.
d
I think the problem is that in Hive there is no such thing like Database but we try to create it.
f
So what is the final solution in such situations?
@dazzling-judge-80093 Are there any propositions about displaying such "none" databases?
d
@full-shoe-73099 I highly recommend to use our Presto On Hive source if you can which is much faster than then Hive source as it connects directly to the Hive Metastore Db to get the metadata -> https://datahubproject.io/docs/generated/ingestion/sources/presto-on-hive/#module-presto-on-hive If you can’t directly connect to the metastore and/or you want to run profiler as well then the Hive source is your only option