I am running Spyder 3.2.8 on Ubuntu 17.10.
I would like to pass Hive that is on remote cluster to give names to column names using the set hive.cli.print.header=true;
command.
Here is what I have done so far:
con = hive.Connection(host="name",
port=some port,
username="usr",
configuration='hive.cli.print.header = True')
What is the right way to set configuration, I can't find even one working example.