-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Add timed pipeline operations. Closes #155 * Add tests for pipeline config
- Loading branch information
1 parent
18d1043
commit 16c5962
Showing
5 changed files
with
61 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"runtime": 2000, | ||
"workers": { | ||
"manager_ip": "localhost", | ||
"manager_port": 8000, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"name": "webcam-demo", | ||
"description": "A demo of the webcam node and the show window node", | ||
"runtime": 120, | ||
"mode": "record", | ||
"workers": { | ||
"manager_ip": "129.59.104.153", | ||
"manager_port": 9001, | ||
"instances": [ | ||
{ | ||
"name": "local", | ||
"id": "local", | ||
"remote": false, | ||
"description": "Worker 1 for the webcam demo with a webcam node and a show window node" | ||
} | ||
] | ||
}, | ||
"nodes": [ | ||
"WebcamNode", | ||
"ShowWindow" | ||
], | ||
"adj": [ | ||
[ | ||
"WebcamNode", | ||
"ShowWindow" | ||
] | ||
], | ||
"manager_config": { | ||
"logdir": "cp-logs", | ||
"port": 9001 | ||
}, | ||
"mappings": { | ||
"local": [ | ||
"WebcamNode", | ||
"ShowWindow" | ||
] | ||
} | ||
} |