-
Notifications
You must be signed in to change notification settings - Fork 33
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
[DOCUMENT][DEMO] Block by block state sync #579
Labels
consensus
Consensus specific changes
documentation
Improvements or additions to documentation
testing
Defining, adding, automating or modifying tests
Milestone
Comments
jessicadaugherty
added
triage
It requires some decision-making at team level (it can't be worked on as it stands)
documentation
Improvements or additions to documentation
consensus
Consensus specific changes
labels
Mar 13, 2023
jessicadaugherty
changed the title
[WIP][DEMO] Block by block state sync
[WIP][DOCUMENT][DEMO] Block by block state sync
Mar 13, 2023
jessicadaugherty
changed the title
[WIP][DOCUMENT][DEMO] Block by block state sync
[DOCUMENT][DEMO] Block by block state sync
Apr 3, 2023
20 tasks
20 tasks
Olshansk
added
testing
Defining, adding, automating or modifying tests
and removed
triage
It requires some decision-making at team level (it can't be worked on as it stands)
labels
Jul 30, 2023
Olshansk
added a commit
that referenced
this issue
Aug 3, 2023
## Description <!-- reviewpad:summarize:start --> ### Summary generated by Reviewpad on 03 Aug 23 20:11 UTC This pull request introduces several changes across multiple files. Here is a summary of the changes: 1. `go.mod`: - The `golang.org/x/text` dependency is now listed explicitly instead of being an indirect dependency. 2. `scenario_test.go`: - Added a new feature called "State Sync Namespace" that includes various commands and waits for specific amounts of time. - Code improvements and TODO comments have been added. 3. `FAQ.md`: - Updated an issue related to starting LocalNet with SELinux on an operating system. Replaced the command `make compose_and_watch` with `make lightweight_localnet` to avoid permission denied errors. 4. `.gitignore`: - Removed the entry "main" from the list of ignored files. - Removed the entries "rpc/server.gen.go" and "rpc/client.gen.go" from the list of ignored files. - Added the entry "**/gomock_reflect_*/" to ignore mock temporary files. 5. `e2e/README.md`: - Added a new section on `Keywords`. - Modified scenario descriptions and code examples to replace instances of "Validator" with "Node". - Included a flowchart depicting the E2E scenarios with updated terminology. 6. Consensus module files: - Added a new logging statement in the `HandleDebugMessage` function. - Simplified the handling of the `DEBUG_CONSENSUS_RESET_TO_GENESIS` action. 7. `.tiltignore`: - Removed the entry "main" from the list of ignored files. - Removed the entries "rpc/server.gen.go" and "rpc/client.gen.go" from the list of ignored files. 8. `CHANGELOG.md`: - Updated build commands and added a new section on `Keywords`. 9. `persistence/docs/CHANGELOG.md`: - Several changes related to deprecation, addition, and fixing of functions and issues. 10. `validator.feature`: - Renamed file from "valdator.feature" to "validator.feature". - Updated scenario titles and step descriptions to use more descriptive terminology. - Replaced references to "validator" with "node". 11. `tilt_helpers.go`: - Added a new file containing functions related to syncing network configuration and checking package installation. 12. `debug.go`: - Added new debug commands and subcommands. - Updated existing functions and added new functions for debug actions. 13. `account.feature`: - Added a new file containing scenarios for testing node account functionalities. 14. `README.md` files: - Updated sections, titles, dependencies, and instructions in various README.md files. 15. `build/config/README.md`: - Updated usage instructions, changing the command `make compose_and_watch` to `make lightweight_localnet`. 16. `iteration_3_end_to_end_tx.md`: - Updated commands to start LocalNet and consensus debugger. 17. Deleted files: - `validator.go` - `watch_build.sh` 18. New files added: - `debug.feature` - `tilt_helpers.go` - `account.feature` Please let me know if you need more information about any specific change. <!-- reviewpad:summarize:end --> ## Issue Fixes par of #579 ## Type of change Please mark the relevant option(s): - [x] New feature, functionality or library - [ ] Bug fix - [ ] Code health or cleanup - [ ] Major breaking change - [ ] Documentation - [ ] Other <!-- add details here if it a different type of change --> ## List of changes - `s/compose_and_watch/lightweight_localnet` and all related helpers - `s/validator/node` in e2e tests for clarity - Add fire-and-forget `Debug` CLI w/ several useful initial subcommands - Add `keywords` to the `e2e` document - Add an `e2e debug` test to trigger views and track the blockchain increasing - Avoid rebuilding the actors if the CLI changes - Small miscellaneous improvements & code cleanup ## Testing - [x] `make develop_test`; if any code changes were made - [ ] `make test_e2e` on [k8s LocalNet](https://github.com/pokt-network/pocket/blob/main/build/localnet/README.md); if any code changes were made - [ ] `e2e-devnet-test` passes tests on [DevNet](https://pocketnetwork.notion.site/How-to-DevNet-ff1598f27efe44c09f34e2aa0051f0dd); if any code was changed - [ ] [Docker Compose LocalNet](https://github.com/pokt-network/pocket/blob/main/docs/development/README.md); if any major functionality was changed or introduced - [ ] [k8s LocalNet](https://github.com/pokt-network/pocket/blob/main/build/localnet/README.md); if any infrastructure or configuration changes were made ## Required Checklist - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas - [ ] I have added, or updated, [`godoc` format comments](https://go.dev/blog/godoc) on touched members (see: [tip.golang.org/doc/comment](https://tip.golang.org/doc/comment)) - [ ] I have tested my changes using the available tooling - [ ] I have updated the corresponding CHANGELOG ### If Applicable Checklist - [x] I have updated the corresponding README(s); local and/or global - [x] I have added tests that prove my fix is effective or that my feature works - [ ] I have added, or updated, [mermaid.js](https://mermaid-js.github.io) diagrams in the corresponding README(s) - [ ] I have added, or updated, documentation and [mermaid.js](https://mermaid-js.github.io) diagrams in `shared/docs/*` if I updated `shared/*`README(s) --- Co-authored-by: d7t <[email protected]>
red-0ne
pushed a commit
that referenced
this issue
Aug 4, 2023
## Description <!-- reviewpad:summarize:start --> ### Summary generated by Reviewpad on 03 Aug 23 20:11 UTC This pull request introduces several changes across multiple files. Here is a summary of the changes: 1. `go.mod`: - The `golang.org/x/text` dependency is now listed explicitly instead of being an indirect dependency. 2. `scenario_test.go`: - Added a new feature called "State Sync Namespace" that includes various commands and waits for specific amounts of time. - Code improvements and TODO comments have been added. 3. `FAQ.md`: - Updated an issue related to starting LocalNet with SELinux on an operating system. Replaced the command `make compose_and_watch` with `make lightweight_localnet` to avoid permission denied errors. 4. `.gitignore`: - Removed the entry "main" from the list of ignored files. - Removed the entries "rpc/server.gen.go" and "rpc/client.gen.go" from the list of ignored files. - Added the entry "**/gomock_reflect_*/" to ignore mock temporary files. 5. `e2e/README.md`: - Added a new section on `Keywords`. - Modified scenario descriptions and code examples to replace instances of "Validator" with "Node". - Included a flowchart depicting the E2E scenarios with updated terminology. 6. Consensus module files: - Added a new logging statement in the `HandleDebugMessage` function. - Simplified the handling of the `DEBUG_CONSENSUS_RESET_TO_GENESIS` action. 7. `.tiltignore`: - Removed the entry "main" from the list of ignored files. - Removed the entries "rpc/server.gen.go" and "rpc/client.gen.go" from the list of ignored files. 8. `CHANGELOG.md`: - Updated build commands and added a new section on `Keywords`. 9. `persistence/docs/CHANGELOG.md`: - Several changes related to deprecation, addition, and fixing of functions and issues. 10. `validator.feature`: - Renamed file from "valdator.feature" to "validator.feature". - Updated scenario titles and step descriptions to use more descriptive terminology. - Replaced references to "validator" with "node". 11. `tilt_helpers.go`: - Added a new file containing functions related to syncing network configuration and checking package installation. 12. `debug.go`: - Added new debug commands and subcommands. - Updated existing functions and added new functions for debug actions. 13. `account.feature`: - Added a new file containing scenarios for testing node account functionalities. 14. `README.md` files: - Updated sections, titles, dependencies, and instructions in various README.md files. 15. `build/config/README.md`: - Updated usage instructions, changing the command `make compose_and_watch` to `make lightweight_localnet`. 16. `iteration_3_end_to_end_tx.md`: - Updated commands to start LocalNet and consensus debugger. 17. Deleted files: - `validator.go` - `watch_build.sh` 18. New files added: - `debug.feature` - `tilt_helpers.go` - `account.feature` Please let me know if you need more information about any specific change. <!-- reviewpad:summarize:end --> ## Issue Fixes par of #579 ## Type of change Please mark the relevant option(s): - [x] New feature, functionality or library - [ ] Bug fix - [ ] Code health or cleanup - [ ] Major breaking change - [ ] Documentation - [ ] Other <!-- add details here if it a different type of change --> ## List of changes - `s/compose_and_watch/lightweight_localnet` and all related helpers - `s/validator/node` in e2e tests for clarity - Add fire-and-forget `Debug` CLI w/ several useful initial subcommands - Add `keywords` to the `e2e` document - Add an `e2e debug` test to trigger views and track the blockchain increasing - Avoid rebuilding the actors if the CLI changes - Small miscellaneous improvements & code cleanup ## Testing - [x] `make develop_test`; if any code changes were made - [ ] `make test_e2e` on [k8s LocalNet](https://github.com/pokt-network/pocket/blob/main/build/localnet/README.md); if any code changes were made - [ ] `e2e-devnet-test` passes tests on [DevNet](https://pocketnetwork.notion.site/How-to-DevNet-ff1598f27efe44c09f34e2aa0051f0dd); if any code was changed - [ ] [Docker Compose LocalNet](https://github.com/pokt-network/pocket/blob/main/docs/development/README.md); if any major functionality was changed or introduced - [ ] [k8s LocalNet](https://github.com/pokt-network/pocket/blob/main/build/localnet/README.md); if any infrastructure or configuration changes were made ## Required Checklist - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas - [ ] I have added, or updated, [`godoc` format comments](https://go.dev/blog/godoc) on touched members (see: [tip.golang.org/doc/comment](https://tip.golang.org/doc/comment)) - [ ] I have tested my changes using the available tooling - [ ] I have updated the corresponding CHANGELOG ### If Applicable Checklist - [x] I have updated the corresponding README(s); local and/or global - [x] I have added tests that prove my fix is effective or that my feature works - [ ] I have added, or updated, [mermaid.js](https://mermaid-js.github.io) diagrams in the corresponding README(s) - [ ] I have added, or updated, documentation and [mermaid.js](https://mermaid-js.github.io) diagrams in `shared/docs/*` if I updated `shared/*`README(s) --- Co-authored-by: d7t <[email protected]>
dylanlott
added a commit
that referenced
this issue
Aug 7, 2023
## Description <!-- reviewpad:summarize:start --> ### Summary generated by Reviewpad on 03 Aug 23 20:11 UTC This pull request introduces several changes across multiple files. Here is a summary of the changes: 1. `go.mod`: - The `golang.org/x/text` dependency is now listed explicitly instead of being an indirect dependency. 2. `scenario_test.go`: - Added a new feature called "State Sync Namespace" that includes various commands and waits for specific amounts of time. - Code improvements and TODO comments have been added. 3. `FAQ.md`: - Updated an issue related to starting LocalNet with SELinux on an operating system. Replaced the command `make compose_and_watch` with `make lightweight_localnet` to avoid permission denied errors. 4. `.gitignore`: - Removed the entry "main" from the list of ignored files. - Removed the entries "rpc/server.gen.go" and "rpc/client.gen.go" from the list of ignored files. - Added the entry "**/gomock_reflect_*/" to ignore mock temporary files. 5. `e2e/README.md`: - Added a new section on `Keywords`. - Modified scenario descriptions and code examples to replace instances of "Validator" with "Node". - Included a flowchart depicting the E2E scenarios with updated terminology. 6. Consensus module files: - Added a new logging statement in the `HandleDebugMessage` function. - Simplified the handling of the `DEBUG_CONSENSUS_RESET_TO_GENESIS` action. 7. `.tiltignore`: - Removed the entry "main" from the list of ignored files. - Removed the entries "rpc/server.gen.go" and "rpc/client.gen.go" from the list of ignored files. 8. `CHANGELOG.md`: - Updated build commands and added a new section on `Keywords`. 9. `persistence/docs/CHANGELOG.md`: - Several changes related to deprecation, addition, and fixing of functions and issues. 10. `validator.feature`: - Renamed file from "valdator.feature" to "validator.feature". - Updated scenario titles and step descriptions to use more descriptive terminology. - Replaced references to "validator" with "node". 11. `tilt_helpers.go`: - Added a new file containing functions related to syncing network configuration and checking package installation. 12. `debug.go`: - Added new debug commands and subcommands. - Updated existing functions and added new functions for debug actions. 13. `account.feature`: - Added a new file containing scenarios for testing node account functionalities. 14. `README.md` files: - Updated sections, titles, dependencies, and instructions in various README.md files. 15. `build/config/README.md`: - Updated usage instructions, changing the command `make compose_and_watch` to `make lightweight_localnet`. 16. `iteration_3_end_to_end_tx.md`: - Updated commands to start LocalNet and consensus debugger. 17. Deleted files: - `validator.go` - `watch_build.sh` 18. New files added: - `debug.feature` - `tilt_helpers.go` - `account.feature` Please let me know if you need more information about any specific change. <!-- reviewpad:summarize:end --> ## Issue Fixes par of #579 ## Type of change Please mark the relevant option(s): - [x] New feature, functionality or library - [ ] Bug fix - [ ] Code health or cleanup - [ ] Major breaking change - [ ] Documentation - [ ] Other <!-- add details here if it a different type of change --> ## List of changes - `s/compose_and_watch/lightweight_localnet` and all related helpers - `s/validator/node` in e2e tests for clarity - Add fire-and-forget `Debug` CLI w/ several useful initial subcommands - Add `keywords` to the `e2e` document - Add an `e2e debug` test to trigger views and track the blockchain increasing - Avoid rebuilding the actors if the CLI changes - Small miscellaneous improvements & code cleanup ## Testing - [x] `make develop_test`; if any code changes were made - [ ] `make test_e2e` on [k8s LocalNet](https://github.com/pokt-network/pocket/blob/main/build/localnet/README.md); if any code changes were made - [ ] `e2e-devnet-test` passes tests on [DevNet](https://pocketnetwork.notion.site/How-to-DevNet-ff1598f27efe44c09f34e2aa0051f0dd); if any code was changed - [ ] [Docker Compose LocalNet](https://github.com/pokt-network/pocket/blob/main/docs/development/README.md); if any major functionality was changed or introduced - [ ] [k8s LocalNet](https://github.com/pokt-network/pocket/blob/main/build/localnet/README.md); if any infrastructure or configuration changes were made ## Required Checklist - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas - [ ] I have added, or updated, [`godoc` format comments](https://go.dev/blog/godoc) on touched members (see: [tip.golang.org/doc/comment](https://tip.golang.org/doc/comment)) - [ ] I have tested my changes using the available tooling - [ ] I have updated the corresponding CHANGELOG ### If Applicable Checklist - [x] I have updated the corresponding README(s); local and/or global - [x] I have added tests that prove my fix is effective or that my feature works - [ ] I have added, or updated, [mermaid.js](https://mermaid-js.github.io) diagrams in the corresponding README(s) - [ ] I have added, or updated, documentation and [mermaid.js](https://mermaid-js.github.io) diagrams in `shared/docs/*` if I updated `shared/*`README(s) --- Co-authored-by: d7t <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
consensus
Consensus specific changes
documentation
Improvements or additions to documentation
testing
Defining, adding, automating or modifying tests
Objective
Productionize an E2E demo of state sync using localnet to show the functionality of the state sync server, state machines, and the download and application of blocks on a node by node basis.
Origin Document
Iteration Demos
Goals
Deliverable
Non-goals / Non-deliverables
General issue deliverables
Testing Methodology
make test_all
LocalNet
is still functioning correctly by following the instructions at docs/development/README.mdCreator: @jessicadaugherty
The text was updated successfully, but these errors were encountered: