File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
yt/cpp/mapreduce/interface Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -225,6 +225,7 @@ void TConfig::Reset()
225
225
" //tmp/yt_wrapper/table_storage" );
226
226
RemoteTempTablesDirectory = GetEnv (" YT_TEMP_DIR" ,
227
227
RemoteTempTablesDirectory);
228
+ KeepTempTables = GetBool (" YT_KEEP_TEMP_TABLES" );
228
229
229
230
InferTableSchema = false ;
230
231
Original file line number Diff line number Diff line change @@ -126,6 +126,9 @@ struct TConfig
126
126
127
127
TString RemoteTempFilesDirectory;
128
128
TString RemoteTempTablesDirectory;
129
+ // @brief Keep temp tables produced by TTempTable (despite their name). Should not be used in user programs,
130
+ // but may be useful for setting via environment variable for debugging purposes.
131
+ bool KeepTempTables = false ;
129
132
130
133
//
131
134
// Infer schemas for nonexstent tables from typed rows (e.g. protobuf)
You can’t perform that action at this time.
0 commit comments