Jonathan A. Sternberg
bea3a18330
fix(query/stdlib): use auth correctly in the v1.databases() call ( #14927 )
...
The `v1.databases()` call did not correctly filter buckets based on
auth. Fortunately, it did not cause any improper permissions such as
allowing a person to see buckets that they had no read access to.
The error instead was that if a user did not have read access to one of
the buckets that was returned, the entire command would fail rather than
filter out the bucket that didn't have permissions.
This changes it so that if the user doesn't gets an unauthorized error
when accessing a bucket, it will filter it from the list instead of
failing. It also changes it so the error message is marked as
`ENotFound` instead of as an internal error.
2019-09-05 10:35:23 -05:00
Nathaniel Cook
454003841a
build(flux): upgrade to Flux v0.42.0
...
Skips a test that requires special dependencies to pass.
2019-08-30 13:02:30 -06:00
Adam
fcfdd2b1ef
build(flux): update to latest flux master
2019-08-26 16:46:17 -06:00
Adam
f97929614c
test(query): roll back some changes to end_to_end_test.go
2019-08-26 16:46:17 -06:00
Adam
808ebb9590
fix(query): update usage of interpreter dependencies
2019-08-26 16:46:17 -06:00
Nathaniel Cook
6303e2dcc5
test(query): skip holt_winters_panic test
...
added executor dependencies where needed
2019-08-26 16:46:17 -06:00
Nathaniel Cook
4b339dd0cf
fix(query/to): make orgID default to the context org
...
This change makes it so that if an org or orgID are missing on calls to the `to` function
that the orgID is retrieved from the request context.
This is consistent with how `from` works.
2019-08-23 11:03:26 -06:00
Nathaniel Cook
6b54abb51e
test(query): skip holt_winters_panic test
2019-08-22 13:11:13 -06:00
docmerlin (j. Emrys Landivar)
19fe098888
chore(ci): update go-tools
2019-08-22 10:55:05 -05:00
Nathaniel Cook
7498c06d3f
test(query): skip check and http_endpoint Flux tests
2019-08-21 09:59:01 -06:00
Nathaniel Cook
6a0fa44093
fix(query): update code for changes to scoped compiler
2019-08-21 09:59:01 -06:00
Nathaniel Cook
1b8ab3c2f2
fix(query): remove http.to and update test cases that used it
2019-08-21 09:59:01 -06:00
Christopher M. Wolff
c61646d0f4
feat(query/stdlib): add an experimental "to" function ( #14664 )
2019-08-21 09:59:01 -06:00
Nathaniel Cook
cd2bfb9b22
refactor(query/stdlib): update tests for new Flux test name conventions ( #14669 )
2019-08-21 09:59:01 -06:00
Stuart Carnie
9d94b7500d
fix(flux): Fix hanging test by ensuring results are read
...
Closes #14574
2019-08-12 16:47:03 -07:00
Lorenzo Affetti
ef238ae064
skipping failing e2e tests
2019-08-06 12:48:32 +02:00
j. Emrys Landivar (docmerlin)
b303d54584
perf(query): hoist bucket lookups so we do not look up per table
...
perf(query): hoist bucket lookups so we do not look up per table
2019-08-05 16:02:33 -05:00
j. Emrys Landivar (docmerlin)
24c1f21e4e
WIP
2019-08-05 13:16:51 -05:00
Christopher M. Wolff
42bb664aaf
feat(query): add storage request duration metric ( #14534 )
...
influxdata/idpe#4126
2019-08-02 08:53:14 -07:00
Jonathan A. Sternberg
e4c89cbe0c
feat(query/stdlib): push down exists operator to storage ( #14538 )
...
The `exists` operator now gets pushed down to storage correctly. If
`exists` is used on a tag, then it will be rewritten to `tag != ""`
which is how storage defines if a tag exists. If `not exists` is used,
then it will use `tag == ""` which is how you would query storage for
only if a tag doesn't exist.
The `tag == ""` and `tag != ""` are different. For `tag == ""`, the
predicate is impossible for the storage layer to return true with.
Ideally, we would just rewrite this to return nothing and we wouldn't
bother with even querying storage. Instead, we just do not rewrite this
predicate because it cannot be rewritten to make sense with storage. If
we see `tag != ""`, it is the only one that can be passed through as-is
because `tag != ""` returns the same values as `exists tag`. It will
return true for every non-null value.
2019-08-02 09:31:10 -05:00
Christopher M. Wolff
e142f6ca7c
fix(query): add LookupName method to dependency interfaces (needed by flux to()) ( #14498 )
2019-08-01 10:10:43 -07:00
Christopher Wolff
3855ad9f33
chore: update Flux to v0.37.2
2019-07-24 12:57:37 -07:00
Christopher Wolff
63c0f40548
fix(query): use auth-wrapped org and bucket services for query
2019-07-19 20:02:53 -06:00
Jonathan A. Sternberg
ee7ff84d8b
feat(query/stdlib): update influxdb sources to use flux error codes ( #14346 )
...
Update the influxdb sources to be annotated with flux error codes. This
will enable us to identify different response codes for these
operations.
2019-07-16 09:15:46 -05:00
Nathaniel Cook
92a4ee53cf
fix(query): skip tests
2019-07-12 11:15:58 -06:00
Jonathan A. Sternberg
a0f585bd56
fix(query/stdlib): remove skip from the flux e2e tests ( #14253 )
...
The underlying bug that caused them to be flaky has been fixed.
2019-07-03 12:03:22 -05:00
Jonathan A. Sternberg
3d9b9fe36f
chore(query): disable flaky end to end tests for flux ( #14231 )
2019-06-28 10:15:47 -05:00
Adam
d85ef69e19
Merge remote-tracking branch 'origin/master' into flux-staging
2019-06-19 13:38:49 -04:00
Adam
1d84bf6516
fix(stdlib/testing): skip flaky test regexp_replaceAllString
2019-06-18 16:25:59 -04:00
roshie548
15f66d1b98
moved field declaration line
2019-06-18 08:51:34 -07:00
roshie548
f45d616eaa
added test case
2019-06-18 08:51:34 -07:00
roshie548
13b397bb3c
fix(stdlib): Fixed to() creating too many rows for multiple fields
...
If a table has multiple field values, to() no longer writes rows multiple times.
2019-06-18 08:51:34 -07:00
Jonathan A. Sternberg
42c8ce3481
fix(query/stdlib): remove skips for tests that were flaky from table.Do ( #14048 )
2019-06-03 11:56:25 -05:00
Jonathan A. Sternberg
2b1c1ec143
fix(storage/reads): fix the storage tables to work correctly with multiple transformations ( #14016 )
...
The storage table reader will now work correctly when there are multiple
outputs. The table interface now implements the new table and column
reader interfaces and works properly with `execute.CopyTable`. The
source uses `execute.CopyTable` to buffer the table in memory when there
are multiple output transformations.
2019-05-30 12:31:54 -05:00
Jonathan A. Sternberg
c560e27e1d
chore(flux): update to Flux v0.31.1 ( #14015 )
2019-05-29 15:48:23 -05:00
Jonathan A. Sternberg
ebdbc394fc
chore(flux): update to Flux v0.31.0 ( #14002 )
...
* refactor(storage/reads): update the table implementation for the interface change (#13994 )
* chore(flux): update to Flux v0.31.0
2019-05-28 17:24:26 -05:00
docmerlin (j. Emrys Landivar)
fa849d5c0b
chore(testing) skip flakey test
2019-05-28 10:49:16 -05:00
Nathaniel Cook
8ebd6c8315
chore(query): add missing skip tests from merge
2019-05-15 10:18:08 -06:00
Lorenzo Affetti
44fb090468
test(flux/e2e): export skip list
2019-05-13 19:14:52 +02:00
Adam
415f698491
Merge pull request #13830 from influxdata/fix/to_heterogeneous
...
Fix/to heterogeneous
2019-05-08 16:45:46 -04:00
Adam
397c33a0dc
fix(stdlib/influxdata): fix influxdb.to function to process heterogeneous tables
2019-05-08 09:37:43 -04:00
jlapacik
dc59629f69
fix(influxdb): better error message when range not pushed down
...
Fixes https://github.com/influxdata/flux/issues/1224 .
2019-05-07 09:59:58 -07:00
jlapacik
faab75968b
refactor(storage): remove Read method from Store interface
2019-05-03 11:02:20 -07:00
jlapacik
7333847e2a
refactor(influxdb): remove and/or transfer duplicated tests
2019-05-03 11:02:20 -07:00
jlapacik
0ce05e7ad6
refactor(influxdb): remove old FromProcedureSpec
2019-05-03 11:02:20 -07:00
Lorenzo Affetti
33418aac2c
test(flux/e2e): skip flaky window_generate_empty test
2019-05-02 18:19:07 +02:00
jlapacik
e50508a349
feat(influxdb): enable group pushdown rule
...
Closes #13623 .
2019-05-01 10:35:10 -07:00
jlapacik
95aa194498
feat(storage): ReadGroup RPC definitions and storage reader
2019-05-01 10:35:10 -07:00
jlapacik
5f87134ca8
feat(query): physical group operation and pushdown rule
...
test(query): group pushdown rule
2019-05-01 10:35:10 -07:00
Jonathan A. Sternberg
1a254a3293
feat(stdlib): enable the tag keys optimization for meta queries ( #13705 )
2019-04-30 21:32:47 -05:00