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

[VTAdmin API] Fix schema cache flag, add documentation #15704

Merged

Conversation

notfelineit
Copy link
Contributor

@notfelineit notfelineit commented Apr 12, 2024

Description

Currently, when a user passes any schema cache flags, but does not pass backfill-queue-size, vtadmin-api crashes because backfill-queue-size is defaulted to -1 and crashes with:

panic: makechan: size out of range

goroutine 1 [running]:
vitess.io/vitess/go/vt/vtadmin/cache.New[...](0xc000375570, {0xdf8475800, 0xffffffffffffffff, 0x5f5e100, 0xffffffffffffffff, 0xffffffffffffffff, 0x2faf080})
	vitess.io/vitess/go/vt/vtadmin/cache/cache.go:131 +0x20d

at https://github.com/vitessio/vitess/blob/main/go/vt/vtadmin/cache/cache.go#L131

This PR makes it so that backfill-queue-size is defaulted to 0 if the value is negative. It also adds the schema-cache-* flags to the example cluster.yml, and adds some logs.

A subsequent PR will make it so that the debug endpoint returns the cache values as they are actually set. (currently shows -1 if the user didn't pass configuration, even if defaults are different).

Backport reason

This is a bug that breaks vtadmin-api usage.

Related Issue(s)

#15717

Checklist

  • "Backport to:" labels have been added if this change should be back-ported to release branches
  • If this change is to be back-ported to previous releases, a justification is included in the PR description
  • Tests were added or are not required
  • Did the new or modified tests pass consistently locally and on CI?
  • Documentation was added or is not required

Deployment Notes

None

Signed-off-by: notfelineit <notfelineit@gmail.com>
Copy link
Contributor

vitess-bot bot commented Apr 12, 2024

Review Checklist

Hello reviewers! 👋 Please follow this checklist when reviewing this Pull Request.

General

  • Ensure that the Pull Request has a descriptive title.
  • Ensure there is a link to an issue (except for internal cleanup and flaky test fixes), new features should have an RFC that documents use cases and test cases.

Tests

  • Bug fixes should have at least one unit or end-to-end test, enhancement and new features should have a sufficient number of tests.

Documentation

  • Apply the release notes (needs details) label if users need to know about this change.
  • New features should be documented.
  • There should be some code comments as to why things are implemented the way they are.
  • There should be a comment at the top of each new or modified test to explain what the test does.

New flags

  • Is this flag really necessary?
  • Flag names must be clear and intuitive, use dashes (-), and have a clear help text.

If a workflow is added or modified:

  • Each item in Jobs should be named in order to mark it as required.
  • If the workflow needs to be marked as required, the maintainer team must be notified.

Backward compatibility

  • Protobuf changes should be wire-compatible.
  • Changes to _vt tables and RPCs need to be backward compatible.
  • RPC changes should be compatible with vitess-operator
  • If a flag is removed, then it should also be removed from vitess-operator and arewefastyet, if used there.
  • vtctl command output order should be stable and awk-able.

@vitess-bot vitess-bot bot added NeedsBackportReason If backport labels have been applied to a PR, a justification is required NeedsDescriptionUpdate The description is not clear or comprehensive enough, and needs work NeedsIssue A linked issue is missing for this Pull Request NeedsWebsiteDocsUpdate What it says labels Apr 12, 2024
@github-actions github-actions bot added this to the v20.0.0 milestone Apr 12, 2024
@notfelineit notfelineit changed the title [VTAdmin API] Fix schema cache flags, add documentation [VTAdmin API] Fix schema cache flag, add documentation Apr 12, 2024
…ample

Signed-off-by: notfelineit <notfelineit@gmail.com>
@notfelineit notfelineit marked this pull request as ready for review April 12, 2024 17:21
@notfelineit notfelineit added Backport to: release-17.0 Backport to: release-18.0 Needs to be back ported to release-18.0 Backport to: release-19.0 Needs to be back ported to release-19.0 Type: Bug Component: VTAdmin VTadmin interface go and removed NeedsDescriptionUpdate The description is not clear or comprehensive enough, and needs work NeedsWebsiteDocsUpdate What it says NeedsIssue A linked issue is missing for this Pull Request NeedsBackportReason If backport labels have been applied to a PR, a justification is required labels Apr 12, 2024
Signed-off-by: notfelineit <notfelineit@gmail.com>
Signed-off-by: notfelineit <notfelineit@gmail.com>
Copy link

codecov bot commented Apr 12, 2024

Codecov Report

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

Project coverage is 68.39%. Comparing base (f118ba2) to head (eb0f7b7).
Report is 5 commits behind head on main.

Files Patch % Lines
go/vt/vtadmin/cluster/cluster.go 66.66% 1 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main   #15704      +/-   ##
==========================================
- Coverage   68.40%   68.39%   -0.02%     
==========================================
  Files        1556     1556              
  Lines      195121   195275     +154     
==========================================
+ Hits       133479   133564      +85     
- Misses      61642    61711      +69     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Copy link
Contributor

@mattlord mattlord left a comment

Choose a reason for hiding this comment

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

LGTM.

I think that saying “this is the default value” can be removed from the descriptions. I also think that we could better describe what a specific value means — sometimes 0 means none, other times disabled, and other times unlimited.

We should also create a quick issue that describes the bug we’re fixing. Largely a cut and paste from the PR description. Then we can add a line that says Fixing: XXXX in the related issues section of the description.

thanks!

doc/vtadmin/clusters.yaml Outdated Show resolved Hide resolved
# How many outstanding backfil requests to permit in schema cache.
# If the queue is full, calls backfill schemas will return false, and those requests will be discarded.
# Defaults to 0 if a negative value is passed.
schema-cache-backfill-queue-size: 0
Copy link
Contributor

Choose a reason for hiding this comment

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

What does 0 mean? Unlimited?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I hope this answers the question:
#15704 (comment)

@@ -54,6 +54,9 @@ const (
// backfill requests to still process, if a config is passed with a
// non-positive BackfillRequestTTL.
DefaultBackfillRequestTTL = time.Millisecond * 100
// DefaultBackfillQueueSize is the default value used for the size of the
// backfill queue, if a config is passed with a non-positive BackfillQueueSize.
DefaultBackfillQueueSize = 0
Copy link
Contributor

Choose a reason for hiding this comment

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

0 means that we don’t backfill?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I think it means that the underlying channel will have a size of 0, and every send to the backfill queue will block until the queue is "empty" again. If that's non-ideal, we can change it to 1. I had it at 1 but that broke an existing test assumption.

go/vt/vtadmin/cache/cache.go Show resolved Hide resolved
go/vt/vtadmin/cluster/cluster.go Show resolved Hide resolved
Signed-off-by: notfelineit <notfelineit@gmail.com>
@notfelineit notfelineit merged commit 791ca02 into vitessio:main Apr 15, 2024
101 checks passed
@notfelineit notfelineit deleted the document-vtadmin-schema-cache-flags branch April 15, 2024 16:28
vitess-bot pushed a commit that referenced this pull request Apr 15, 2024
Signed-off-by: notfelineit <notfelineit@gmail.com>
vitess-bot pushed a commit that referenced this pull request Apr 15, 2024
Signed-off-by: notfelineit <notfelineit@gmail.com>
vitess-bot pushed a commit that referenced this pull request Apr 15, 2024
Signed-off-by: notfelineit <notfelineit@gmail.com>
notfelineit pushed a commit that referenced this pull request Apr 15, 2024
…#15704) (#15720)

Signed-off-by: notfelineit <notfelineit@gmail.com>
Co-authored-by: vitess-bot[bot] <108069721+vitess-bot[bot]@users.noreply.github.com>
notfelineit added a commit that referenced this pull request Apr 15, 2024
…#15704) (#15719)

Signed-off-by: notfelineit <notfelineit@gmail.com>
Co-authored-by: vitess-bot[bot] <108069721+vitess-bot[bot]@users.noreply.github.com>
Co-authored-by: notfelineit <notfelineit@gmail.com>
notfelineit added a commit that referenced this pull request Apr 15, 2024
…#15704) (#15718)

Signed-off-by: notfelineit <notfelineit@gmail.com>
Co-authored-by: vitess-bot[bot] <108069721+vitess-bot[bot]@users.noreply.github.com>
Co-authored-by: notfelineit <notfelineit@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Backport to: release-18.0 Needs to be back ported to release-18.0 Backport to: release-19.0 Needs to be back ported to release-19.0 Component: VTAdmin VTadmin interface go Type: Bug
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants