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

refactor: refactor lookup zone by denom #1198

Merged
merged 4 commits into from
Mar 1, 2024
Merged

Conversation

minhngoc274
Copy link
Contributor

@minhngoc274 minhngoc274 commented Feb 27, 2024

1. Summary

Fixes #993

2.Type of change

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • This change requires a documentation update

3. Implementation details

4. How to test/use

5. Checklist

  • Does the Readme need to be updated?

6. Limitations (optional)

7. Future Work (optional)

Handle upgrades V010600UpgradeName, iterate zones and add to denom <-> zone mapping

Summary by CodeRabbit

  • New Features
    • Enhanced zone management capabilities for interchain staking, including automatic zone mapping updates.
  • Bug Fixes
    • Improved the redemption request process by optimizing zone retrieval.
  • Tests
    • Added tests for local denom zone mapping functionality.
  • Refactor
    • Streamlined zone deletion and associated record management.

Copy link
Contributor

coderabbitai bot commented Feb 27, 2024

Walkthrough

The update focuses on enhancing the efficiency of denom-to-zone lookups in the interchain staking module by introducing a mapping system. This system allows for quicker retrieval of zone information based on denom, eliminating the need for iterative searches. Key changes include the addition of functions and a key prefix to manage these mappings, and an update to the RequestRedemption function to utilize this new system. A test function ensures the functionality works as intended.

Changes

File Path Change Summary
x/interchainstaking/keeper/keeper.go Added functions for managing local denom to zone mappings.
x/interchainstaking/keeper/zones.go Updated RemoveZoneAndAssociatedRecords to use new mapping deletion function.
x/interchainstaking/keeper/keeper_test.go Added TestLocalDenomZoneMapping for testing new mapping functionality.
x/interchainstaking/keeper/msg_server.go Modified RequestRedemption to use the new mapping retrieval function.
x/interchainstaking/types/keys.go Introduced KeyPrefixLocalDenomZoneMapping for denom to zone mappings.

Assessment against linked issues

Objective Addressed Explanation
Refactor denom->zone lookup for performance (#993)

🐰🎉
To zones we map, with speed we leap,
Across the chains, no more we peep.
For each denom, a path we find,
Efficiency in code, entwined.
🌟 In mappings trust, our leaps are bold,
A rabbit's tale, of tech untold.
🚀🐇💨

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-tests for this file.
  • 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 tests 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 from git and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit tests.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

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 a review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai help to get help.

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

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • The JSON schema for the configuration file is available here.
  • 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/coderabbit-overrides.v2.json

CodeRabbit Discord Community

Join our Discord Community to get help, request features, and share feedback.

Copy link

vercel bot commented Feb 27, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
quicksilver ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 1, 2024 8:14am

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.

Review Status

Actionable comments generated: 2

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between 8bb939c and 2e7df3e.
Files selected for processing (5)
  • x/interchainstaking/keeper/keeper.go (1 hunks)
  • x/interchainstaking/keeper/keeper_test.go (1 hunks)
  • x/interchainstaking/keeper/msg_server.go (1 hunks)
  • x/interchainstaking/keeper/zones.go (1 hunks)
  • x/interchainstaking/types/keys.go (1 hunks)
Additional comments: 6
x/interchainstaking/types/keys.go (1)
  • 65-65: The addition of KeyPrefixLocalDenomZoneMapping follows the established pattern for defining key prefixes and is correctly implemented. This change is crucial for the performance improvements described, enabling efficient zone lookups by denomination.
x/interchainstaking/keeper/msg_server.go (1)
  • 39-39: The update to use GetZoneAndUpdateMappingIfNeeded for zone retrieval in the RequestRedemption function is a significant improvement. It aligns with the PR's objectives to enhance performance by replacing iterative zone lookups with efficient mapping-based retrievals. This change should ensure faster and more reliable zone lookups.
x/interchainstaking/keeper/zones.go (1)
  • 499-500: The addition of k.DeleteDenomZoneMapping(ctx, zone.LocalDenom) within the RemoveZoneAndAssociatedRecords function is a crucial step towards maintaining the integrity of the new mapping system by ensuring that denom to zone mappings are cleaned up alongside the zones themselves. This change aligns with the PR's objectives of improving lookup efficiency by preventing orphaned mappings that could degrade performance over time.

However, it's important to ensure that the DeleteDenomZoneMapping function handles edge cases gracefully, such as attempting to delete a mapping that does not exist. Additionally, considering the broader impact of this change on the system's performance and reliability is essential. If not already covered, adding tests to verify the correct behavior of DeleteDenomZoneMapping under various scenarios, including edge cases, would be beneficial to ensure the robustness of this implementation.

x/interchainstaking/keeper/keeper.go (2)
  • 222-233: The function GetLocalDenomZoneMapping is well-implemented, providing a straightforward way to retrieve a zone by denom from the mapping. A few points to note:
  • The function correctly handles the case where the denom is not found in the mapping by returning nil, false, which is good practice for indicating the absence of a value.
  • The use of prefix.NewStore and KeyPrefixLocalDenomZoneMapping ensures that the mapping is stored efficiently and is namespaced appropriately within the KV store.

This function is correctly implemented and follows best practices for KV store access and error handling.

  • 242-246: The DeleteDenomZoneMapping function is straightforward and correctly implements the deletion of a denom to zone mapping from the KV store. A few points to note:
  • The function uses prefix.NewStore and KeyPrefixLocalDenomZoneMapping consistently with other mapping-related functions, which is good for maintainability.
  • There are no checks or feedback mechanisms for the case where the denom does not exist in the mapping. While this is not strictly necessary, it might be useful in certain contexts to know whether the deletion was "successful" in terms of actually removing an existing entry.

This function is correctly implemented for its intended purpose. Consider adding feedback mechanisms if the context requires knowing the existence of a mapping before deletion.

x/interchainstaking/keeper/keeper_test.go (1)
  • 747-774: The TestLocalDenomZoneMapping function is well-structured and covers the essential aspects of testing the local denom to zone mapping functionality. It checks for the non-existence of a mapping, the creation of a mapping upon retrieval, and the deletion of the mapping. This test ensures that the mapping functionality works as expected, which is crucial for the performance improvements mentioned in the PR objectives.

However, it would be beneficial to add assertions to verify the correctness of the zone returned by GetZoneAndUpdateMappingIfNeeded against the expected zone. This would strengthen the test by not only checking the existence of the mapping but also ensuring that the correct zone is mapped to the given local denom.

@minhngoc274
Copy link
Contributor Author

Handle upgrades V010600UpgradeName, iterate zones and add to denom <-> zone mapping. Will do it when the PR#1184 been merged

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.

Review Status

Actionable comments generated: 0

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between 2e7df3e and 3df1156.
Files selected for processing (1)
  • x/interchainstaking/keeper/keeper.go (1 hunks)
Files skipped from review as they are similar to previous changes (1)
  • x/interchainstaking/keeper/keeper.go

Copy link

codecov bot commented Feb 27, 2024

Codecov Report

Attention: Patch coverage is 86.66667% with 4 lines in your changes are missing coverage. Please review.

Project coverage is 63.17%. Comparing base (e3184a0) to head (de94136).

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##             main    #1198      +/-   ##
==========================================
+ Coverage   63.13%   63.17%   +0.04%     
==========================================
  Files         171      171              
  Lines       11205    11229      +24     
==========================================
+ Hits         7074     7094      +20     
- Misses       3412     3414       +2     
- Partials      719      721       +2     
Flag Coverage Δ
unittests 63.17% <86.66%> (+0.04%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

Files Coverage Δ
x/interchainstaking/keeper/msg_server.go 83.90% <100.00%> (-0.45%) ⬇️
x/interchainstaking/keeper/zones.go 63.96% <100.00%> (+0.10%) ⬆️
x/interchainstaking/types/keys.go 32.00% <ø> (ø)
x/interchainstaking/keeper/keeper.go 72.31% <85.71%> (+0.79%) ⬆️

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.

Review Status

Actionable comments generated: 0

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between 3df1156 and de94136.
Files selected for processing (3)
  • x/interchainstaking/keeper/keeper.go (1 hunks)
  • x/interchainstaking/keeper/keeper_test.go (1 hunks)
  • x/interchainstaking/keeper/msg_server.go (1 hunks)
Files skipped from review as they are similar to previous changes (3)
  • x/interchainstaking/keeper/keeper.go
  • x/interchainstaking/keeper/keeper_test.go
  • x/interchainstaking/keeper/msg_server.go

Copy link
Contributor

@faddat faddat left a comment

Choose a reason for hiding this comment

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

Ah, I like this one very much too!

@faddat faddat merged commit 43dd467 into main Mar 1, 2024
25 checks passed
@joe-bowman joe-bowman deleted the ngoc/denom-zones-lookup branch March 4, 2024 09:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

performance: refactor denom->zone lookup
3 participants