introduces the new flag --configs-path to the influx CLI. This new
flag has a corresponding env var INFLUX_CONFIGS_PATH. It is useful
to export this env var in a shell dotfile for consumption throughout the
box.
closes: #17979
Force the writing of data and running of the test to happen sequentially. As
the results come out, collect them and report an error only if the diff results
are not empty.
When splitting windows into their own individual tables, do not wait for
empty tables to be read. Empty tables may never be read so waiting for
them can result in a deadlock.
This was found while writing a test case for in progress work and so a
test case for this condition will follow in a future commit.
* Test: Rename the query in side menu
Confirm toggle goes back as well
* Test: Rename the query in side menu
fix prettier
* Test: Rename the query in side menu
remove only
* refactor: consolidate header component & remove add buttons
* feat: render add cell buttons in empty state
* refactor: make inline insert button more visible on hover
* refactor: remove feature flag around Data Source cell type
* feat: group cell types into "families"
* refactor: rename "Data Source" to "Bucket"
* refactor: render cell types in families inside add cell menu
* fix: make it a little more flexible (#18976)
Co-authored-by: drdelambre <drdelambre>
* fix: linting issue
Co-authored-by: Alex Boatwright <drdelambre@gmail.com>
Co-authored-by: drdelambre <drdelambre>
This commit adds `mincore.Limiter` which throttles page faults caused
by mmap() data. It works by periodically calling `mincore()` to determine
which pages are not resident in memory and using `rate.Limiter` to
throttle accessing using a token bucket algorithm.
* chore: remove tsi1 testdata and add go generate file to download
* chore: fix testdata url and rename gen file
* fix: add testdata generate command to Makefile
* chore: add testdata dir to gitignore
* refactor(tsdb): improve error message when missing testdata
* refactor(tsdb): tagged testdata and avoid stacktrace when missing
* fix(ui): give user all access token permission to read user
Users used to be given the permission `orgs/<orgID>/users`, but this
does not help when the user is trying to access the users api (as it is
not nested under orgs in the api). We have changed the
`orgs/<orgID>/users` to be `users/<userID>` so that the token has access
to the user that created it. This will allow users to access their
tokens via the api.
* fix: remove extra catious empty me state