fluvio-smartengine 0.50.1

The official Fluvio SmartEngine
Documentation
transforms:
  - uses: infinyon/jolt@0.4.1
    lookback:
      age: 1w
    with:
      spec:
        - operation: shift
          spec:
            payload:
              device: "device"
        - operation: default
          spec:
            device:
              type: "mobile"
  - uses: infinyon/jolt@0.4.1
    lookback:
      last: 1
    with:
      spec:
        - operation: shift
          spec:
            payload:
              device: "device"
        - operation: default
          spec:
            device:
              type: "mobile"
  - uses: infinyon/json-sql@0.2.1
    lookback:
      last: 10
      age: 12 s  
    with:
      mapping:
        table: "topic_message_demo"
        map-columns:
          "device_id":
            json-key: "device.device_id"
            value:
              type: "int"
              default: "0"
              required: true
          "record":
            json-key: "$"
            value:
              type: "jsonb"
              required: true