@MattPatt
There are two options
1. Temporary setup. Go to Hue -> Hive query editor and set up your configuration
Ex:
set hive.support.concurrency=true;
set hive.enforce.bucketing=true;
To get the current value, you can run it before & after setup
set hive.support.concurrency;
set hive.enforce.bucketing;
2. Permanent setup: As your admin to Go to Cloudera Manager -> Hive -> Configuration -> search for HiveServer2 Advanced Configuration Snippet (Safety Valve) and update the rqeuired properties as follows
Ex:
<property>
<name>hive.support.concurrency</name>
<value>true</value>
</property>
Note: The Temporary setup will influence only your scripts but Permanent setup will influence all the script executions. so think twice and take the necessary action