![JAR search and dependency download from the Maven repository](/logo.png)
io.trino.plugin.hive.HiveFormatsConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trino-hive Show documentation
Show all versions of trino-hive Show documentation
This is a Databricks build of Trino's Hive plugin which includes support for HTTP based transport
for it's Hive metastore thrift interface.
The newest version!
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.trino.plugin.hive;
import io.airlift.configuration.Config;
import io.airlift.configuration.ConfigDescription;
public class HiveFormatsConfig
{
private boolean csvNativeReaderEnabled = true;
private boolean csvNativeWriterEnabled = true;
private boolean jsonNativeReaderEnabled = true;
private boolean jsonNativeWriterEnabled = true;
private boolean regexNativeReaderEnabled = true;
private boolean textFileNativeReaderEnabled = true;
private boolean textFileNativeWriterEnabled = true;
private boolean sequenceFileNativeReaderEnabled = true;
private boolean sequenceFileNativeWriterEnabled = true;
public boolean isCsvNativeReaderEnabled()
{
return csvNativeReaderEnabled;
}
@Config("csv.native-reader.enabled")
@ConfigDescription("Use native CSV reader")
public HiveFormatsConfig setCsvNativeReaderEnabled(boolean csvNativeReaderEnabled)
{
this.csvNativeReaderEnabled = csvNativeReaderEnabled;
return this;
}
public boolean isCsvNativeWriterEnabled()
{
return csvNativeWriterEnabled;
}
@Config("csv.native-writer.enabled")
@ConfigDescription("Use native CSV writer")
public HiveFormatsConfig setCsvNativeWriterEnabled(boolean csvNativeWriterEnabled)
{
this.csvNativeWriterEnabled = csvNativeWriterEnabled;
return this;
}
public boolean isJsonNativeReaderEnabled()
{
return jsonNativeReaderEnabled;
}
@Config("json.native-reader.enabled")
@ConfigDescription("Use native JSON reader")
public HiveFormatsConfig setJsonNativeReaderEnabled(boolean jsonNativeReaderEnabled)
{
this.jsonNativeReaderEnabled = jsonNativeReaderEnabled;
return this;
}
public boolean isJsonNativeWriterEnabled()
{
return jsonNativeWriterEnabled;
}
@Config("json.native-writer.enabled")
@ConfigDescription("Use native JSON writer")
public HiveFormatsConfig setJsonNativeWriterEnabled(boolean jsonNativeWriterEnabled)
{
this.jsonNativeWriterEnabled = jsonNativeWriterEnabled;
return this;
}
public boolean isRegexNativeReaderEnabled()
{
return regexNativeReaderEnabled;
}
@Config("regex.native-reader.enabled")
@ConfigDescription("Use native REGEX reader")
public HiveFormatsConfig setRegexNativeReaderEnabled(boolean regexNativeReaderEnabled)
{
this.regexNativeReaderEnabled = regexNativeReaderEnabled;
return this;
}
public boolean isTextFileNativeReaderEnabled()
{
return textFileNativeReaderEnabled;
}
@Config("text-file.native-reader.enabled")
@ConfigDescription("Use native text file reader")
public HiveFormatsConfig setTextFileNativeReaderEnabled(boolean textFileNativeReaderEnabled)
{
this.textFileNativeReaderEnabled = textFileNativeReaderEnabled;
return this;
}
public boolean isTextFileNativeWriterEnabled()
{
return textFileNativeWriterEnabled;
}
@Config("text-file.native-writer.enabled")
@ConfigDescription("Use native text file writer")
public HiveFormatsConfig setTextFileNativeWriterEnabled(boolean textFileNativeWriterEnabled)
{
this.textFileNativeWriterEnabled = textFileNativeWriterEnabled;
return this;
}
public boolean isSequenceFileNativeReaderEnabled()
{
return sequenceFileNativeReaderEnabled;
}
@Config("sequence-file.native-reader.enabled")
@ConfigDescription("Use native sequence file reader")
public HiveFormatsConfig setSequenceFileNativeReaderEnabled(boolean sequenceFileNativeReaderEnabled)
{
this.sequenceFileNativeReaderEnabled = sequenceFileNativeReaderEnabled;
return this;
}
public boolean isSequenceFileNativeWriterEnabled()
{
return sequenceFileNativeWriterEnabled;
}
@Config("sequence-file.native-writer.enabled")
@ConfigDescription("Use native sequence file writer")
public HiveFormatsConfig setSequenceFileNativeWriterEnabled(boolean sequenceFileNativeWriterEnabled)
{
this.sequenceFileNativeWriterEnabled = sequenceFileNativeWriterEnabled;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy