arrow-left
All pages
gitbookPowered by GitBook
1 of 1

Loading...

Write definitions

Resource definitions describe Hydrosphere entities.

An entity could be your model, application, or deployment configuration. Each definition is represented by a .yaml file.

hashtag
Base definition

Every definition must include the following fields:

  • kind: defines the type of a resource

  • name: defines the name of a resource

The only valid options for kind are:

  • Model

  • Application

  • DeploymentConfiguration

hashtag
kind: Model

A model definition must contain the following fields:

  • runtime: a string defining the runtime Docker image that will be used to run a model. You can learn more about runtimes .

  • contract: an object defining the inputs and outputs of a model.

A model definition can contain the following fields:

  • payload: a list of files that should be added to the container.

  • install-command: a string defining a command that should be executed during the container build.

  • training-data: a string defining a path to the file that will be uploaded to Hydrosphere and used as a training data reference. It can be either a local file or a URI to an S3 object. At the moment we only support .csv

The example below shows how a model can be defined on the top level.

hashtag
Contract object

contract object must contain the following fields:

  • inputs: an object, defining all inputs of a model

  • outputs: an object, defining all outputs of a model

contract object can contain the following fields:

  • name: a string defining the signature of the model that should be used to process requests

hashtag
Field object

field object must contain the following fields:

  • shape: either "scalar" or a list of integers, defining the shape of your data. If a shape is defined as a list of integers, it can have -1 value at the very beginning of the list, indicating that this field has an arbitrary number of "entities". -1 cannot be put anywhere aside from the beginning of the list.

  • type: a string defining the type of data.

field object can contain the following fields:

  • profile: a string, defining the profile type of your data.

The only valid options for type are:

  • bool β€” Boolean

  • string β€” String in bytes

  • half β€” 16-bit half-precision floating-point

  • float16 β€” 16-bit half-precision floating-point

The only valid options for profile are:

  • text β€” monitoring such fields will be done with text-oriented algorithms.

  • image β€” monitoring such fields will be done with image-oriented algorithms.

  • numerical β€” monitoring such fields will be done with numerical-oriented algorithms.

The example below shows how a contract can be defined on the top level.

hashtag
Metadata object

metadata object can represent any arbitrary information specified by the user. The structure of the object is not strictly defined. The only constraint is that the object must have a key-value structure, where a value can only be of a simple data type (string, number, boolean).

The example below shows, how metadata can be defined.

The example below shows a complete definition of a sample model.

hashtag
kind: Application

The application definition must contain one of the following fields:

  • singular: An object, defining a single-model application;

  • pipeline: A list of objects, defining an application as a pipeline of models.

hashtag
Singular object

singular object represents an application consisting only of one model. The object must contain the following fields:

  • model: A string, defining a model version. It is expected to be in the form model-name:model-version.

The example below shows how a singular application can be defined.

hashtag
Pipeline object

pipeline represents a list of stages, representing models.

stage object must contain the following fields:

  • model: A string defining a model version. It is expected to be in the form model-name:model-version.

stage object can contain the following fields:

  • weight: A number defining the weight of the model. All models' weights in a stage must add up to 100.

The example below shows how a pipeline application can be defined.

In this application, 100% of the traffic will be forwarded to the claims-preprocessing:1 model version and the output will be fed into claims-model. 80% of the traffic will go to the claims-model:1 model version, 20% of the traffic will go to the claims-model:2 model version.

hashtag
kind: DeploymentConfiguration

The DeploymentConfiguration resource definition can contain the following fields:

  • hpa: An object defining

  • container: An object defining settings applied on a container level

  • deployment: An object defining settings applied on a deployment level

hashtag
HPA object

The hpa object closely resembles the Kubernetes object

The hpa object must contain:

  • minReplicas : minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down.

  • maxReplicas : integer, upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than minReplicas.

  • cpuUtilization : integer from 1 to 100, target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified the default autoscaling policy will be used.

hashtag
Container object

The container object can contain:

  • resources : object with limits and requests fields. Closely resembles the k8s object

  • env : object with string keys and string values which is used to set environment variables.

hashtag
Pod object

The hpa object is similar to the Kubernetes object.

The pod object can contain

  • nodeSelector : which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. .

  • affinity : pod's scheduling constraints. Represented by an object.

  • tolerations : array of

hashtag
Deployment object

The deployment object must contain:

  • replicaCount : integer, number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.

hashtag
Example

The example below shows how a deployment configuration can be defined.

files.
  • metadata: an object defining additional user metadata that will be displayed on the Hydrosphere UI.

  • float32 β€” 32-bit single-precision floating-point

  • double β€” 64-bit double-precision floating-point

  • float64 β€” 64-bit double-precision floating-point

  • uint8 β€” 8-bit unsigned integer

  • uint16 β€” 16-bit unsigned integer

  • uint32 β€” 32-bit unsigned integer

  • uint64 β€” 64-bit unsigned integer

  • int8 β€” 8-bit signed integer

  • int16 β€” 16-bit signed integer

  • int32 β€” 32-bit signed integer

  • int64 β€” 64-bit signed integer

  • qint8 β€” Quantized 8-bit signed integer

  • quint8 β€” Quantized 8-bit unsigned integer

  • qint16 β€” Quantized 16-bit signed integer

  • quint16 β€” Quantized 16-bit unsigned integer

  • complex64 β€” 64-bit single-precision complex

  • complex128 β€” 128-bit double-precision complex

  • categorical β€” monitoring such fields will be done with categorical-oriented algorithms.

    pod: An object defining settings applied on a pod level

    .
    here
    HorizontalPodAutoscalerSpecarrow-up-right
    HorizontalPodAutoscalerSpecarrow-up-right
    ResourceRequirementsarrow-up-right
    PodSpecarrow-up-right
    selectorarrow-up-right
    More infoarrow-up-right
    Affinityarrow-up-right
    Tolerationsarrow-up-right
    serving.yaml
    kind: "Model"
    name: "sample_model"
    training-data: "s3://bucket/train.csv" | "/temp/file.csv"
    runtime: "hydrosphere/serving-runtime-python-3.6:$released_version$"
    install-command: "sudo apt install jq && pip install -r requirements.txt" 
    payload: 
      - "./requirements.txt"
    contract:
      ...
    metadata:
      ...
    name: "infer"
    inputs:
      input_field_1:
        shape: [-1, 1]
        type: string
        profile: text
      input_field_2:
        shape: [200, 200]
        type: int32
        profile: categorical
    outputs: 
      output_field_1:
        shape: scalar
        type: int32 
        profile: numerical
    metadata:
      experiment: "demo"
      environment: "kubernetes"
    kind: "Model"
    name: "sample_model"
    training-data: "s3://bucket/train.csv" | "/temp/file.csv"
    runtime: "hydrosphere/serving-runtime-python-3.6:$released_version$"
    install-command: "sudo apt install jq && pip install -r requirements.txt" 
    payload: 
      - "./*"
    contract:
      name: "infer"
      inputs:
        input_field_1:
          shape: [-1, 1]
          type: string
          profile: text
        input_field_2:
          shape: [-1, 1]
          type: int32
          profile: numerical
      outputs: 
        output_field_1:
          shape: scalar
          type: int32 
          profile: numerical
    metadata:
      experiment: "demo"
      environment: "kubernetes"
    kind: "Application"
    name: "sample_application"
    singular:
      model: "sample_model:1"
    kind: Application
    name: sample-claims-app
    pipeline:
      - - model: "claims-preprocessing:1"
      - - model: "claims-model:1"
          weight: 80
        - model: "claims-model:2"
          weight: 20
    kind: DeploymentConfiguration
    name: cool-deployment-config
    hpa:
      minReplicas: 2
      maxReplicas: 10
      cpuUtilization: 80
    deployment:
      replicaCount: 4
    container:
      resources:
        limits:
          cpu: 500m
          memory: 4G
        requests:
          cpu: 250m
          memory: 2G
      env:
        foo: bar
    pod:
      nodeSelector:
        im: a map
        foo: bar
      affinity:
        nodeAffinity:
          requiredDuringSchedulingIgnoredDuringExecution:
            nodeSelectorTerms:
            - matchExpressions:
              - key: exp1
                operator: Exists
              matchFields:
              - key: fields1
                operator: Exists
          preferredDuringSchedulingIgnoredDuringExecution:
          - preference:
              matchExpressions:
              - key: exp2
                operator: NotIn
                values:
                - aaaa
                - bvzv
                - czxc
              matchFields:
              - key: fields3
                operator: NotIn
                values:
                - aaa
                - cccc
                - zxcc
            weight: 100
        podAffinity:
          requiredDuringSchedulingIgnoredDuringExecution:
          - labelSelector:
              matchExpressions:
              - key: value
                operator: Exists
              - key: key
                operator: NotIn
                values:
                - a
                - b
            namespaces:
            - namespace1
            topologyKey: top
          preferredDuringSchedulingIgnoredDuringExecution:
          - weight: 100
            podAffinityTerm:
              labelSelector:
                matchLabels:
                  key: a
                matchExpressions:
                - key: key1
                  operator: In
                  values:
                  - a
                  - b
                - key: value2
                  operator: NotIn
                  values:
                  - b
              namespaces:
              - namespace2
              topologyKey: topo_valur
        podAntiAffinity:
          requiredDuringSchedulingIgnoredDuringExecution:
          - labelSelector:
              matchExpressions:
              - key: value
                operator: Exists
              - key: key2
                operator: NotIn
                values:
                - a
                - b
              - key: key3
                operator: DoesNotExist
            namespaces:
            - namespace1
            topologyKey: top
          preferredDuringSchedulingIgnoredDuringExecution:
          - weight: 100
            podAffinityTerm:
              labelSelector:
                matchLabels:
                  key: a
                matchExpressions:
                - key: key
                  operator: In
                  values:
                  - a
                  - b
                - key: key2
                  operator: NotIn
                  values:
                  - b
              namespaces:
              - namespace2
              topologyKey: toptop
      tolerations:
      - effect: PreferNoSchedule
        key: equalToleration
        tolerationSeconds: 30
        operator: Equal
        value: kek
      - key: equalToleration
        operator: Exists
        effect: PreferNoSchedule
        tolerationSeconds: 30