In the command line, I can enter hive
to get hive shell like:
hive>
then execute some queries.
Now I need write a python script with PyHive to execute some tasks, like:
conn = hive.Connection(host="10.111.22.11", port=10000, username="user1")
Where can I find the host, port, username, password used by shell?