modelmesh-proxy

command module
v0.0.0-...-033e8c6 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 14, 2021 License: Apache-2.0 Imports: 16 Imported by: 0

README

ModelMesh Proxy

ModelMesh Proxy leverages gRPC-Gateway to create a reverse-proxy server which translates a RESTful HTTP API into gRPC.

This allows sending inference requests to ModelMesh using REST.

Prerequisites

Installation

kustomize build config | kubectl apply -n modelmesh-serving -f -

After installation you should see a new service and deployment:

kubectl get svc modelmesh-proxy  -n modelmesh-serving

NAME               TYPE       CLUSTER-IP      EXTERNAL-IP   PORT(S)          AGE
modelmesh-proxy    NodePort   10.101.137.44   <none>        8080:32189/TCP   2m

kubectl get deployment modelmesh-proxy

NAME              READY   UP-TO-DATE   AVAILABLE   AGE
modelmesh-proxy   1/1     1            1           2m

Rest Inference

With the proxy installed, you can now perform external curl requests. For example, using the model and request data from here, you can now do something like:

curl -X POST -k http://192.168.49.2:32189/v2/models/example-mnist-predictor/infer -d '{ "inputs": [{ "name": "predict", "shape": [1, 64], "datatype": "FP32", "data": [0.0, 0.0, 1.0, 11.0, 14.0, 15.0, 3.0, 0.0, 0.0, 1.0, 13.0, 16.0, 12.0, 16.0, 8.0, 0.0, 0.0, 8.0, 16.0, 4.0, 6.0, 16.0, 5.0, 0.0, 0.0, 5.0, 15.0, 11.0, 13.0, 14.0, 0.0, 0.0, 0.0, 0.0, 2.0, 12.0, 16.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 16.0, 16.0, 6.0, 0.0, 0.0, 0.0, 0.0, 16.0, 16.0, 16.0, 7.0, 0.0, 0.0, 0.0, 0.0, 11.0, 13.0, 12.0, 1.0, 0.0]}]}'


{"model_name":"example-sklearn-mnist-svm__ksp-7702c1b55a","outputs":[{"name":"predict","datatype":"FP32","shape":[1],"data":[8]}]}

Note that the port is the NodePort of the modelmesh-proxy service, and the Node IP or Ingress Subdomain of your cluster.

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
Package predictv2 is a reverse proxy.
Package predictv2 is a reverse proxy.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL