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: protect datanode with concurrency limit. #4699

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

lyang24
Copy link
Contributor

@lyang24 lyang24 commented Sep 9, 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?

Adding query parallelism limit in region server to protect datanode from query overload.

Checklist

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

Copy link
Contributor

coderabbitai bot commented Sep 9, 2024

Important

Review skipped

Auto reviews are disabled on this repository.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


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>, please review it.
    -- 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 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 using 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.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

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 Sep 9, 2024
@lyang24 lyang24 force-pushed the datanode_protection branch 4 times, most recently from ed16bbb to 724d851 Compare September 11, 2024 03:59
@lyang24 lyang24 marked this pull request as ready for review September 11, 2024 03:59
@lyang24 lyang24 requested a review from a team as a code owner September 11, 2024 03:59
Copy link

codecov bot commented Sep 11, 2024

Codecov Report

Attention: Patch coverage is 96.66667% with 2 lines in your changes missing coverage. Please review.

Project coverage is 84.63%. Comparing base (67fb3d0) to head (75c340a).
Report is 26 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #4699      +/-   ##
==========================================
- Coverage   84.79%   84.63%   -0.17%     
==========================================
  Files        1115     1116       +1     
  Lines      201197   201385     +188     
==========================================
- Hits       170612   170443     -169     
- Misses      30585    30942     +357     

Copy link
Member

@sunng87 sunng87 left a comment

Choose a reason for hiding this comment

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

Remember to update config docs when we finalize the names

src/datanode/src/config.rs Outdated Show resolved Hide resolved
@lyang24 lyang24 force-pushed the datanode_protection branch 5 times, most recently from 2f755af to 0b101a3 Compare September 12, 2024 04:34
Copy link
Member

@sunng87 sunng87 left a comment

Choose a reason for hiding this comment

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

LGTM

config/config.md Outdated
@@ -335,6 +335,8 @@
| `init_regions_in_background` | Bool | `false` | Initialize all regions in the background during the startup.<br/>By default, it provides services after all regions have been initialized. |
| `enable_telemetry` | Bool | `true` | Enable telemetry to collect anonymous usage data. |
| `init_regions_parallelism` | Integer | `16` | Parallelism of initializing regions. |
| `max_concurrent_queries` | Integer | `0` | The maximum current queries allowed to be executed. Zero means unlimited. |
| `concurrent_query_limiter_timeout` | String | `25ms` | The timeout of acquiring concurrency permits. |
Copy link
Member

Choose a reason for hiding this comment

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

Do we need this option? Despite the implementation details (acquire vs. try_acquire), it seems like users would hardly adjust this option. And exposing such an option would also limit us from implementing a better behavior in the future, like "only pending 30 awaiting requests in the queue, for at most 100ms".

We can hide such logic as our system's internal details. WDYT @sunng87 @evenyag

Copy link
Contributor Author

@lyang24 lyang24 Sep 18, 2024

Choose a reason for hiding this comment

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

I agree remove this option will give better flexibility for future. I think try_acquire is a special case that is equivalent to 0 timeout on no permits i think having timeout maybe more flexible in this case. I removed the concurrent_query_limiter_timeout in DataNode options and hardcoded 25ms wait with a TODO. In future versions i think we could update the max_concurrent_queries and concurrent_query_limiter_timeout dynamically via sql such as SET max_concurrent_queries = 8;

Comment on lines 155 to 160
if let Some(p) = &self.inner.parallelism {
let permit = p.acquire().await?;
let res = self.inner.handle_request(region_id, request).await;
drop(permit);
return res;
}
Copy link
Contributor

Choose a reason for hiding this comment

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

Looks like this semaphore also applies to RegionPutRequest whilst the purpose is to limit concurrent queries. We need to distinguish different request types.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

should i put the rate limiting on handle_read and handle_remote_read that does datafusion queries? seems like handle_requests method is more of writes and region ddl changes.

@@ -334,6 +334,9 @@ impl DatanodeBuilder {
common_runtime::global_runtime(),
event_listener,
table_provider_factory,
opts.max_concurrent_queries,
//TODO: revaluate the hardcoded timeout on the next version of datanode concurrency limiter.
Duration::from_millis(25),
Copy link
Contributor

@v0y4g3r v0y4g3r Sep 18, 2024

Choose a reason for hiding this comment

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

25ms seems to be too short. Maybe we need to hold those throttled queries instead of failing them very quickly.

Copy link
Contributor Author

@lyang24 lyang24 Sep 19, 2024

Choose a reason for hiding this comment

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

I can increase the threshold. By hold do you mean to (worst case) allow queries to wait for the semaphore until the request to datanode timeout?

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.

5 participants