Interface StoreIngestionService
- All Known Implementing Classes:
KafkaStoreIngestionService
public interface StoreIngestionService
An interface for Store Ingestion Service for Venice.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addIngestionNotifier
(VeniceNotifier notifier) Adds Notifier to get Notifications for get various status of the consumption tasks like start, completed, progress and error states.boolean
containsRunningConsumption
(VeniceStoreVersionConfig veniceStore) Check whether there is a running consumption task for given store.boolean
containsRunningConsumption
(String topic) Check whether there is a running consumption task for given store version topic.void
demoteToStandby
(VeniceStoreVersionConfig veniceStoreVersionConfig, int partitionId, LeaderFollowerPartitionStateModel.LeaderSessionIdChecker checker) Get AggVersionedStorageIngestionStatsGet topic names that are currently maintained by the ingestion service with corresponding version status not in an online state.getStoreIngestionTask
(String topic) boolean
isPartitionConsuming
(String topic, int partitionId) Check whether the specified partition is still being consumedboolean
killConsumptionTask
(String topicName) Kill all of running consumptions of given store.void
promoteToLeader
(VeniceStoreVersionConfig veniceStoreVersionConfig, int partitionId, LeaderFollowerPartitionStateModel.LeaderSessionIdChecker checker) void
recordIngestionFailure
(String storeName) void
replaceAndAddTestNotifier
(VeniceNotifier notifier) void
startConsumption
(VeniceStoreVersionConfig veniceStore, int partitionId) Starts consuming messages from Kafka Partition corresponding to Venice Partition.stopConsumption
(VeniceStoreVersionConfig veniceStore, int partitionId) Stops consuming messages from Kafka Partition corresponding to Venice Partition.void
stopConsumptionAndWait
(VeniceStoreVersionConfig veniceStore, int partitionId, int sleepSeconds, int numRetries, boolean whetherToResetOffset) Stops consuming messages from Kafka Partition corresponding to Venice Partition and wait up to (sleepSeconds * numRetires) to make sure partition consumption is stopped.
-
Method Details
-
startConsumption
Starts consuming messages from Kafka Partition corresponding to Venice Partition.- Parameters:
veniceStore
- Venice Store for the partition.partitionId
- Venice partition's id.
-
stopConsumption
Stops consuming messages from Kafka Partition corresponding to Venice Partition.- Parameters:
veniceStore
- Venice Store for the partition.partitionId
- Venice partition's id.
-
stopConsumptionAndWait
void stopConsumptionAndWait(VeniceStoreVersionConfig veniceStore, int partitionId, int sleepSeconds, int numRetries, boolean whetherToResetOffset) Stops consuming messages from Kafka Partition corresponding to Venice Partition and wait up to (sleepSeconds * numRetires) to make sure partition consumption is stopped. -
killConsumptionTask
Kill all of running consumptions of given store.- Parameters:
topicName
- Venice topic (store and version number) for the corresponding consumer task that needs to be killed.
-
promoteToLeader
void promoteToLeader(VeniceStoreVersionConfig veniceStoreVersionConfig, int partitionId, LeaderFollowerPartitionStateModel.LeaderSessionIdChecker checker) -
demoteToStandby
void demoteToStandby(VeniceStoreVersionConfig veniceStoreVersionConfig, int partitionId, LeaderFollowerPartitionStateModel.LeaderSessionIdChecker checker) -
addIngestionNotifier
Adds Notifier to get Notifications for get various status of the consumption tasks like start, completed, progress and error states. Multiple Notifiers can be added for the same consumption tasks and all of them will be notified in order.- Parameters:
notifier
-
-
replaceAndAddTestNotifier
-
containsRunningConsumption
Check whether there is a running consumption task for given store. -
containsRunningConsumption
Check whether there is a running consumption task for given store version topic. -
isPartitionConsuming
Check whether the specified partition is still being consumed -
getIngestingTopicsWithVersionStatusNotOnline
Get topic names that are currently maintained by the ingestion service with corresponding version status not in an online state. Topics with invalid store or version number are also included in the returned list.- Returns:
- a
Set
of topic names.
-
recordIngestionFailure
-
getAggVersionedIngestionStats
AggVersionedIngestionStats getAggVersionedIngestionStats()Get AggVersionedStorageIngestionStats- Returns:
- an instance of
AggVersionedIngestionStats
-
getStoreIngestionTask
-
getVeniceConfigLoader
VeniceConfigLoader getVeniceConfigLoader()
-