- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
how to view hive cli settings
Created ‎10-10-2018 06:05 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
there are many parameters that we can set for a hive session like some shown below.
how can I see what currently is set in my hive session ?
set tez.grouping.split-count=4; set hive.enforce.bucketing = true; set hive.exec.dynamic.partition.mode = nonstrict;
Created ‎10-10-2018 06:09 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ok I found out that just typing "set" gives all the settings but its huge , any filters I can use with the "set" command?
Created ‎10-10-2018 06:16 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
To see all values of a session in
1)HS2
beeline --outputformat=tsv2 -u '<HS2_JDBC_URL> -e 'set -v' > session.txt
2) Cli
hive --outputformat=tsv2 -e 'set -v' > session.txt
If specific key to be searched, then after launching beeline or cli, use the specific keys as below
beeline> set hive.exec.dynamic.partition.mode;
If my suggestion helped to resolve your query, accept the answer. It might help others in the community.
Created ‎10-10-2018 06:18 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can run the below command
set;
For ex: If you want to check the params that are set to true, then you can run
hive -e 'set;' | grep true
.
-Aditya
