Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions common/src/java/org/apache/hadoop/hive/conf/HiveConf.java
Original file line number Diff line number Diff line change
Expand Up @@ -762,6 +762,9 @@ public static enum ConfVars {
+ "threads that can be used for collection of file level statistics. If the value configured is x, then the "
+ "maximum number of threads that can be used is x multiplied by the number of available processors. A value"
+ " of less than 1, makes stats collection sequential."),
ATS_HOOK_QUEUE_CAPACITY("hive.ats.hook.queue.capacity", 64,
"Queue size for the ATS Hook executor. If the number of outstanding submissions \n" +
"to the ATS executor exceed this amount, the Hive ATS Hook will not try to log queries to ATS."),
EXEC_PARALLEL("hive.exec.parallel", false, "Whether to execute jobs in parallel"),
EXEC_PARALLEL_THREAD_NUMBER("hive.exec.parallel.thread.number", 8,
"How many jobs at most can be executed in parallel"),
Expand Down
Loading