#include "statestore/query-schedule.h"
#include <sstream>
#include <boost/algorithm/string/join.hpp>
#include <boost/foreach.hpp>
#include <boost/uuid/uuid.hpp>
#include <boost/uuid/uuid_generators.hpp>
#include "util/container-util.h"
#include "util/mem-info.h"
#include "util/network-util.h"
#include "util/uid-util.h"
#include "util/debug-util.h"
#include "util/parse-util.h"
#include "util/llama-util.h"
#include "common/names.h"
Go to the source code of this file.
|
| impala |
| This file contains type definitions that are used throughout the code base.
|
|
|
| DEFINE_bool (rm_always_use_defaults, false,"If true, all queries use the same initial"" resource requests regardless of their computed resource estimates. Only meaningful ""if --enable_rm is set.") |
|
| DEFINE_string (rm_default_memory,"4G","The initial amount of memory that"" a query should reserve on each node if either it does not have an available ""estimate, or if --rm_always_use_defaults is set.") |
|
| DEFINE_int32 (rm_default_cpu_vcores, 2,"The initial number of virtual cores that"" a query should reserve on each node if either it does not have an available ""estimate, or if --rm_always_use_defaults is set.") |
|
DEFINE_bool |
( |
rm_always_use_defaults |
, |
|
|
false |
, |
|
|
"If |
true, |
|
|
all queries use the same initial""resource requests regardless of their computed resource estimates.Only meaningful""if--enable_rm is set." |
|
|
) |
| |
DEFINE_int32 |
( |
rm_default_cpu_vcores |
, |
|
|
2 |
, |
|
|
"The initial number of virtual cores that"" a query should reserve on each node if either it does not have an available "" |
estimate, |
|
|
or if--rm_always_use_defaults is set." |
|
|
) |
| |
DEFINE_string |
( |
rm_default_memory |
, |
|
|
"4G" |
, |
|
|
"The initial amount of memory that"" a query should reserve on each node if either it does not have an available "" |
estimate, |
|
|
or if--rm_always_use_defaults is set." |
|
|
) |
| |