Skip to content
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

feat(server/v2): Add snapshots commands #21065

Merged
merged 26 commits into from
Aug 6, 2024
Merged

feat(server/v2): Add snapshots commands #21065

merged 26 commits into from
Aug 6, 2024

Conversation

hieuvubk
Copy link
Contributor

@hieuvubk hieuvubk commented Jul 25, 2024

Description

Closes: #20512

Add snapshots commands for server/v2:

  • Export
  • Delete
  • Dump
  • List
  • Load
  • Restore

Tests:

  • Local test

Blocked on:

Author Checklist

All items are required. Please add a note to the item if the item is not applicable and
please add links to any relevant follow up issues.

I have...

  • included the correct type prefix in the PR title, you can find examples of the prefixes below:
  • confirmed ! in the type prefix if API or client breaking change
  • targeted the correct branch (see PR Targeting)
  • provided a link to the relevant issue or specification
  • reviewed "Files changed" and left comments if necessary
  • included the necessary unit and integration tests
  • added a changelog entry to CHANGELOG.md
  • updated the relevant documentation or specification, including comments for documenting Go code
  • confirmed all CI checks have passed

Reviewers Checklist

All items are required. Please add a note if the item is not applicable and please add
your handle next to the items reviewed if you only reviewed selected items.

Please see Pull Request Reviewer section in the contributing guide for more information on how to review a pull request.

I have...

  • confirmed the correct type prefix in the PR title
  • confirmed all author checklist items have been addressed
  • reviewed state machine logic, API design and naming, documentation is accurate, tests and test coverage

Summary by CodeRabbit

  • New Features

    • Introduced snapshot management functionality, allowing users to export, restore, list, delete, and archive application state snapshots.
    • Added commands for handling snapshots directly within the command-line interface.
    • Added a new script to manage the lifecycle of a blockchain node, including initialization, configuration adjustments, and snapshot management.
  • Improvements

    • Streamlined command handling by consolidating command retrieval into a single method.
    • Enhanced clarity in command registration and configuration management.
    • Adjusted pruning operation intervals to optimize performance and memory management.
    • Improved command initialization process for better modularity.
  • Bug Fixes

    • Reinstated gRPC server functionality in the testnet setup, ensuring proper communication operations.

Copy link
Contributor

coderabbitai bot commented Jul 25, 2024

Walkthrough

Walkthrough

The recent changes enhance the simapp/v2 module by implementing a comprehensive set of CLI commands for managing blockchain state snapshots. This includes functionalities for exporting, restoring, listing, deleting, and archiving snapshots, alongside improvements in command handling for better modularity and readability. These modifications streamline the blockchain management process, facilitating easier testing and development.

Changes

Files Change Summary
scripts/test_snapshots_export_restore.sh, scripts/test_snapshots_v2.sh New scripts for initializing a blockchain node and managing snapshot operations.
server/v2/store/commands.go, server/v2/store/flags.go Simplified command handling by accessing the home directory via viper; renamed FlagPruningKeepRecent to FlagKeepRecent and added FlagInterval.
server/v2/store/server.go, server/v2/store/snapshot.go Consolidated command management into CLICommands and introduced functions for managing snapshots: export, restore, list, delete, dump, and load archives.
simapp/v2/simdv2/cmd/commands.go, simapp/v2/simdv2/cmd/testnet.go Updated command initialization, reintroducing grpcServer and associating commands with the store component; reinstated grpcServer instantiation in testnet setup.
store/v2/root/factory.go Adjusted pruning intervals in DefaultStoreOptions for SCPruningOption and SSPruningOption.

Assessment against linked issues

Objective Addressed Explanation
Implementation of CLI snapshot commands (#20512)
Adaptation from client/v1 or reuse with abstraction No clear adaptation or reuse from client/v1 noted.

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

); err != nil {
panic(err)
}

// Add RestoreSnapshotCmd separately cause need appCreator
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

imho we still need appCreator here for storeKeys since removing ss & sc database for restore cmd

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hum, cannot store.New take the appCreator?

}

func processChunk(tarWriter *tar.Writer, path, tarName string) error {
file, err := os.Open(path)

Check failure

Code scanning / gosec

Potential file inclusion via variable Error

Potential file inclusion via variable
}

path := args[0]
fp, err := os.Open(path)

Check failure

Code scanning / gosec

Potential file inclusion via variable Error

Potential file inclusion via variable
return err
}

fp, err := os.Create(output)

Check failure

Code scanning / gosec

Potential file inclusion via variable Error

Potential file inclusion via variable
@hieuvubk hieuvubk marked this pull request as ready for review August 1, 2024 09:39
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can this be a system test instead? cc @alpe

); err != nil {
panic(err)
}

// Add RestoreSnapshotCmd separately cause need appCreator
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hum, cannot store.New take the appCreator?

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

Outside diff range, codebase verification and nitpick comments (10)
server/v2/store/flags.go (1)

5-5: Incomplete renaming of constant.

The constant FlagPruningKeepRecent has not been fully renamed to FlagKeepRecent across the codebase. Please ensure that all occurrences of FlagPruningKeepRecent are updated to FlagKeepRecent.

  • server/pruning.go
  • server/pruning_test.go
  • server/start.go
  • client/pruning/main.go
Analysis chain

Verify the usage of the renamed constant.

Ensure that all occurrences of FlagPruningKeepRecent have been updated to FlagKeepRecent across the codebase.

Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify all occurrences of the renamed constant `FlagKeepRecent`.

# Test: Search for the old constant name. Expect: No occurrences of the old name.
rg --type go 'FlagPruningKeepRecent'

# Test: Search for the new constant name. Expect: Occurrences of the new name.
rg --type go 'FlagKeepRecent'

Length of output: 1212

server/v2/store/snapshot.go (8)

28-75: Ensure proper error handling and logging.

The function handles errors correctly and logs important steps. However, consider logging the start and end of the process for better traceability.

+ cmd.Println("Starting snapshot export")
...
+ cmd.Println("Snapshot export completed")

79-113: Ensure proper error handling and logging.

The function handles errors correctly and logs important steps. However, consider logging the start and end of the process for better traceability.

+ cmd.Println("Starting snapshot restoration")
...
+ cmd.Println("Snapshot restoration completed")

116-139: Ensure proper error handling and logging.

The function handles errors correctly and logs important steps. However, consider logging the start and end of the process for better traceability.

+ cmd.Println("Listing snapshots")
...
+ cmd.Println("Snapshots listing completed")

142-167: Ensure proper error handling and logging.

The function handles errors correctly and logs important steps. However, consider logging the start and end of the process for better traceability.

+ cmd.Println("Starting snapshot deletion")
...
+ cmd.Println("Snapshot deletion completed")

170-259: Ensure proper error handling and logging.

The function handles errors correctly and logs important steps. However, consider logging the start and end of the process for better traceability.

+ cmd.Println("Starting snapshot dump")
...
+ cmd.Println("Snapshot dump completed")

263-349: Ensure proper error handling and logging.

The function handles errors correctly and logs important steps. However, consider logging the start and end of the process for better traceability.

+ cmd.Println("Starting snapshot load")
...
+ cmd.Println("Snapshot load completed")

353-376: Ensure proper error handling and logging.

The function handles errors correctly and logs important steps. However, consider logging the start and end of the process for better traceability.

+ logger.Info("Creating snapshot manager")
...
+ logger.Info("Snapshot manager created")

383-407: Ensure proper error handling and logging.

The function handles errors correctly and logs important steps. However, consider logging the start and end of the process for better traceability.

+ logger.Info("Processing chunk", "path", path)
...
+ logger.Info("Chunk processed", "path", path)
simapp/v2/simdv2/cmd/testnet.go (1)

347-347: Ensure proper error handling and logging.

The grpcServer initialization is reintroduced. Ensure proper error handling and logging for this initialization.

+ logger.Info("Initializing grpcServer")
...
+ logger.Info("grpcServer initialized")
Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between aee9803 and f8061a8.

Files selected for processing (8)
  • scripts/test_snapshots_export_restore.sh (1 hunks)
  • server/v2/store/commands.go (3 hunks)
  • server/v2/store/flags.go (1 hunks)
  • server/v2/store/server.go (1 hunks)
  • server/v2/store/snapshot.go (1 hunks)
  • simapp/v2/simdv2/cmd/commands.go (2 hunks)
  • simapp/v2/simdv2/cmd/testnet.go (1 hunks)
  • store/v2/root/factory.go (1 hunks)
Additional context used
Path-based instructions (7)
server/v2/store/flags.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

server/v2/store/server.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

store/v2/root/factory.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

server/v2/store/commands.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

simapp/v2/simdv2/cmd/commands.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

server/v2/store/snapshot.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

simapp/v2/simdv2/cmd/testnet.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

Shellcheck
scripts/test_snapshots_export_restore.sh

[warning] 14-14: Quote this to prevent word splitting.

(SC2046)

Additional comments not posted (11)
server/v2/store/flags.go (1)

6-6: Verify the usage of the new constant.

Ensure that the new constant FlagInterval is used correctly in the codebase.

Verification successful

Verify the usage of the new constant FlagInterval.

The constant FlagInterval is used correctly in the following locations:

  • server/v2/store/snapshot.go: if cmd.Flags().Changed(FlagInterval) {
  • server/v2/store/snapshot.go: interval, err = cmd.Flags().GetUint64(FlagInterval)
  • server/v2/store/snapshot.go: cmd.Flags().Uint64(FlagInterval, 0, "Interval defines at which heights the snapshot is taken")

These usages are consistent with handling command-line flags in Go.

Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify the usage of the new constant `FlagInterval`.

# Test: Search for the new constant name. Expect: Occurrences of the new name.
rg --type go 'FlagInterval'

Length of output: 357

server/v2/store/server.go (2)

52-56: Verify the removal of methods.

Ensure that all references to the removed methods GetCommands, GetTxs, and GetQueries have been updated or removed across the codebase.


52-56: LGTM! But verify the new command methods.

The code changes are approved.

However, ensure that the new command methods ExportSnapshotCmd, DeleteSnapshotCmd, ListSnapshotsCmd, DumpArchiveCmd, and LoadArchiveCmd are implemented and used correctly.

scripts/test_snapshots_export_restore.sh (1)

1-50: LGTM! But verify the script functionality.

The code changes are approved.

However, ensure that the script functions correctly and achieves the intended purpose.

Tools
Shellcheck

[warning] 14-14: Quote this to prevent word splitting.

(SC2046)

store/v2/root/factory.go (1)

58-62: Verify the impact of increased pruning intervals.

The Interval value for SCPruningOption and SSPruningOption has been increased from 1 to 100. Ensure that this change does not negatively impact performance and memory management.

server/v2/store/commands.go (3)

48-48: LGTM! Simplified function signature.

The createRootStore function now directly accesses the home directory using the viper configuration, simplifying the function signature and streamlining the command's execution logic.


77-77: LGTM! Renamed flag for clarity.

The flag for keeping recent heights has been renamed from FlagPruningKeepRecent to FlagKeepRecent, enhancing clarity and maintainability.


Line range hint 82-102:
LGTM! Improved configuration handling.

The home directory is now accessed using the viper configuration, and the flag handling logic has been updated, simplifying the function signature and improving the handling of configuration parameters.

simapp/v2/simdv2/cmd/commands.go (3)

71-71: LGTM! Enhanced modularity.

The direct instantiation of the store component has been replaced with a new variable storeComponent, enhancing clarity and modularity.


79-79: LGTM! Proper initialization of storeComponent.

The storeComponent is now passed as an argument to the AddCommands function, ensuring proper initialization.


84-90: LGTM! Explicit association of snapshot restoration.

The loop adds a RestoreSnapshotCmd specifically tied to the storeComponent, ensuring that the snapshot restoration functionality is explicitly associated with the newly created store component.


COSMOS_BUILD_OPTIONS=v2 make build

if [ -d "$($SIMD config home)" ]; then rm -rv $($SIMD config home); fi
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Quote the command substitution to prevent word splitting.

The command substitution should be quoted to prevent word splitting and potential issues.

- if [ -d "$($SIMD config home)" ]; then rm -rv $($SIMD config home); fi
+ if [ -d "$("$SIMD" config home)" ]; then rm -rv "$("$SIMD" config home)"; fi
Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
if [ -d "$($SIMD config home)" ]; then rm -rv $($SIMD config home); fi
if [ -d "$("$SIMD" config home)" ]; then rm -rv "$("$SIMD" config home)"; fi
Tools
Shellcheck

[warning] 14-14: Quote this to prevent word splitting.

(SC2046)

server/v2/store/snapshot.go Dismissed Show dismissed Hide dismissed
server/v2/store/snapshot.go Dismissed Show dismissed Hide dismissed
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between f8061a8 and de47370.

Files selected for processing (2)
  • server/v2/store/server.go (1 hunks)
  • store/v2/root/factory.go (1 hunks)
Files skipped from review as they are similar to previous changes (2)
  • server/v2/store/server.go
  • store/v2/root/factory.go

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between de47370 and 4735146.

Files selected for processing (3)
  • server/v2/store/server.go (2 hunks)
  • simapp/v2/simdv2/cmd/commands.go (2 hunks)
  • simapp/v2/simdv2/cmd/testnet.go (2 hunks)
Files skipped from review as they are similar to previous changes (3)
  • server/v2/store/server.go
  • simapp/v2/simdv2/cmd/commands.go
  • simapp/v2/simdv2/cmd/testnet.go


kill -9 "$SIMD_PID"

$SIMD store export --height 5
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Update full flow test.
cc @julienrbrt @alpe

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 4735146 and 79a9728.

Files selected for processing (1)
  • scripts/test_snapshots_v2.sh (1 hunks)
Additional context used
Shellcheck
scripts/test_snapshots_v2.sh

[warning] 14-14: Quote this to prevent word splitting.

(SC2046)

Additional comments not posted (11)
scripts/test_snapshots_v2.sh (11)

1-6: Good practice: Error handling and debugging options.

The use of set -o errexit, set -o nounset, and set -x is a good practice for error handling and debugging.


7-11: Define variables with clear context.

The variables ROOT, SIMD, and CONFIG are defined with clear context. Ensure that the $ROOT/build/simdv2 path is correct and the CONFIG variable is set appropriately.


12-12: Ensure build options are correct.

The build command COSMOS_BUILD_OPTIONS=v2 make build should be verified to ensure it includes all necessary build options for simapp/v2.


16-16: Initialization command is appropriate.

The command $SIMD init simapp-v2-node --chain-id simapp-v2-chain initializes the blockchain node with the specified chain ID.


20-24: Genesis file modifications are clear.

The genesis file modifications using jq are clear and correctly update the voting period and inflation parameters.


26-27: Client configuration and key addition are correct.

The client configuration and key addition commands are correct. Ensure that the --indiscreet flag for keys add is intentional and secure.


28-33: Genesis account and transaction setup are correct.

The commands for adding a genesis account, generating a transaction, and collecting genesis transactions are correct. Ensure that the keyring backend is set appropriately.


34-41: Review sleep duration and process termination.

The sleep duration of 10 seconds and the use of kill -9 should be reviewed to ensure they are appropriate for the test scenario. Consider using a more graceful shutdown method if possible.


42-51: Snapshot operations are clear and specific.

The snapshot operations (export, dump, delete, load, list) are clear and specific to the functionality being tested. Ensure that the paths and parameters are correct and valid.


52-55: Data clearing commands are appropriate.

The commands for clearing the data directories are appropriate for ensuring a clean state before restoration.


58-63: Review restoration and node restart process.

The restoration command and node restart process are appropriate. Review the sleep duration and consider a more graceful shutdown method if possible.


COSMOS_BUILD_OPTIONS=v2 make build

if [ -d "$($SIMD config home)" ]; then rm -rv $($SIMD config home); fi
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Quote the command substitution to prevent word splitting.

To prevent potential word splitting issues, quote the command substitution.

- if [ -d "$($SIMD config home)" ]; then rm -rv $($SIMD config home); fi
+ if [ -d "$($SIMD config home)" ]; then rm -rv "$($SIMD config home)"; fi
Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
if [ -d "$($SIMD config home)" ]; then rm -rv $($SIMD config home); fi
if [ -d "$($SIMD config home)" ]; then rm -rv "$($SIMD config home)"; fi
Tools
Shellcheck

[warning] 14-14: Quote this to prevent word splitting.

(SC2046)

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 79a9728 and c03a6c8.

Files selected for processing (1)
  • server/v2/store/server.go (2 hunks)
Files skipped from review as they are similar to previous changes (1)
  • server/v2/store/server.go

@hieuvubk hieuvubk requested a review from julienrbrt August 6, 2024 11:49
// wire server commands
if err = serverv2.AddCommands(
rootCmd,
newApp,
logger,
cometbft.New(&genericTxDecoder[T]{txConfig}, cometbft.DefaultServerOptions[T]()),
grpc.New[T](),
store.New[T](),
storeComponent,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit, instiante here

@@ -0,0 +1,63 @@
#!/usr/bin/env bash
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would still prefer this as a system test, as this never run anywhere. Can we maybe remove this and create an issue for it?

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between c03a6c8 and f1f462e.

Files selected for processing (1)
  • simapp/v2/simdv2/cmd/commands.go (2 hunks)
Files skipped from review as they are similar to previous changes (1)
  • simapp/v2/simdv2/cmd/commands.go

@hieuvubk hieuvubk added this pull request to the merge queue Aug 6, 2024
Merged via the queue into main with commit 8fb47b3 Aug 6, 2024
76 of 77 checks passed
@hieuvubk hieuvubk deleted the hieu/snapshot-cmd branch August 6, 2024 15:32
mergify bot pushed a commit that referenced this pull request Aug 6, 2024
(cherry picked from commit 8fb47b3)

# Conflicts:
#	server/v2/store/commands.go
#	server/v2/store/flags.go
#	server/v2/store/server.go
#	store/v2/root/factory.go
julienrbrt added a commit that referenced this pull request Aug 6, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backport/v0.52.x PR scheduled for inclusion in the v0.52's next stable release C:server/v2 Issues related to server/v2 C:Store
Projects
None yet
Development

Successfully merging this pull request may close these issues.

simapp/v2 needs an implementation of CLI snapshot commands
3 participants