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: add naive region failover test for metric table #4269

Merged
merged 3 commits into from
Jul 5, 2024

Conversation

WenyXu
Copy link
Member

@WenyXu WenyXu commented Jul 3, 2024

I hereby agree to the terms of the GreptimeDB CLA.

Refer to a related PR or issue link (optional)

What's changed and what's your intention?

Add naive failover test for metric table

Checklist

  • I have written the necessary rustdoc comments.
  • I have added the necessary unit tests and integration tests.
  • This PR requires documentation updates.

Summary by CodeRabbit

  • New Features
    • Introduced fuzz testing for failover scenarios in distributed systems to ensure robustness and data integrity.
  • Improvements
    • Updated log messages for better clarity during validation processes.

@WenyXu WenyXu requested a review from a team as a code owner July 3, 2024 12:41
Copy link
Contributor

coderabbitai bot commented Jul 3, 2024

Note

Reviews paused

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Walkthrough

This update introduces a new fuzz testing binary for assessing failover scenarios in a distributed system. The functionality includes operations like creating and querying tables, simulating failures, and maintaining data integrity. Additionally, improvements are made to log messages in an existing fuzz test.

Changes

File Path Summary
tests-fuzz/Cargo.toml Added new binary entry fuzz_failover_metric_regions.
tests-fuzz/targets/failover/fuzz_failover_metric_regions.rs Added new functionality for fuzz testing failover scenarios.
tests-fuzz/targets/failover/fuzz_failover_mito_regions.rs Updated log messages to improve clarity.

Sequence Diagram(s)

sequenceDiagram
    participant Tester
    participant FuzzContext
    participant PhysicalTable
    participant LogicalTable
    Tester->>FuzzContext: Create FuzzContext
    FuzzContext->>PhysicalTable: create_physical_table()
    PhysicalTable->>FuzzContext: return TableContextRef
    FuzzContext->>LogicalTable: create_logical_table(TableContextRef)
    LogicalTable->>FuzzContext: return LogicalTableContextRef
    Tester->>FuzzContext: insert_values()
    FuzzContext->>LogicalTable: Generate & Insert Data Rows
    LogicalTable->>FuzzContext: return InsertResult
    Tester->>FuzzContext: execute_failover()
    FuzzContext->>Tester: Validate & return Result
Loading

Possibly related issues

Poem

In data's dance with graceful twirl,
Fuzz tests march and metrics swirl.
Tables build, both great and small,
Integrity proves against the fall.
Logs now clearer, errors find,
Apps grow stronger, chaos tamed in kind.

✨🐇🌐✨


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 Configration 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.

@github-actions github-actions bot added the docs-not-required This change does not impact docs. label Jul 3, 2024
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: 3

Outside diff range and nitpick comments (1)
tests-fuzz/targets/failover/fuzz_failover_metric_regions.rs (1)

155-183: Include a link to the relevant issue.

The comment regarding unprepared queries should include a link to the relevant issue.

- // unprepared query, see <https://github.com/GreptimeTeam/greptimedb/issues/3500>
+ // unprepared query, see <https://github.com/GreptimeTeam/greptimedb/issues/3500> for more details.
Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 705b224 and f2b1a60.

Files selected for processing (3)
  • tests-fuzz/Cargo.toml (1 hunks)
  • tests-fuzz/targets/failover/fuzz_failover_metric_regions.rs (1 hunks)
  • tests-fuzz/targets/failover/fuzz_failover_mito_regions.rs (1 hunks)
Files skipped from review due to trivial changes (2)
  • tests-fuzz/Cargo.toml
  • tests-fuzz/targets/failover/fuzz_failover_mito_regions.rs
Additional comments not posted (6)
tests-fuzz/targets/failover/fuzz_failover_metric_regions.rs (6)

70-75: LGTM!

The FuzzInput struct is well-defined and encapsulates the input required for the fuzz test.


89-100: LGTM!

The generate_create_physical_table_expr function is well-defined and generates a CreateTableExpr for a physical table.


102-117: LGTM!

The create_physical_table function is well-defined and translates the CreateTableExpr into SQL.


119-137: LGTM!

The generate_create_logical_table_expr function is well-defined and generates a CreateTableExpr for a logical table.


139-153: LGTM!

The generate_insert_expr function is well-defined and generates an InsertIntoExpr for inserting values into a table.


287-303: LGTM!

The fuzz_target macro is well-defined and correctly sets up the fuzz target for the failover scenario.

@WenyXu
Copy link
Member Author

WenyXu commented Jul 3, 2024

@coderabbitai pause

Copy link
Contributor

coderabbitai bot commented Jul 3, 2024

Actions performed

Reviews paused.

@WenyXu WenyXu changed the title feat: add naive failover test for metric table feat: add naive region failover test for metric table Jul 3, 2024
Copy link

codecov bot commented Jul 3, 2024

Codecov Report

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

Project coverage is 84.69%. Comparing base (76fac35) to head (bdc2b3b).
Report is 11 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #4269      +/-   ##
==========================================
- Coverage   84.91%   84.69%   -0.23%     
==========================================
  Files        1056     1061       +5     
  Lines      187319   188108     +789     
==========================================
+ Hits       159071   159310     +239     
- Misses      28248    28798     +550     

@WenyXu WenyXu force-pushed the feat/failover-metric-regions branch from f2b1a60 to 78bb8dc Compare July 3, 2024 13:22
@WenyXu WenyXu force-pushed the feat/failover-metric-regions branch from 78bb8dc to 8a311ba Compare July 3, 2024 13:54
@WenyXu WenyXu requested a review from fengjiachun July 4, 2024 13:40
@WenyXu WenyXu force-pushed the feat/failover-metric-regions branch from e60d03d to bdc2b3b Compare July 4, 2024 14:44
Copy link
Collaborator

@fengjiachun fengjiachun left a comment

Choose a reason for hiding this comment

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

LGTM

@fengjiachun fengjiachun added this pull request to the merge queue Jul 5, 2024
Merged via the queue into GreptimeTeam:main with commit 8a119aa Jul 5, 2024
52 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
docs-not-required This change does not impact docs.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants