Package com.linkedin.davinci.client
Class DelegatingAvroGenericDaVinciClient<K,V>
java.lang.Object
com.linkedin.davinci.client.DelegatingAvroGenericDaVinciClient<K,V>
- All Implemented Interfaces:
DaVinciClient<K,,V> AvroGenericReadComputeStoreClient<K,,V> AvroGenericStoreClient<K,,V> Closeable,AutoCloseable
- Direct Known Subclasses:
StatsAvroGenericDaVinciClient
public class DelegatingAvroGenericDaVinciClient<K,V>
extends Object
implements DaVinciClient<K,V>, AvroGenericReadComputeStoreClient<K,V>
Delegating layer for
DaVinciClient.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGet the values associated with the given keys and return them in a map of keys to values.voidclose()Release the internal resources.voidcompute(ComputeRequestWrapper computeRequestWrapper, Set<K> keys, org.apache.avro.Schema resultSchema, StreamingCallback<K, ComputeGenericRecord> callback, long preRequestTimeInNS) compute(Optional<ClientStats> stats, Optional<ClientStats> streamingStats, AvroGenericReadComputeStoreClient computeStoreClient, long preRequestTimeInNS) voidcomputeWithKeyPrefixFilter(byte[] prefixBytes, ComputeRequestWrapper computeRequestWrapper, StreamingCallback<org.apache.avro.generic.GenericRecord, org.apache.avro.generic.GenericRecord> callback) Lookup the value by given key, and get(key).get() will return null if it doesn't exist.Similar toAvroGenericStoreClient.get(Object)except that it allows passing in a instance, to minimize GC.org.apache.avro.SchemaGet key schema.org.apache.avro.SchemaDeprecated.intGet partition count of a store.booleanvoidstart()voidstreamingBatchGet(Set<K> keys, StreamingCallback<K, V> callback) Streaming interface forAvroGenericStoreClient.batchGet(Set).Ingest specific partition/partitions locally.Ingest the entire data (i.e.voidunsubscribe(Set<Integer> partitions) Stop ingesting a partition locally, and drop its associated local states/data.voidStop ingesting all subscribed partition locally, and drop their associated local states/data.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.linkedin.venice.client.store.AvroGenericReadComputeStoreClient
compute, compute, compute, computeAggregationMethods inherited from interface com.linkedin.venice.client.store.AvroGenericStoreClient
streamingBatchGet
-
Constructor Details
-
DelegatingAvroGenericDaVinciClient
-
-
Method Details
-
subscribeAll
Description copied from interface:DaVinciClientIngest the entire data (i.e. all partitions) locally.- Specified by:
subscribeAllin interfaceDaVinciClient<K,V> - Returns:
- a future which completes when the data is ready to serve
-
subscribe
Description copied from interface:DaVinciClientIngest specific partition/partitions locally.- Specified by:
subscribein interfaceDaVinciClient<K,V> - Parameters:
partitions- the set of partition IDs to subscribe to- Returns:
- a future which completes when the partitions are ready to serve
-
unsubscribeAll
public void unsubscribeAll()Description copied from interface:DaVinciClientStop ingesting all subscribed partition locally, and drop their associated local states/data. If applications intend to keep the states/data for future use, no need to invoke this function before callingAvroGenericStoreClient.close().- Specified by:
unsubscribeAllin interfaceDaVinciClient<K,V>
-
unsubscribe
Description copied from interface:DaVinciClientStop ingesting a partition locally, and drop its associated local states/data. If applications intend to keep the states/data for future use, no need to invoke this function before callingAvroGenericStoreClient.close().- Specified by:
unsubscribein interfaceDaVinciClient<K,V> - Parameters:
partitions- the set of partition IDs to unsubscribe from
-
getPartitionCount
public int getPartitionCount()Description copied from interface:DaVinciClientGet partition count of a store.- Specified by:
getPartitionCountin interfaceDaVinciClient<K,V> - Returns:
- partition count
-
get
Description copied from interface:AvroGenericStoreClientLookup the value by given key, and get(key).get() will return null if it doesn't exist. For now, if any backend error/exception happens, get(Object key).get() will throwExecutionException, which is a wrapper of the real exception.- Specified by:
getin interfaceAvroGenericStoreClient<K,V> - Returns:
- Throws:
VeniceClientException
-
get
Description copied from interface:AvroGenericStoreClientSimilar toAvroGenericStoreClient.get(Object)except that it allows passing in a instance, to minimize GC.- Specified by:
getin interfaceAvroGenericStoreClient<K,V> - Throws:
VeniceClientException
-
batchGet
Description copied from interface:AvroGenericStoreClientGet the values associated with the given keys and return them in a map of keys to values. Note that the returned map will only contain entries for the keys which have a value associated with them.- Specified by:
batchGetin interfaceAvroGenericStoreClient<K,V> - Returns:
- Throws:
VeniceClientException
-
streamingBatchGet
public void streamingBatchGet(Set<K> keys, StreamingCallback<K, V> callback) throws VeniceClientExceptionDescription copied from interface:AvroGenericStoreClientStreaming interface forAvroGenericStoreClient.batchGet(Set). You can find more info inStreamingCallback.- Specified by:
streamingBatchGetin interfaceAvroGenericStoreClient<K,V> - Throws:
VeniceClientException
-
start
- Specified by:
startin interfaceAvroGenericStoreClient<K,V> - Throws:
VeniceClientException
-
close
public void close()Description copied from interface:AvroGenericStoreClientRelease the internal resources.- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceAvroGenericStoreClient<K,V> - Specified by:
closein interfaceCloseable
-
getStoreName
- Specified by:
getStoreNamein interfaceAvroGenericStoreClient<K,V>
-
getKeySchema
public org.apache.avro.Schema getKeySchema()Description copied from interface:AvroGenericStoreClientGet key schema.- Specified by:
getKeySchemain interfaceAvroGenericStoreClient<K,V>
-
getLatestValueSchema
Deprecated.Description copied from interface:AvroGenericStoreClientGet the latest value schema known in current store client. This function doesn't guarantee it will return the latest schema if you add a new value schema when current store client is running.- Specified by:
getLatestValueSchemain interfaceAvroGenericStoreClient<K,V>
-
getSchemaReader
- Specified by:
getSchemaReaderin interfaceAvroGenericReadComputeStoreClient<K,V>
-
isProjectionFieldValidationEnabled
public boolean isProjectionFieldValidationEnabled()- Specified by:
isProjectionFieldValidationEnabledin interfaceAvroGenericReadComputeStoreClient<K,V>
-
compute
public ComputeRequestBuilder<K> compute(Optional<ClientStats> stats, Optional<ClientStats> streamingStats, AvroGenericReadComputeStoreClient computeStoreClient, long preRequestTimeInNS) throws VeniceClientException - Specified by:
computein interfaceAvroGenericReadComputeStoreClient<K,V> - Throws:
VeniceClientException
-
compute
public void compute(ComputeRequestWrapper computeRequestWrapper, Set<K> keys, org.apache.avro.Schema resultSchema, StreamingCallback<K, ComputeGenericRecord> callback, long preRequestTimeInNS) throws VeniceClientException- Specified by:
computein interfaceAvroGenericReadComputeStoreClient<K,V> - Throws:
VeniceClientException
-
computeWithKeyPrefixFilter
public void computeWithKeyPrefixFilter(byte[] prefixBytes, ComputeRequestWrapper computeRequestWrapper, StreamingCallback<org.apache.avro.generic.GenericRecord, org.apache.avro.generic.GenericRecord> callback) - Specified by:
computeWithKeyPrefixFilterin interfaceAvroGenericReadComputeStoreClient<K,V>
-