Class RemoteInference.Invoke<InputT extends BaseInput,OutputT extends BaseResponse>
java.lang.Object
org.apache.beam.sdk.transforms.PTransform<PCollection<InputT>,PCollection<Iterable<PredictionResult<InputT,OutputT>>>>
org.apache.beam.sdk.ml.inference.remote.RemoteInference.Invoke<InputT,OutputT>
- All Implemented Interfaces:
Serializable,HasDisplayData
- Enclosing class:
RemoteInference
public abstract static class RemoteInference.Invoke<InputT extends BaseInput,OutputT extends BaseResponse>
extends PTransform<PCollection<InputT>,PCollection<Iterable<PredictionResult<InputT,OutputT>>>>
- See Also:
-
Field Summary
Fields inherited from class org.apache.beam.sdk.transforms.PTransform
annotations, displayData, name, resourceHints -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionexpand(PCollection<InputT> input) Override this method to specify how thisPTransformshould be expanded on the givenInputT.handler(Class<? extends BaseModelHandler<?, InputT, OutputT>> modelHandler) Model handler class for inference.withBatchConfig(BatchElements.BatchConfig batchConfig) Configures the batching behavior for the inputs.withOutputCoder(Coder<OutputT> outputCoder) Configures the coder for the output of the model.withOverloadRatio(double overloadRatio) Configures the target ratio between requests sent and successful requests.withParameters(BaseModelParameters modelParameters) Configures the parameters for model initialization.withSamplePeriodMs(long samplePeriodMs) Configures the length of history to consider when setting throttling probability.withSampleUpdateMs(long sampleUpdateMs) Configures the granularity of time buckets that we store data in for throttling.withThrottleDelaySecs(int throttleDelaySecs) Configures the throttling delay when the client is preemptively throttled.Methods inherited from class org.apache.beam.sdk.transforms.PTransform
addAnnotation, compose, compose, getAdditionalInputs, getAnnotations, getDefaultOutputCoder, getDefaultOutputCoder, getDefaultOutputCoder, getKindString, getName, getResourceHints, populateDisplayData, setDisplayData, setResourceHints, toString, validate, validate
-
Constructor Details
-
Invoke
public Invoke()
-
-
Method Details
-
handler
public RemoteInference.Invoke<InputT,OutputT> handler(Class<? extends BaseModelHandler<?, InputT, OutputT>> modelHandler) Model handler class for inference. -
withParameters
Configures the parameters for model initialization. -
withBatchConfig
public RemoteInference.Invoke<InputT,OutputT> withBatchConfig(BatchElements.BatchConfig batchConfig) Configures the batching behavior for the inputs. -
withThrottleDelaySecs
Configures the throttling delay when the client is preemptively throttled. Defaults to 5 seconds. A value of 0 disables throttling. For more context, seeReactiveThrottler -
withSamplePeriodMs
Configures the length of history to consider when setting throttling probability. Defaults to a sample period of 1000ms. For more context, seeinvalid reference
AdaptiveThrottler -
withSampleUpdateMs
Configures the granularity of time buckets that we store data in for throttling. Defaults to a sample period of 1000ms. For more context, seeinvalid reference
AdaptiveThrottler -
withOverloadRatio
Configures the target ratio between requests sent and successful requests. Defaults to an overload ratio of 2.0. For more context, seeinvalid reference
AdaptiveThrottler -
withOutputCoder
Configures the coder for the output of the model. If not provided, it will fallback to using standard Java serialization for the output element. -
expand
Description copied from class:PTransformOverride this method to specify how thisPTransformshould be expanded on the givenInputT.NOTE: This method should not be called directly. Instead apply the
PTransformshould be applied to theInputTusing theapplymethod.Composite transforms, which are defined in terms of other transforms, should return the output of one of the composed transforms. Non-composite transforms, which do not apply any transforms internally, should return a new unbound output and register evaluators (via backend-specific registration methods).
- Specified by:
expandin classPTransform<PCollection<InputT extends BaseInput>,PCollection<Iterable<PredictionResult<InputT extends BaseInput, OutputT extends BaseResponse>>>>
-