Interface ChunkingAdapter<CHUNKS_CONTAINER,​VALUE>

    • Method Detail

      • constructValue

        default VALUE constructValue​(byte[] fullBytes,
                                     int bytesLength,
                                     VALUE reusedValue,
                                     org.apache.avro.io.BinaryDecoder reusedDecoder,
                                     ReadResponse response,
                                     int writerSchemaId,
                                     int readerSchemaId,
                                     StoreDeserializerCache<VALUE> storeDeserializerCache,
                                     VeniceCompressor compressor)
        Used to wrap a small {@param fullBytes} value fetched from the storage engine into the right type of {@param VALUE} class needed by the query code.

        The following parameters are mandatory:

        Parameters:
        fullBytes - includes both the schema ID header and the payload

        The following parameters can be ignored, by implementing constructValue(int, byte[]):

        bytesLength -
        reusedValue - a previous instance of to be re-used in order to minimize GC
        reusedDecoder - a previous instance of BinaryDecoder to be re-used in order to minimize GC
        response - the response returned by the query path, which carries certain metrics to be recorded at the end
        writerSchemaId - schema used to serialize the value
        readerSchemaId -
      • constructValue

        default VALUE constructValue​(int schemaId,
                                     byte[] fullBytes)
        This function can be implemented by the adapters which need fewer parameters.
        See Also:
        #constructValue(int, int, byte[], int, Object, BinaryDecoder, ReadResponse, CompressionStrategy, boolean, ReadOnlySchemaRepository, String, VeniceCompressor)
      • addChunkIntoContainer

        void addChunkIntoContainer​(CHUNKS_CONTAINER container,
                                   int chunkIndex,
                                   byte[] valueChunk)
        Used to incrementally add a {@param valueChunk} into the {@param CHUNKS_CONTAINER} container.
      • constructChunksContainer

        CHUNKS_CONTAINER constructChunksContainer​(ChunkedValueManifest chunkedValueManifest)
        Used to construct the right kind of {@param CHUNKS_CONTAINER} container (according to the query code) to hold a large value which needs to be incrementally re-assembled from many smaller chunks.
      • constructValue

        default VALUE constructValue​(CHUNKS_CONTAINER chunksContainer,
                                     VALUE reusedValue,
                                     org.apache.avro.io.BinaryDecoder reusedDecoder,
                                     ReadResponse response,
                                     int writerSchemaId,
                                     int readerSchemaId,
                                     StoreDeserializerCache<VALUE> storeDeserializerCache,
                                     VeniceCompressor compressor)
        Used to wrap a large value re-assembled with the use of a {@param CHUNKS_CONTAINER} into the right type of {@param VALUE} class needed by the query code.

        The following parameters are mandatory:

        Parameters:
        chunksContainer - temporary , obtained from constructChunksContainer(ChunkedValueManifest)

        The following parameters can be ignored, by implementing constructValue(int, Object):

        reusedValue - a previous instance of to be re-used in order to minimize GC
        reusedDecoder - a previous instance of BinaryDecoder to be re-used in order to minimize GC
        response - the response returned by the query path, which carries certain metrics to be recorded at the end
        writerSchemaId - of the user's value
        readerSchemaId -
      • constructValue

        default VALUE constructValue​(int schemaId,
                                     CHUNKS_CONTAINER chunksContainer)
        This function can be implemented by the adapters which need fewer parameters.
        See Also:
        #constructValue(int, Object, Object, BinaryDecoder, ReadResponse, CompressionStrategy, boolean, ReadOnlySchemaRepository, String, VeniceCompressor)