-
Notifications
You must be signed in to change notification settings - Fork 706
feat(frontend): show if system parameters are mutable #9526
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
Conversation
| { barrier_interval_ms, u32, Some(1000_u32), false }, | ||
| { checkpoint_frequency, u64, Some(10_u64), true }, | ||
| { sstable_size_mb, u32, Some(256_u32), false }, | ||
| { block_size_kb, u32, Some(64_u32), false }, | ||
| { bloom_false_positive, f64, Some(0.001_f64), false }, | ||
| { state_store, String, None, false }, | ||
| { data_directory, String, None, false }, | ||
| { backup_storage_url, String, Some("memory".to_string()), false }, | ||
| { backup_storage_directory, String, Some("backup".to_string()), false }, | ||
| { telemetry_enabled, bool, Some(true), true }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can't use const MUTABLE/IMMUTABLE here, because if for_all_undeprecated_params are used in other crates, they need to be imported as well, which seems unintuitive.
Codecov Report
@@ Coverage Diff @@
## main #9526 +/- ##
==========================================
- Coverage 70.75% 70.75% -0.01%
==========================================
Files 1232 1232
Lines 206264 206276 +12
==========================================
+ Hits 145948 145954 +6
- Misses 60316 60322 +6
Flags with carried forward coverage won't be shown. Click here to find out more.
... and 4 files with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
BugenZhao
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
I hereby agree to the terms of the RisingWave Labs, Inc. Contributor License Agreement.
What's changed and what's your intention?
As title. Closes #9505
Checklist For Contributors
./risedev check(or alias,./risedev c)Documentation
Types of user-facing changes
Please keep the types that apply to your changes, and remove the others.
Release note
SHOW PARAMETERSwill display system parameters' mutability.