-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update flux version to v0.33.2 (#14208)
The flux in influxdb has been upgraded to use v0.33.2. A lot of interfaces for the storage engine were changed during this so code had to change to accomodate the new interfaces and remove the old ones. Included in this commit is a patch file for the changes that were made. A patch was generated for the following packages: * `flux/stdlib/influxdata/influxdb` * `storage/reads` * `tsdb/cursors` These are the three packages that are in common with version 2 of the database and the first of these packages contains the specific implementations that are used for version 1. It is very possible that the next time we upgrade this, the patch will not apply cleanly just like it wouldn't have applied cleanly to this update. The patch is mostly meant to document exactly what changed during the copy over to help ensure we don't forget things when adapting the interfaces. Add a patch file to hopefully make this easier in the future
- Loading branch information
1 parent
aa7deb4
commit 7ca4e64
Showing
52 changed files
with
7,887 additions
and
3,232 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
//+build ignore | ||
|
||
// Package help contains the help for the store command. | ||
package help | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
//+build ignore | ||
|
||
// The store command displays detailed information about InfluxDB data files. | ||
package main | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
//+build ignore | ||
|
||
package query | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.