ReloadingResourceGroupConfig.java
/*
* 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 com.facebook.presto.resourceGroups.reloading;
import com.facebook.airlift.configuration.Config;
import com.facebook.airlift.configuration.ConfigDescription;
import io.airlift.units.Duration;
import io.airlift.units.MinDuration;
import static java.util.concurrent.TimeUnit.HOURS;
public class ReloadingResourceGroupConfig
{
private boolean exactMatchSelectorEnabled;
private Duration maxRefreshInterval = new Duration(1, HOURS);
@MinDuration("10s")
public Duration getMaxRefreshInterval()
{
return maxRefreshInterval;
}
@Config("resource-groups.max-refresh-interval")
@ConfigDescription("Time period for which the cluster will continue to accept queries after refresh failures cause configuration to become stale")
public ReloadingResourceGroupConfig setMaxRefreshInterval(Duration maxRefreshInterval)
{
this.maxRefreshInterval = maxRefreshInterval;
return this;
}
public boolean getExactMatchSelectorEnabled()
{
return exactMatchSelectorEnabled;
}
@Config("resource-groups.exact-match-selector-enabled")
@ConfigDescription("Enable and disables selectors being returned as an exact match selector if they match a given selection criteria")
public ReloadingResourceGroupConfig setExactMatchSelectorEnabled(boolean exactMatchSelectorEnabled)
{
this.exactMatchSelectorEnabled = exactMatchSelectorEnabled;
return this;
}
}