-
Notifications
You must be signed in to change notification settings - Fork 88
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
Ouroboros: Switch to versioned protocol #1381
Conversation
e5d8826
to
c23ff6c
Compare
Transactions CostsSizes and execution budgets for Hydra protocol transactions. Note that unlisted parameters are currently using
Script summary
Cost of Init Transaction
Cost of Commit TransactionThis is using ada-only outputs for better comparability.
Cost of CollectCom Transaction
Cost of Close Transaction
Cost of Contest Transaction
Cost of Abort TransactionSome variation because of random mixture of still initial and already committed outputs.
Cost of FanOut TransactionInvolves spending head output and burning head tokens. Uses ada-only UTxO for better comparability.
End-To-End Benchmark ResultsThis page is intended to collect the latest end-to-end benchmarks results produced by Hydra's Continuous Integration system from the latest Please take those results with a grain of salt as they are currently produced from very limited cloud VMs and not controlled hardware. Instead of focusing on the absolute results, the emphasis should be on relative results, eg. how the timings for a scenario evolve as the code changes. Generated at 2024-05-08 12:15:50.133673732 UTC Baseline Scenario
Baseline Scenario
|
b5981c3
to
d5fb8a4
Compare
d5fb8a4
to
e8572ca
Compare
Test Results426 tests 416 ✅ 14m 24s ⏱️ Results for commit 8801617. ♻️ This comment has been updated with latest results. |
4d3ea53
to
f5e080d
Compare
739d80e
to
756fd78
Compare
d920ee5
to
462da64
Compare
96653db
to
7018e2a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems to be still missing the actual API integration.
Please don't make the same mistake which we just refactored from.
This being said, we could demonstrate this state already.
62064f4
to
048dfba
Compare
158cca5
to
099366e
Compare
f5f8fce
to
e47cc5b
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is correct now and could be merged. Some minor comments on how the API is shaped (I like the simple numbers as versions, but also dislike that it looks different between api and logs)
b8b83e8
to
8aacb1b
Compare
8aacb1b
to
8801617
Compare
@locallycompact FYI the single commit here now does not follow our coding standards (it has a very long first line) |
8801617
to
e5bec4f
Compare
Hydra now uses a versioned protocol for handshaking. In the event of a node attempting to connect using a different version of the networking protocol, a `HandshakeFailure` event will be recorded in the logs and sent as a server output on the API.
e5bec4f
to
79daa18
Compare
I would like to fix the inconsistencies between the schemas after attempting to break up the schema files a bit, so they are more manageable. |
Hydra now uses a versioned protocol for handshaking. In the event of a node attempting to connect using a different version of the networking protocol, a
HandshakeFailure
event will be recorded in the logs.