Skip to content

Repository files navigation

task-rt-test-engine

Lightweight engine to run with realtime heartbeat script. This engine demonstrates basic structure of an engine. It actually does not interact with any external APIs. The engine automatically generate fake outputs.

Environment Variables

Variables that can be passed in as environment variables i.e. docker run -e KAFKA_CHUNK_TOPIC="CHUNK_ALL"

VariableDescription
KAFKA_BROKERSComma-separated list of Kafka Broker addresses.
KAFKA_CHUNK_TOPICThe Chunk Queue Kafka topic. Ex: "chunk_all"
ENGINE_IDThe engine ID
ENGINE_INSTANCE_IDUnique instance ID for the engine instance
KAFKA_INPUT_TOPICThe Kafka topic the engine should consume chunks from.
KAFKA_CONSUMER_GROUPThe consumer group the engine must use.

Sample kafka message with local test

{
"type": "media_chunk",
"timestampUTC": 1547173392785,
"taskId": "19010211_MSLkayxxXrBWivV",
"tdoId": "310781804",
"jobId": "19010211_MSLkayxxXr",
"chunkIndex": 5,
"startOffsetMs": 4000,
"endOffsetMs": 5000,
"width": 1280,
"height": 720,
"mimeType": "image/jpeg",
"cacheURI": "https://chunk-cache.s3.amazonaws.com/frames/310781804/1ad54583-eba7-4feb-af17-119f1b495345.jpg",
"taskPayload": {
},
"chunkUUID": "554a4188-154d-4fbc-b121-3e2feb0edf20"
}

Installation

make deps

Run Local

go run main.go

Building Engine

  • Edit manifest.json, change engineId field to the engineID on VDA that you want to deploy
  • Make sure to have the .netrc file -- see .netrc.template

Deploying Engine

Use the following links to go to VDA to deploy the engine

envlink
prodhttps://developer.veritone.com/engines/c17ea304-377c-49b0-b667-2700042f94f3/builds

Running Engine

  • Create task for engine to run:
    • Open graphQL console on the environment that you are running this engine
    • Using this template for graphQL command:
mutationcreateJob{
createJob(input: {
targetId: "371245784",
tasks: [{
engineId:"9e611ad7-2d3b-48f6-a51b-0a1ba40feab4", # The real-time adapter on the jobpayload:{
url: "https://s3.amazonaws.com/test-chunk-engine/eng-usa.mp4"
}
},{
engineId: "c17ea304-377c-49b0-b667-2700042f94f3",
payload: {}
}]
}) {
id
}
}

About

Lightweight engine to run with realtime test script

Topics

Resources

Stars

2 stars

Watchers

49 watching

Forks

Releases

Packages

Contributors

Languages