Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -1660,31 +1660,6 @@ public SystemSessionProperties(
"spilling partition number for hash join and RowNumber: 2 ^ N",
3,
false),
booleanProperty(
NATIVE_EXECUTION_ENABLED,
"Enable execution on native engine",
featuresConfig.isNativeExecutionEnabled(),
false),
stringProperty(
NATIVE_EXECUTION_EXECUTABLE_PATH,
"The native engine executable file path for native engine execution",
featuresConfig.getNativeExecutionExecutablePath(),
false),
stringProperty(
NATIVE_EXECUTION_PROGRAM_ARGUMENTS,
"Program arguments for native engine execution. The main target use case for this " +
"property is to control logging levels using glog flags. E,g, to enable verbose mode, add " +
"'--v 1'. More advanced glog gflags usage can be found at " +
"https://rpg.ifi.uzh.ch/docs/glog.html\n" +
"e.g. --vmodule=mapreduce=2,file=1,gfs*=3 --v=0\n" +
"will:\n" +
"\n" +
"a. Print VLOG(2) and lower messages from mapreduce.{h,cc}\n" +
"b. Print VLOG(1) and lower messages from file.{h,cc}\n" +
"c. Print VLOG(3) and lower messages from files prefixed with \"gfs\"\n" +
"d. Print VLOG(0) and lower messages from elsewhere",
featuresConfig.getNativeExecutionProgramArguments(),
false),
booleanProperty(
NATIVE_EXECUTION_PROCESS_REUSE_ENABLED,
"Enable reuse the native process within the same JVM",
Expand Down