You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This means that the zenoh-flow runtime is was loaded and it is ready.
94
+
95
+
## The transcoding application.
96
+
97
+
Copy the content of this folder in: `/var/zenoh-flow/flows` and run `pip3 install -r /var/zenoh-flow/flows/requirements.txt`.
98
+
99
+
100
+
On a terminal start the publisher side: `cd /var/zenoh-flow/flows && python3 pub-proto.py`
101
+
On a new terminal start the subscriber side: `cd /var/zenoh-flow/flows && python3 pub-cdr.py`
102
+
103
+
The subscriber will not receive any data as the transcoding is not yet deployed.
104
+
105
+
On a 3rd terminal instruct zenoh-flow to launch the transcoding flow: `zfctl launch /var/zenoh-flow/flows/dataflow.yml` it will return the instance id.
106
+
107
+
Now you should see the data being transcoded and received by your subscriber.
108
+
109
+
Once you are done you can list the current running flow instances: `zfctl list instances` and delete the running one with `zfctl destroy <instance uuid>`.
110
+
111
+
Once the instance is delete you will see that the subscriber is not going to receive any data.
0 commit comments