Class AvroComputeRequestBuilderV3<K>

    • Constructor Detail

    • Method Detail

      • count

        public ComputeRequestBuilder<K> count​(java.lang.String inputFieldName,
                                              java.lang.String resultFieldName)
        Description copied from interface: ComputeRequestBuilder
        Set up compute operation. It would return the number of records for array/map field.
        Parameters:
        inputFieldName - : top-level field in the value record as the input of count operation
        resultFieldName - : result field name in the response record
        Returns:
      • executeWithFilter

        public void executeWithFilter​(Predicate predicate,
                                      StreamingCallback<org.apache.avro.generic.GenericRecord,​org.apache.avro.generic.GenericRecord> callback)
        Description copied from interface: ComputeRequestBuilder
        Streaming interface that sends compute request to Venice, which will be executed on values whose keys satisfy the given predicate. This can be used to execute partial key lookups. If predicate is null, the compute request will be executed on all values. You can find more info in StreamingCallback. This experimental feature is subject to backwards-incompatible changes in the future.
        Parameters:
        predicate - : predicate which specifies some required leading top-level key fields
        callback - : streaming callback which stores the result from the compute request