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
Here are some examples of successes and failures during my testing:
C++version, transfer 1.3 MB images, use current compiled target/debug/dora to run the project, and the delay in obtaining images is about 100ms when dora_next_event() is used. If using the directly downloaded compiled dora(v0.3.5) to run XXX.yml, the delay is 4ms (only for versions before July 19th).
In versions after July 19th, when running the official example using downloaded compiled dora, the second node cannot receive the data from the previous node due to deserialization issues. This may be caused by the mismatch between the cargo install dora cli compiled dora and the latest C++library functions. Simultaneously using current compiled target/debug/dora to run the program successfully, but the latency is still around 100ms.
The text was updated successfully, but these errors were encountered:
If you're using the latest main branch to compile C++, you should also use dora main branch to start your dataflow.
When I use the latest main branch to compile C++, the latency is 100ms. How can I reduce the latency? Should I use --release? I'm not familar with cargo and haven't found where the dora is compiled. Thanks!
uninstall previous version of Dora: cargo uninstall dora-cli
install Dora-cli latest main (it will be in release mode): clone the Dora directory and launch cargo install --path binaries/cli inside of it
build the cxx node api release mode: inside the repository, launch cargo build --package dora-node-api-cxx --release and just follow the steps that are in the README of this subfolder
Here are some examples of successes and failures during my testing:
The text was updated successfully, but these errors were encountered: