From 59c2406ccd19fe369615e5fd60c6050ac77c2e16 Mon Sep 17 00:00:00 2001 From: Izabella Raulin Date: Mon, 7 Nov 2016 12:13:12 +0100 Subject: [PATCH] Fixed broken link --- docs/DISTRIBUTED_WORKFLOW_ARCHITECTURE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/DISTRIBUTED_WORKFLOW_ARCHITECTURE.md b/docs/DISTRIBUTED_WORKFLOW_ARCHITECTURE.md index 3df0f5c5b..d4387e6ad 100644 --- a/docs/DISTRIBUTED_WORKFLOW_ARCHITECTURE.md +++ b/docs/DISTRIBUTED_WORKFLOW_ARCHITECTURE.md @@ -28,7 +28,7 @@ A distributed workflow is a workflow where one or more steps have a remote targe ## Architecture -Distributed workflow is accomplished by allowing remote targets to be specified as part of a task workflow. This is done by having a gRPC server running that can handle actions needed by the scheduler to run a task. These are defined in the [managesMetrics](https://github.com/intelsdi-x/snap/blob/distributed-workflow/scheduler/scheduler.go) interface defined in scheduler/scheduler.go. This interface is implemented by both pluginControl in control/control.go and ControlProxy in grpc/controlproxy/controlproxy.go. This allows the scheduler to not know/care where a step in the workflow is running. On task creation, the workflow is walked and the appropriate type is selected or created for each step in the workflow. +Distributed workflow is accomplished by allowing remote targets to be specified as part of a task workflow. This is done by having a gRPC server running that can handle actions needed by the scheduler to run a task. These are defined in the [managesMetrics](https://github.com/intelsdi-x/snap/blob/master/scheduler/scheduler.go) interface defined in scheduler/scheduler.go. This interface is implemented by both pluginControl in control/control.go and ControlProxy in grpc/controlproxy/controlproxy.go. This allows the scheduler to not know/care where a step in the workflow is running. On task creation, the workflow is walked and the appropriate type is selected or created for each step in the workflow. ## Performance considerations