-
Notifications
You must be signed in to change notification settings - Fork 279
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Optimise trigger execution #2179
Labels
api-changes
Changes in the API for client libraries
iroha2-dev
The re-implementation of a BFT hyperledger in RUST
Optimization
Something isn't working as well as it should
Comments
Arjentix
added
iroha2-dev
The re-implementation of a BFT hyperledger in RUST
api-changes
Changes in the API for client libraries
Optimization
Something isn't working as well as it should
labels
May 5, 2022
Arjentix
added a commit
that referenced
this issue
May 11, 2022
appetrosyan
pushed a commit
to appetrosyan/iroha
that referenced
this issue
May 12, 2022
…dger-iroha#2157) Signed-off-by: Daniil Polyakov <arjentix@gmail.com>
appetrosyan
pushed a commit
to appetrosyan/iroha
that referenced
this issue
May 12, 2022
…dger-iroha#2157) Signed-off-by: Daniil Polyakov <arjentix@gmail.com>
appetrosyan
pushed a commit
to appetrosyan/iroha
that referenced
this issue
May 12, 2022
…dger-iroha#2157) Signed-off-by: Daniil Polyakov <arjentix@gmail.com>
appetrosyan
pushed a commit
to appetrosyan/iroha
that referenced
this issue
May 12, 2022
…dger-iroha#2157) Signed-off-by: Daniil Polyakov <arjentix@gmail.com>
appetrosyan
pushed a commit
to appetrosyan/iroha
that referenced
this issue
May 12, 2022
…dger-iroha#2157) Signed-off-by: Daniil Polyakov <arjentix@gmail.com>
appetrosyan
pushed a commit
to appetrosyan/iroha
that referenced
this issue
May 12, 2022
…dger-iroha#2157) Signed-off-by: Daniil Polyakov <arjentix@gmail.com>
appetrosyan
pushed a commit
to appetrosyan/iroha
that referenced
this issue
May 12, 2022
…dger-iroha#2157) Signed-off-by: Daniil Polyakov <arjentix@gmail.com>
appetrosyan
pushed a commit
to appetrosyan/iroha
that referenced
this issue
May 12, 2022
…dger-iroha#2157) Signed-off-by: Daniil Polyakov <arjentix@gmail.com>
appetrosyan
pushed a commit
to appetrosyan/iroha
that referenced
this issue
May 12, 2022
…dger-iroha#2157) Signed-off-by: Daniil Polyakov <arjentix@gmail.com>
appetrosyan
pushed a commit
to appetrosyan/iroha
that referenced
this issue
May 12, 2022
…dger-iroha#2157) Signed-off-by: Daniil Polyakov <arjentix@gmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
api-changes
Changes in the API for client libraries
iroha2-dev
The re-implementation of a BFT hyperledger in RUST
Optimization
Something isn't working as well as it should
Right now all events will be passed through all triggers to check if a trigger should be executed.
Need to create different streams for different kind of events (Data, Pipeline, etc.) and different kind of triggers to reduce the number of useless check. This will require to make Trigger to be generic.
Also right now first fail in triggers execution will stop all others execution. That's not correct. If one trigger fails to run then it should be skipped
The text was updated successfully, but these errors were encountered: