Setup a Drill connection
drill_connection(host = Sys.getenv("DRILL_HOST", "localhost"), port = Sys.getenv("DRILL_PORT", 8047), ssl = FALSE, user = Sys.getenv("DRILL_USER", ""), password = Sys.getenv("DRILL_PASSWORD", ""))
host | Drill host (will pick up the value from |
---|---|
port | Drill port (will pick up the value from |
ssl | use ssl? |
user, password | NOT IMPLEMENTED YET credentials for username/password auth.
(will pick up the values from |
dc <- drill_connection()