All Downloads are FREE. Search and download functionalities are using the official Maven repository.

presto.presto-product-tests.0.154.source-code.tempto-configuration.yaml Maven / Gradle / Ivy

There is a newer version: 0.290
Show newest version
hdfs:
  username: hdfs
  webhdfs:
    host: ${databases.hive.host}
    port: 50070

presto_rest:
  base_uri: http://${databases.presto.server_address}/

databases:
  default:
    alias: presto

  hive:
    host: hadoop-master
    path: /user/hive/warehouse/
    jdbc_driver_class: org.apache.hive.jdbc.HiveDriver
    jdbc_url: jdbc:hive2://${databases.hive.host}:10000
    jdbc_user: hdfs
    jdbc_password: na
    jdbc_pooling: false
    schema: default
    prepare_statement: USE ${databases.hive.schema}
    table_manager_type: hive
    warehouse_directory_path: /user/hive/warehouse

  presto:
    host: localhost
    server_address: ${databases.presto.host}:8080
    jdbc_driver_class: com.facebook.presto.jdbc.PrestoDriver
    jdbc_url: jdbc:presto://${databases.presto.server_address}/hive/${databases.hive.schema}
    jdbc_user: hdfs
    jdbc_password: na
    jdbc_pooling: false

  alice@presto:
    host: localhost
    server_address: ${databases.presto.host}:8080
    jdbc_driver_class: ${databases.presto.jdbc_driver_class}
    jdbc_url: jdbc:presto://${databases.presto.server_address}/hive/${databases.hive.schema}
    jdbc_user: alice
    jdbc_password: na
    jdbc_pooling: false

  bob@presto:
    host: localhost
    server_address: ${databases.presto.host}:8080
    jdbc_driver_class: ${databases.presto.jdbc_driver_class}
    jdbc_url: jdbc:presto://${databases.presto.server_address}/hive/${databases.hive.schema}
    jdbc_user: bob
    jdbc_password: na
    jdbc_pooling: false

  mysql:
    jdbc_driver_class: com.mysql.jdbc.Driver
    jdbc_url: jdbc:mysql://mysql:13306/test
    jdbc_user: root
    jdbc_password: swarm
    jdbc_pooling: true
    table_manager_type: jdbc

  postgres:
    jdbc_driver_class: org.postgresql.Driver
    jdbc_url: jdbc:postgresql://postgres:15432/test
    jdbc_user: swarm
    jdbc_password: swarm
    jdbc_pooling: true
    table_manager_type: jdbc

tests:
  hdfs:
    path: /product-test
  assert:
    float_tolerance: 0.000001





© 2015 - 2025 Weber Informatics LLC | Privacy Policy