For example, the following command shows that buckets are occupied according to the table definition:
hive> SET hive.enforce.bucketing=true;
We can see the current value of any property by using SET with the property name. SET will list all the properties with their values set by Hive.
hive> SET hive.enforce.bucketing;
hive.enforce.bucketing=true
This list will not include the defaults of Hadoop. So, we should use the below code:
SET -v
It will list all the properties including the Hadoop defaults in the system.