-
Notifications
You must be signed in to change notification settings - Fork 530
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
deprecating vparquet v1 #3377
deprecating vparquet v1 #3377
Conversation
@@ -32,14 +32,14 @@ You can still use the previous format `vParquet2`. | |||
To enable it, set the block version option to `vParquet2` in the Storage section of the configuration file. |
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.
this is weird advice. we should likely not be advising anyone to set their version to vParquet2 at this point.
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.
Well, the full context was. Default = vParquet3. But "You can still use the previous format vParquet2
."
tempodb/encoding/versioned.go
Outdated
@@ -85,7 +85,7 @@ func LatestEncoding() VersionedEncoding { | |||
func AllEncodings() []VersionedEncoding { | |||
return []VersionedEncoding{ | |||
v2.Encoding{}, | |||
vparquet.Encoding{}, | |||
// vparquet.Encoding{}, |
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.
this will help with tests. good call.
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.
can we remove it instead of commenting it out?
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.
one nit, rest lgtm.
let's goooo 🚀
* deprecating vparquet v1 * update docs and tests * meow * remove line
What this PR does: Deprecating vParquet v1. vParquet v1 blocks can still be read but write is no longer allowed.
Which issue(s) this PR fixes:
Fixes #
Checklist
CHANGELOG.md
updated - the order of entries should be[CHANGE]
,[FEATURE]
,[ENHANCEMENT]
,[BUGFIX]