io.trino.plugin.hive.metastore.cache.CachingHiveMetastoreConfig 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.metastore.cache;
import io.airlift.configuration.Config;
import io.airlift.units.Duration;
import io.airlift.units.MinDuration;
import javax.validation.constraints.Min;
import javax.validation.constraints.NotNull;
import java.util.Optional;
import java.util.concurrent.TimeUnit;
public class CachingHiveMetastoreConfig
{
private Duration metastoreCacheTtl = new Duration(0, TimeUnit.SECONDS);
// Use 5 mins for stats cache TTL by default. 5 mins will be sufficient to help
// significantly when there is high number of concurrent queries.
// 5 mins will also prevent stats from being stalled for a long time since
// time window where table data can be altered is limited.
private Duration statsCacheTtl = new Duration(5, TimeUnit.MINUTES);
private Optional metastoreRefreshInterval = Optional.empty();
private long metastoreCacheMaximumSize = 10000;
private int maxMetastoreRefreshThreads = 10;
private boolean partitionCacheEnabled = true;
@NotNull
public Duration getMetastoreCacheTtl()
{
return metastoreCacheTtl;
}
@Config("hive.metastore-cache-ttl")
public CachingHiveMetastoreConfig setMetastoreCacheTtl(Duration metastoreCacheTtl)
{
this.metastoreCacheTtl = metastoreCacheTtl;
return this;
}
@NotNull
public Duration getStatsCacheTtl()
{
return statsCacheTtl;
}
@Config("hive.metastore-stats-cache-ttl")
public CachingHiveMetastoreConfig setStatsCacheTtl(Duration statsCacheTtl)
{
this.statsCacheTtl = statsCacheTtl;
return this;
}
@NotNull
public Optional<@MinDuration("1ms") Duration> getMetastoreRefreshInterval()
{
return metastoreRefreshInterval;
}
@Config("hive.metastore-refresh-interval")
public CachingHiveMetastoreConfig setMetastoreRefreshInterval(Duration metastoreRefreshInterval)
{
this.metastoreRefreshInterval = Optional.ofNullable(metastoreRefreshInterval);
return this;
}
@Min(1)
public long getMetastoreCacheMaximumSize()
{
return metastoreCacheMaximumSize;
}
@Config("hive.metastore-cache-maximum-size")
public CachingHiveMetastoreConfig setMetastoreCacheMaximumSize(long metastoreCacheMaximumSize)
{
this.metastoreCacheMaximumSize = metastoreCacheMaximumSize;
return this;
}
@Min(1)
public int getMaxMetastoreRefreshThreads()
{
return maxMetastoreRefreshThreads;
}
@Config("hive.metastore-refresh-max-threads")
public CachingHiveMetastoreConfig setMaxMetastoreRefreshThreads(int maxMetastoreRefreshThreads)
{
this.maxMetastoreRefreshThreads = maxMetastoreRefreshThreads;
return this;
}
public boolean isPartitionCacheEnabled()
{
return partitionCacheEnabled;
}
@Config("hive.metastore-cache.cache-partitions")
public CachingHiveMetastoreConfig setPartitionCacheEnabled(boolean enabled)
{
this.partitionCacheEnabled = enabled;
return this;
}
}