Package com.linkedin.venice.helix
Class HelixReadOnlyStoreConfigRepository
- java.lang.Object
-
- com.linkedin.venice.helix.HelixReadOnlyStoreConfigRepository
-
- All Implemented Interfaces:
ReadOnlyStoreConfigRepository
,VeniceResource
public class HelixReadOnlyStoreConfigRepository extends java.lang.Object implements ReadOnlyStoreConfigRepository, VeniceResource
This class is used to fetch all store configs from ZK and cached locally, then provide the way to read those configs. Also it will listen on the store configs change event and keep the cache up to date. This class is non-cluster specified.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected class
HelixReadOnlyStoreConfigRepository.StoreConfigAddedOrDeletedChangedListener
protected class
HelixReadOnlyStoreConfigRepository.StoreConfigChangedListener
-
Constructor Summary
Constructors Constructor Description HelixReadOnlyStoreConfigRepository(org.apache.helix.zookeeper.impl.client.ZkClient zkClient, HelixAdapterSerializer adapterSerializer)
HelixReadOnlyStoreConfigRepository(org.apache.helix.zookeeper.impl.client.ZkClient zkClient, ZkStoreConfigAccessor accessor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
java.util.Optional<StoreConfig>
getStoreConfig(java.lang.String storeName)
Get the store config by store name.StoreConfig
getStoreConfigOrThrow(java.lang.String storeName)
void
refresh()
Obtain all available stores and load them into cache, but it doesn't fetch the store configs and attach ZK watch yet
-
-
-
Constructor Detail
-
HelixReadOnlyStoreConfigRepository
public HelixReadOnlyStoreConfigRepository(org.apache.helix.zookeeper.impl.client.ZkClient zkClient, HelixAdapterSerializer adapterSerializer)
-
HelixReadOnlyStoreConfigRepository
public HelixReadOnlyStoreConfigRepository(org.apache.helix.zookeeper.impl.client.ZkClient zkClient, ZkStoreConfigAccessor accessor)
-
-
Method Detail
-
refresh
public void refresh()
Obtain all available stores and load them into cache, but it doesn't fetch the store configs and attach ZK watch yet- Specified by:
refresh
in interfaceVeniceResource
-
clear
public void clear()
- Specified by:
clear
in interfaceVeniceResource
-
getStoreConfig
public java.util.Optional<StoreConfig> getStoreConfig(java.lang.String storeName)
Get the store config by store name. It would fetch the store config from ZK if it's not in cache yet and attach ZK watch. The corresponding Venice store config is returned for metadata system store's store config. This is the most natural way to handle cluster discovery for metadata system stores and store migration.- Specified by:
getStoreConfig
in interfaceReadOnlyStoreConfigRepository
-
getStoreConfigOrThrow
public StoreConfig getStoreConfigOrThrow(java.lang.String storeName)
- Specified by:
getStoreConfigOrThrow
in interfaceReadOnlyStoreConfigRepository
-
-