io.druid.query.lookup.namespace.ExtractionNamespaceCacheFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of druid-lookups-cached-global Show documentation
Show all versions of druid-lookups-cached-global Show documentation
Extension to rename Druid dimension values using namespaces
/*
* Licensed to Metamarkets Group Inc. (Metamarkets) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. Metamarkets licenses this file
* to you 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.druid.query.lookup.namespace;
import java.util.Map;
import java.util.concurrent.Callable;
/**
*
*/
public interface ExtractionNamespaceCacheFactory
{
/**
* This function is called once if `ExtractionNamespace.getUpdateMs() == 0`, or every update if
* `ExtractionNamespace.getUpdateMs() > 0`
* For ExtractionNamespace which have the NamespaceExtractionCacheManager handle regular updates, this function
* is used to populate the namespace cache each time.
* For ExtractionNamespace implementations which do not have regular updates, this function can be used to
* initialize resources.
* If the result of the Callable is the same as what is passed in as lastVersion, then no swap takes place, and the swap is discarded.
*
* @param id The ID of ExtractionNamespace
* @param extractionNamespace The ExtractionNamespace for which to populate data.
* @param lastVersion The version which was last cached
* @param swap The temporary Map into which data may be placed and will be "swapped" with the proper
* namespace Map in NamespaceExtractionCacheManager. Implementations which cannot offer
* a swappable cache of the data may ignore this but must make sure `buildFn(...)` returns
* a proper Function.
*
* @return A callable that will be used to refresh resources of the namespace and return the version string used in
* the populating
*/
Callable getCachePopulator(String id, T extractionNamespace, String lastVersion, Map swap);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy