hash
stringlengths
40
40
date
stringdate
2018-05-14 21:44:40
2025-03-12 21:40:08
author
stringclasses
110 values
commit_message
stringlengths
8
134
is_merge
bool
1 class
masked_commit_message
stringlengths
3
129
type
stringclasses
9 values
git_diff
stringlengths
118
15.5M
bfa54033bdc2a1d147f5d4b236867d5c0998518f
2022-01-22 02:31:13
Paul Dix
refactor: Clean up the Catalog API
false
Clean up the Catalog API
refactor
diff --git a/ingester/src/data.rs b/ingester/src/data.rs index b838faca54d..35eba458183 100644 --- a/ingester/src/data.rs +++ b/ingester/src/data.rs @@ -7,8 +7,8 @@ use uuid::Uuid; use crate::server::IngesterServer; use iox_catalog::interface::{ - KafkaPartition, KafkaTopicId, NamespaceId, PartitionId, RepoColle...
d9ce92dad19cae62350db736b0c83aa5463b85a2
2023-06-27 20:05:04
Marco Neumann
fix: do not override all rustflags in circleci (#8061)
false
do not override all rustflags in circleci (#8061)
fix
diff --git a/.circleci/config.yml b/.circleci/config.yml index 93d6d22856a..5a2a6c71ef5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -86,7 +86,7 @@ jobs: CARGO_INCREMENTAL: "0" # Disable full debug symbol generation to speed up CI build # "1" means line tables only, which is usef...
d3dd440c5fb0edc8259f6e6c265968a470c170cd
2020-11-03 23:07:50
Dan Moran
test: fix expected RP in existing test.
false
fix expected RP in existing test.
test
diff --git a/tenant/service_onboarding_test.go b/tenant/service_onboarding_test.go index d28b59c075d..cfbdb1b7562 100644 --- a/tenant/service_onboarding_test.go +++ b/tenant/service_onboarding_test.go @@ -182,4 +182,4 @@ func TestOnboardService_RetentionPolicy(t *testing.T) { } assert.Equal(t, onboard.Bucket.Rete...
042a6a66d5b82c08c8ba6820c503356cd9f6ad54
2023-05-18 16:21:24
Andrew Lamb
refactor: remove old tsm import code (#7804)
false
remove old tsm import code (#7804)
refactor
diff --git a/import_export/src/lib.rs b/import_export/src/lib.rs index 7adc1382b8e..8b137891791 100644 --- a/import_export/src/lib.rs +++ b/import_export/src/lib.rs @@ -1 +1 @@ -pub mod tsm; + diff --git a/import_export/src/tsm/mod.rs b/import_export/src/tsm/mod.rs deleted file mode 100644 index c27e39ca64f..0000000000...
a82dc6f5f0e9a5b0a80dab59ecd2498c6bf0c55d
2021-10-19 22:44:08
Andrew Lamb
chore: Update datafusion + arrow (#2903)
false
Update datafusion + arrow (#2903)
chore
diff --git a/Cargo.lock b/Cargo.lock index 8b8fdc08ef8..c487cc1a412 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -117,12 +117,13 @@ checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" [[package]] name = "arrow" -version = "5.5.0" +version = "6.0.0" source = "registry+https://github.com/rus...
f9d0e3714467400fa09bcf6f4b4d246cc9530b61
2022-08-08 15:09:26
Andrew Lamb
chore: reduce h2 and hyper logging level in tests (#5332)
false
reduce h2 and hyper logging level in tests (#5332)
chore
diff --git a/.circleci/config.yml b/.circleci/config.yml index c0cf2618fd5..11b53bb7100 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -218,8 +218,8 @@ jobs: POSTGRES_USER: postgres TEST_INFLUXDB_IOX_CATALOG_DSN: "postgres://postgres@localhost/iox_shared" # When removing this, also...
e573ca006141f3d2f168e8e56aa6c0ea35e18e44
2020-05-26 06:27:39
Jake Goulding
test: Combine duplicate tests
false
Combine duplicate tests
test
diff --git a/src/line_parser.rs b/src/line_parser.rs index 0aac3989592..88daea6981f 100644 --- a/src/line_parser.rs +++ b/src/line_parser.rs @@ -1308,34 +1308,22 @@ her"#, #[test] fn parse_no_time() -> Result { - let input = "foo asdf=23.1,bar=5i"; + let input = "foo,tag0=value1 asdf=23.1,bar=...
b5ce0e4c4d5fb84f0f90d9f4bc1892eefa5c37fc
2023-02-03 18:56:32
Dom Dwyer
refactor: remove test-only checksum
false
remove test-only checksum
refactor
diff --git a/wal/src/blocking/reader.rs b/wal/src/blocking/reader.rs index 80f6bb27315..29ae7fb2f9f 100644 --- a/wal/src/blocking/reader.rs +++ b/wal/src/blocking/reader.rs @@ -82,10 +82,7 @@ where } ); - Ok(Some(SegmentEntry { - checksum: expected_checksum, - data, ...
b4b7822f2b41edefb4aa3f1800077bb01548de21
2023-07-25 18:14:37
Dom Dwyer
perf: cache summary statistics in partition FSM
false
cache summary statistics in partition FSM
perf
diff --git a/data_types/src/lib.rs b/data_types/src/lib.rs index b76efaae636..a0dbd14e593 100644 --- a/data_types/src/lib.rs +++ b/data_types/src/lib.rs @@ -1593,7 +1593,7 @@ impl TimestampRange { /// /// Note this differs subtlety (but critically) from a /// [`TimestampRange`] as the minimum and maximum values are ...
61bc6df75b976568bc2ee8cc11fbe8e28e425027
2018-08-27 21:16:13
Nathaniel Cook
fix: Fix missing builtins in REPL
false
Fix missing builtins in REPL
fix
diff --git a/query/compile.go b/query/compile.go index 5d45cb70bfc..2aa4dfb9866 100644 --- a/query/compile.go +++ b/query/compile.go @@ -68,10 +68,8 @@ func Eval(itrp *interpreter.Interpreter, q string) error { return err } - _, decls := builtIns(itrp) - // Convert AST program to a semantic program - semProg, ...
bbf6a5087c7bb282cf6af035bf5ee55ab3aa2f49
2023-05-09 18:24:59
Carol (Nichols || Goulding)
fix: Return an iterator rather than allocating a Vec
false
Return an iterator rather than allocating a Vec
fix
diff --git a/data_types/src/lib.rs b/data_types/src/lib.rs index b7cde6f5d96..8dd7af1a5bc 100644 --- a/data_types/src/lib.rs +++ b/data_types/src/lib.rs @@ -435,9 +435,9 @@ impl ColumnsByName { self.0.keys().map(|name| name.as_str()).collect() } - /// Return the set of column IDs. - pub fn ids(&se...
64616f21bf85dcfc20f3f86ffc90d15a74ece496
2020-07-11 15:47:43
alamb
fix: allow arbitrary characters after the delimiter in a field key, including unsecaped spaces
false
allow arbitrary characters after the delimiter in a field key, including unsecaped spaces
fix
diff --git a/delorean_tsm/src/key.rs b/delorean_tsm/src/key.rs index c05c3feb74f..f0869ba2ff6 100644 --- a/delorean_tsm/src/key.rs +++ b/delorean_tsm/src/key.rs @@ -43,6 +43,9 @@ pub enum DataError { old_field: String, }, + #[snafu(display(r#"Error parsing field key: {}"#, details))] + ParsingFiel...
dd6bbeec42c9e4ba8a88937ac31f54c3189b564e
2021-05-26 14:34:56
Marco Neumann
feat: add background task to clean up OS
false
add background task to clean up OS
feat
diff --git a/server/src/db.rs b/server/src/db.rs index 2ababd94dc2..ba932e3076a 100644 --- a/server/src/db.rs +++ b/server/src/db.rs @@ -1,6 +1,8 @@ //! This module contains the main IOx Database object which has the //! instances of the mutable buffer, read buffer, and object store +use crate::db::catalog::chunk::...
0ad6cb61b1875cad6213b4544b5d3b95142a205d
2020-07-07 02:02:37
alamb
refactor: make delorean main async
false
make delorean main async
refactor
diff --git a/src/commands/server.rs b/src/commands/server.rs index de58a529f41..ff780e2a8c6 100644 --- a/src/commands/server.rs +++ b/src/commands/server.rs @@ -30,7 +30,6 @@ fn warn_if_db_dir_does_not_exist(path: &std::path::Path) { } } -#[tokio::main] /// Main entrypoint of the Delorean server loop pub asyn...
87edfbff52dadc7dc0b643b661c0b351f7967d09
2024-10-01 18:00:04
Trevor Hilton
fix: use correct multiplier for parquet cache size (#25416)
false
use correct multiplier for parquet cache size (#25416)
fix
diff --git a/influxdb3/src/commands/serve.rs b/influxdb3/src/commands/serve.rs index b1eff68a711..1370f562374 100644 --- a/influxdb3/src/commands/serve.rs +++ b/influxdb3/src/commands/serve.rs @@ -225,7 +225,7 @@ pub struct Config { default_value = "1000", action )] - pub parquet_mem_cache_siz...
52e71f959253dae562ae0ee989dc1927bb0beda5
2018-08-26 20:24:09
Chris Goller
docs(http): add identity support in Accept-Encoding for write
false
add identity support in Accept-Encoding for write
docs
diff --git a/http/swagger.yml b/http/swagger.yml index f456862a89f..3cbc64c0ed9 100644 --- a/http/swagger.yml +++ b/http/swagger.yml @@ -26,9 +26,11 @@ paths: description: when present, its value indicates compression is applied to the entity-body schema: type: string - des...
969bec27881a584ac4ac8a6e55ec0f350f474b72
2024-03-06 23:56:54
Trevor Hilton
docs: add docs to hybrid service code (#24727)
false
add docs to hybrid service code (#24727)
docs
diff --git a/influxdb3_server/src/service.rs b/influxdb3_server/src/service.rs index 873354657e9..01a85ddf06a 100644 --- a/influxdb3_server/src/service.rs +++ b/influxdb3_server/src/service.rs @@ -1,3 +1,18 @@ +//! Code for generating a hybrid REST/gRPC service +//! +//! This module houses the [`HybridService`] which i...
6c770004af845631344fdbabb17896f2de637bb6
2023-08-31 15:00:55
dependabot[bot]
chore(deps): Bump memchr from 2.6.1 to 2.6.2 (#8621)
false
Bump memchr from 2.6.1 to 2.6.2 (#8621)
chore
diff --git a/Cargo.lock b/Cargo.lock index 16352caba36..dbc91bd05c3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3439,9 +3439,9 @@ dependencies = [ [[package]] name = "memchr" -version = "2.6.1" +version = "2.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f478948fd84d9f8e86967bf...
450b85f80e5ac10c9a996ccaac804d79c15fef9d
2019-08-20 22:54:49
alexpaxton
refactor(ui): introduce "Load Data" tab (#14709)
false
introduce "Load Data" tab (#14709)
refactor
diff --git a/CHANGELOG.md b/CHANGELOG.md index 80e58634008..606d7cb37b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ 1. [14694](https://github.com/influxdata/influxdb/pull/14694): Add ability to find tasks by name. ### UI Improvements +1. [14709](https://github.com/influxdata/influxdb/pull/14709):...
51096119be4bbaf56de7ac2f784e75530483f8a5
2023-09-05 17:17:00
Dom Dwyer
refactor: remove Arc from MemoryNamespaceCache
false
remove Arc from MemoryNamespaceCache
refactor
diff --git a/ioxd_router/src/lib.rs b/ioxd_router/src/lib.rs index 79513722346..21e1c52a84e 100644 --- a/ioxd_router/src/lib.rs +++ b/ioxd_router/src/lib.rs @@ -262,7 +262,7 @@ pub async fn create_router_server_type( // metrics. let ns_cache = Arc::new(InstrumentedCache::new( Arc::new(ShardedCache::n...
c92aebd59515be95f11aec3b9b57fbc3b0f67054
2022-09-10 01:01:07
Carol (Nichols || Goulding)
feat: Exclude skipped partitions from compaction candidacy
false
Exclude skipped partitions from compaction candidacy
feat
diff --git a/iox_catalog/src/interface.rs b/iox_catalog/src/interface.rs index 45c3be87524..1e7058dbfd4 100644 --- a/iox_catalog/src/interface.rs +++ b/iox_catalog/src/interface.rs @@ -2335,8 +2335,8 @@ pub(crate) mod test_helpers { .await .unwrap(); assert_eq!(count, 0); - // ...
97dd61bfb11a82c5ec0c76562440289f15f007a3
2023-03-30 13:48:16
dependabot[bot]
chore(deps): Bump is-terminal from 0.4.5 to 0.4.6 (#7371)
false
Bump is-terminal from 0.4.5 to 0.4.6 (#7371)
chore
diff --git a/Cargo.lock b/Cargo.lock index 8a9005bac45..7d6b1d22e47 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1768,6 +1768,17 @@ dependencies = [ "winapi", ] +[[package]] +name = "errno" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50d6a0976c999d473fe89ad888d...
f62d0eab3cc14f3fdacaae8cb92a21ba0ff12119
2021-09-20 14:37:12
Raphael Taylor-Davies
feat: disable bytes serde (#2580)
false
disable bytes serde (#2580)
feat
diff --git a/Cargo.lock b/Cargo.lock index 0200312290e..8b63d12531e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -481,9 +481,6 @@ name = "bytes" version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8" -dependencie...
e473394e7d0a7c2c77b57770992d3d9aed949098
2019-10-31 01:23:43
Brandon Farmer
feat(influxdb): prevent users from rename system buckets
false
prevent users from rename system buckets
feat
diff --git a/bucket.go b/bucket.go index 2383068a94f..d4c1e709bf0 100644 --- a/bucket.go +++ b/bucket.go @@ -54,6 +54,14 @@ func (bt BucketType) String() string { return "user" } +// ParseBucketType parses a bucket type from a string +func ParseBucketType(s string) BucketType { + if s == "system" { + return Bucke...
e28c031f7648d2dcea395079c811cebd161f2675
2021-05-20 18:00:30
Marco Neumann
refactor: make `ServerFixture::restart_server` consume the fixture
false
make `ServerFixture::restart_server` consume the fixture
refactor
diff --git a/tests/common/server_fixture.rs b/tests/common/server_fixture.rs index be0f6753051..0a46b944112 100644 --- a/tests/common/server_fixture.rs +++ b/tests/common/server_fixture.rs @@ -68,7 +68,7 @@ use tokio::sync::Mutex; /// testing. pub struct ServerFixture { server: Arc<TestServer>, - grpc_channel...
2ec0d26699c30ffa91a8cbc22abb722df64210cc
2020-05-20 00:03:37
Brandon Farmer
chore: update flux-lsp to 0.5.8
false
update flux-lsp to 0.5.8
chore
diff --git a/ui/package.json b/ui/package.json index cdaf1249456..97b25d5d01e 100644 --- a/ui/package.json +++ b/ui/package.json @@ -132,7 +132,7 @@ "dependencies": { "@influxdata/clockface": "2.2.0", "@influxdata/flux": "^0.5.1", - "@influxdata/flux-lsp-browser": "^0.5.6", + "@influxdata/flux-lsp-br...
90a8138c95372afafb697a999c66361948a1284a
2019-08-14 02:41:33
Christopher Henn
chore(ui): disable eslint via fork-ts-checker-webpack-plugin
false
disable eslint via fork-ts-checker-webpack-plugin
chore
diff --git a/ui/webpack.dev.ts b/ui/webpack.dev.ts index 89e29d4a7bf..6bc1b81cb3d 100644 --- a/ui/webpack.dev.ts +++ b/ui/webpack.dev.ts @@ -43,8 +43,6 @@ module.exports = merge(common, { context: path.join(__dirname, 'build'), manifest: require('./build/vendor-manifest.json'), }), - new ForkTsChe...
f4a6c0b4bbcd1a374627ec30c219acf1d58ed49f
2021-06-07 19:26:23
Carol (Nichols || Goulding)
refactor: Actually, why not just store entry as-is within SequencedEntry
false
Actually, why not just store entry as-is within SequencedEntry
refactor
diff --git a/entry/src/entry.rs b/entry/src/entry.rs index 7072d9a4ac7..d2b030cf0ca 100644 --- a/entry/src/entry.rs +++ b/entry/src/entry.rs @@ -1228,13 +1228,9 @@ pub enum SequencedEntryError { }, } -#[self_referencing] #[derive(Debug)] pub struct SequencedEntry { - data: Vec<u8>, - #[borrows(data)] - ...
0c69fb031136e16685663e257bc78c3f34b0f6ec
2020-07-03 17:28:16
alamb
fix: clippy
false
clippy
fix
diff --git a/src/server/http_routes.rs b/src/server/http_routes.rs index ab2c965f8a9..b3b9320bab9 100644 --- a/src/server/http_routes.rs +++ b/src/server/http_routes.rs @@ -287,7 +287,7 @@ async fn read(req: hyper::Request<Body>, app: Arc<App>) -> Result<Option<Body>, .read_points(read_info.org, bucket_id, &pr...
2ed5758ddba42f0626e9f8d2b38d3d99e9aa4d78
2023-02-27 06:20:06
Stuart Carnie
feat: InfluxQL planner learns how to project multiple measurements (#7063)
false
InfluxQL planner learns how to project multiple measurements (#7063)
feat
diff --git a/influxdb_iox/tests/end_to_end_cases/influxql.rs b/influxdb_iox/tests/end_to_end_cases/influxql.rs index 2345ec8ff14..f9f8da43ab3 100644 --- a/influxdb_iox/tests/end_to_end_cases/influxql.rs +++ b/influxdb_iox/tests/end_to_end_cases/influxql.rs @@ -50,12 +50,12 @@ async fn influxql_select_returns_results() ...
c6d4109e07697a3abe5262acb55333f4751cfa15
2022-08-24 15:09:59
Dom Dwyer
build: generate gRPC bindings for ShardService
false
generate gRPC bindings for ShardService
build
diff --git a/generated_types/build.rs b/generated_types/build.rs index 8f13e7b0f54..eefc9051fb1 100644 --- a/generated_types/build.rs +++ b/generated_types/build.rs @@ -26,6 +26,7 @@ fn main() -> Result<()> { /// - `influxdata.iox.predicate.v1.rs` /// - `influxdata.iox.querier.v1.rs` /// - `influxdata.iox.schema.v1....
8565ca513720d82441bb1e6a02e2455baa120907
2023-01-12 15:24:28
dependabot[bot]
chore(deps): Bump zstd from 0.12.1+zstd.1.5.2 to 0.12.2+zstd.1.5.2 (#6573)
false
Bump zstd from 0.12.1+zstd.1.5.2 to 0.12.2+zstd.1.5.2 (#6573)
chore
diff --git a/Cargo.lock b/Cargo.lock index 535de0b55bc..e1365f2c91b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6638,9 +6638,9 @@ checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" [[package]] name = "zstd" -version = "0.12.1+zstd.1.5.2" +version = "0.12.2+zstd.1.5.2" source = "registry...
945b68b8fdb4e5b818e084af9d18c6ae3c3cd994
2019-08-27 04:16:17
Adam
fix(query): finish refactoring the repl and inject the secret service as a dependency
false
finish refactoring the repl and inject the secret service as a dependency
fix
diff --git a/cmd/influx/repl.go b/cmd/influx/repl.go index bd0488ee1fa..6fa1c06d541 100644 --- a/cmd/influx/repl.go +++ b/cmd/influx/repl.go @@ -4,6 +4,7 @@ import ( "context" "fmt" + "github.com/influxdata/flux/dependencies" "github.com/influxdata/flux/repl" platform "github.com/influxdata/influxdb" "githu...
ab87c23be6c630754787dcd9113cd86bd6afaaf1
2020-12-24 02:40:06
Daniel Moran
build(ui): fix report generation & collection for JS tests (#20414)
false
fix report generation & collection for JS tests (#20414)
build
diff --git a/.circleci/config.yml b/.circleci/config.yml index 0ea22f288ff..e8e6beaccc6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -229,7 +229,6 @@ jobs: docker: - image: quay.io/influxdb/influxdb-circleci:latest working_directory: /go/src/github.com/influxdata/influxdb - parall...
b4851d4ecbd98fc03ec8c41c0f25fb4e51d06d3d
2019-04-20 02:31:24
Jade McGough
fix(http): remove incorrect param from labels post
false
remove incorrect param from labels post
fix
diff --git a/http/swagger.yml b/http/swagger.yml index 1989f7aca3f..205400a0661 100644 --- a/http/swagger.yml +++ b/http/swagger.yml @@ -1820,13 +1820,6 @@ paths: tags: - Labels summary: Create a label - parameters: - - $ref: '#/components/parameters/TraceSpan' - - in: quer...
e556677192cc2197af68c13a41a0c05be74dd6ea
2022-10-13 18:56:36
Dom Dwyer
perf(ingester): remove persist lookup queries
false
remove persist lookup queries
perf
diff --git a/ingester/src/compact.rs b/ingester/src/compact.rs index 8a280cc751b..ba08c693ee6 100644 --- a/ingester/src/compact.rs +++ b/ingester/src/compact.rs @@ -2,15 +2,12 @@ use std::sync::Arc; -use data_types::{CompactionLevel, NamespaceId, PartitionInfo}; use datafusion::{error::DataFusionError, physical_p...
43e0d143e7bae8e7676044e9b3b9088a6d5ea7cd
2018-09-06 04:23:57
Jade McGough
chore(http): return early if a critical error occurs in write path org/bucket lookup (#767)
false
return early if a critical error occurs in write path org/bucket lookup (#767)
chore
diff --git a/http/bucket_service.go b/http/bucket_service.go index e44ee9f56a8..895b8e27074 100644 --- a/http/bucket_service.go +++ b/http/bucket_service.go @@ -4,7 +4,6 @@ import ( "bytes" "context" "encoding/json" - "errors" "net/http" "path" @@ -310,7 +309,7 @@ func (s *BucketService) FindBucket(ctx cont...
6eed09a926442df864c7f62c3d5a7b996477ea8d
2022-04-28 20:09:31
Marco Neumann
test: use "real" ingester in query tests (#4455)
false
use "real" ingester in query tests (#4455)
test
diff --git a/Cargo.lock b/Cargo.lock index b52c4a16d9c..0fd49528068 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4626,15 +4626,21 @@ dependencies = [ "arrow", "arrow_util", "async-trait", + "backoff 0.1.0", "data_types", "data_types2", "datafusion 0.1.0", - "datafusion_util", "db", + "dml", + "futures", +...
a82c13c260aa3e7b41b7969757dbbcde63192f1f
2025-02-27 21:51:05
Jamie Strandboge
chore: update to python 3.11.11+20250212 for libssl (#26049)
false
update to python 3.11.11+20250212 for libssl (#26049)
chore
diff --git a/.circleci/config.yml b/.circleci/config.yml index 20c6dbfa296..38088a00866 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -223,7 +223,7 @@ jobs: # scripts/fetch-python-standalone.bash for details. This should match the # 'build-docker' job, below. environment: - PBS_DAT...
4638b89d9334a0f28398bd46175e3f72741fc26a
2023-06-29 14:06:37
Marco Neumann
refactor: migrate retention to proper predicates (#8092)
false
migrate retention to proper predicates (#8092)
refactor
diff --git a/compactor/src/components/df_planner/query_chunk.rs b/compactor/src/components/df_planner/query_chunk.rs index 7860e97c408..a52a32080aa 100644 --- a/compactor/src/components/df_planner/query_chunk.rs +++ b/compactor/src/components/df_planner/query_chunk.rs @@ -1,7 +1,7 @@ //! QueryableParquetChunk for buil...
8292c4d2e4f0b0f0b6a123ce18e4c5af84fd6172
2021-09-13 21:14:18
Nga Tran
refactor: address review comments
false
address review comments
refactor
diff --git a/server/src/db.rs b/server/src/db.rs index db1e4388ea0..5b67e2acff3 100644 --- a/server/src/db.rs +++ b/server/src/db.rs @@ -41,7 +41,7 @@ use parquet_file::catalog::{ use persistence_windows::{checkpoint::ReplayPlan, persistence_windows::PersistenceWindows}; use query::{ exec::{ExecutionContextProvi...
f7ad7afc4fe60b695f476e810ec3211d7644510c
2020-09-12 16:35:54
alamb
refactor: Remove org/bucket from WriteBufferDatabase interface
false
Remove org/bucket from WriteBufferDatabase interface
refactor
diff --git a/src/server/write_buffer_routes.rs b/src/server/write_buffer_routes.rs index 3390bbf6bf1..47f436211fd 100644 --- a/src/server/write_buffer_routes.rs +++ b/src/server/write_buffer_routes.rs @@ -9,7 +9,7 @@ use http::header::CONTENT_ENCODING; use tracing::{debug, error, info}; -use delorean::storage::{Dat...
43f5aefe6c1bcda4b475d3c67ee284301679c1d4
2021-08-10 01:12:27
Daniel Moran
build: include query-format in EC2 perftest instance names (#22134)
false
include query-format in EC2 perftest instance names (#22134)
build
diff --git a/.circleci/config.yml b/.circleci/config.yml index 3bda999f8bb..d7bd626cad9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -13,6 +13,9 @@ parameters: aws_teardown_datestring: default: "n/a" type: string + aws_teardown_query_format: + default: "n/a" + type: string work...
11ba4b5f6ab56bed9ca46497bb1301ea85551026
2021-07-22 23:52:08
Nga Tran
fix: fix unit_test setting to have the desired results
false
fix unit_test setting to have the desired results
fix
diff --git a/query/src/frontend/reorg.rs b/query/src/frontend/reorg.rs index 64d7ab3d397..10869533876 100644 --- a/query/src/frontend/reorg.rs +++ b/query/src/frontend/reorg.rs @@ -297,6 +297,7 @@ mod test { .with_tag_column_with_stats("tag1", Some("UT"), Some("WA")) .with_i64_field_co...
c175ccd1b4120f1c6cf8acec82ddc543989ea2fc
2022-02-09 01:36:47
Edd Robinson
feat: make stop/stop/predicate global (#3681)
false
make stop/stop/predicate global (#3681)
feat
diff --git a/influxdb_iox/src/commands/storage.rs b/influxdb_iox/src/commands/storage.rs index 5dddb2efd0c..65c5730c817 100644 --- a/influxdb_iox/src/commands/storage.rs +++ b/influxdb_iox/src/commands/storage.rs @@ -42,16 +42,16 @@ pub struct Config { db_name: OrgAndBucket, /// The requested start time (in...
cdbf532f57231b3f785073e50955f314120a190d
2020-03-12 23:15:48
Jacob Marble
refactor(storage): remove dead code and rename a few things (#17217)
false
remove dead code and rename a few things (#17217)
refactor
diff --git a/storage/reads/series_cursor.go b/storage/reads/series_cursor.go index 55975af9e44..e9bf3c7e432 100644 --- a/storage/reads/series_cursor.go +++ b/storage/reads/series_cursor.go @@ -24,7 +24,7 @@ type SeriesRow struct { SortKey []byte Name []byte // measurement name SeriesTags models.Tags...
27cd61e22d77f7a72f5fbca0ab8551065ec3625e
2018-07-06 19:51:41
Jonathan A. Sternberg
refactor(query/influxql): modify the transpiler compilation tests to remove skip
false
modify the transpiler compilation tests to remove skip
refactor
diff --git a/query/influxql/function.go b/query/influxql/function.go index a0fbca7a0e1..d3890396407 100644 --- a/query/influxql/function.go +++ b/query/influxql/function.go @@ -1,6 +1,7 @@ package influxql import ( + "errors" "fmt" "github.com/influxdata/influxql" @@ -9,6 +10,41 @@ import ( "github.com/infl...
037f3c11e7c3e24cb5bc69e32a1a65b1d2ee3c31
2020-06-15 23:03:14
Russ Savage
chore(fluxFunctions): Update hasSuffix/Prefix (#18496)
false
Update hasSuffix/Prefix (#18496)
chore
diff --git a/ui/src/shared/constants/fluxFunctions.ts b/ui/src/shared/constants/fluxFunctions.ts index 5f6708fadb6..c919c9fb041 100644 --- a/ui/src/shared/constants/fluxFunctions.ts +++ b/ui/src/shared/constants/fluxFunctions.ts @@ -4342,14 +4342,14 @@ export const FLUX_FUNCTIONS: FluxToolbarFunction[] = [ typ...
7a2867b98bc540237bfc3a56f748c602efdb529c
2024-05-08 22:35:24
Michael Gattozzi
feat: Store precision in WAL for replayability (#24966)
false
Store precision in WAL for replayability (#24966)
feat
diff --git a/influxdb3_write/src/lib.rs b/influxdb3_write/src/lib.rs index 6d8b86d2f89..c654629917b 100644 --- a/influxdb3_write/src/lib.rs +++ b/influxdb3_write/src/lib.rs @@ -447,6 +447,7 @@ pub struct LpWriteOp { pub db_name: String, pub lp: String, pub default_time: i64, + pub precision: Precision...
33af90ef9a3ccc7fe0ab88420add55c33f0904cb
2023-08-22 16:21:04
CircleCI[bot]
chore: Run cargo hakari tasks
false
Run cargo hakari tasks
chore
diff --git a/Cargo.lock b/Cargo.lock index 3cc617cbc0a..471ff805c37 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2079,6 +2079,7 @@ dependencies = [ "test_helpers", "thiserror", "tokio", + "workspace-hack", ] [[package]] diff --git a/gossip_schema/Cargo.toml b/gossip_schema/Cargo.toml index 1dc7da1d0fa..7efbb9...
3997de6a524ab77a765f62ec07d50b26d1d0795c
2023-02-18 02:59:44
Joe-Blount
chore: cleanup formating
false
cleanup formating
chore
diff --git a/influxdb_iox/src/commands/run/compactor2.rs b/influxdb_iox/src/commands/run/compactor2.rs index 0ba3cb2226d..96a86a3f0a0 100644 --- a/influxdb_iox/src/commands/run/compactor2.rs +++ b/influxdb_iox/src/commands/run/compactor2.rs @@ -106,7 +106,10 @@ pub async fn command(config: Config) -> Result<(), Error> ...
7969808f09973640dc996c8391356b26d13016fb
2021-01-19 23:58:26
Andrew Lamb
feat: Chunk Migration APIs and query data in the read buffer via SQL (#668)
false
Chunk Migration APIs and query data in the read buffer via SQL (#668)
feat
diff --git a/Cargo.lock b/Cargo.lock index 0983b544888..705e0965cb4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3298,6 +3298,7 @@ dependencies = [ "serde_json", "snafu", "snap", + "test_helpers", "tokio", "tracing", "uuid", diff --git a/mutable_buffer/src/database.rs b/mutable_buffer/src/database.rs index ...
b16fcc284d29b0edd1716cb029db309ba605fd56
2022-04-06 19:01:42
Carol (Nichols || Goulding)
feat: Add new columns to the sort key during compaction
false
Add new columns to the sort key during compaction
feat
diff --git a/ingester/src/compact.rs b/ingester/src/compact.rs index 3af4b414a05..04fe516ddd8 100644 --- a/ingester/src/compact.rs +++ b/ingester/src/compact.rs @@ -2,7 +2,7 @@ use crate::{ data::{PersistingBatch, QueryableBatch}, - sort_key::compute_sort_key, + sort_key::{compute_sort_key, concat_new_col...
04e36b18f0ce725cc92e57ff749b0c5a78ed066c
2019-02-06 03:02:47
Iris Scholten
fix(ui/dataLoaders): Update the collectors configure step button to 'Create and Verify'
false
Update the collectors configure step button to 'Create and Verify'
fix
diff --git a/CHANGELOG.md b/CHANGELOG.md index 0224937c2a9..4bc51a33817 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ ## UI Improvements 1. [11683](https://github.com/influxdata/influxdb/pull/11683): Change the wording for the plugin config form button to Done +1. [11689](https://github.com/influxdat...
ab4f91011191968567a7dc08dd8243d85caf39e1
2022-12-02 16:55:30
Marco Neumann
refactor: improve DF error handling (#6311)
false
improve DF error handling (#6311)
refactor
diff --git a/datafusion_util/src/watch.rs b/datafusion_util/src/watch.rs index e6a01d0e99e..95dfc8ccc8d 100644 --- a/datafusion_util/src/watch.rs +++ b/datafusion_util/src/watch.rs @@ -62,11 +62,17 @@ async fn watch_task<S>( let msg = match task_result { Err(join_err) => { debug!(e=%join_err,...
781e305aff8e2adf9ee8c4a93ad9a5e86b3b0b3d
2019-01-22 09:32:24
Chris Goller
feat(telemetry): encode metrics into store in various formats
false
encode metrics into store in various formats
feat
diff --git a/cmd/telemetryd/main.go b/cmd/telemetryd/main.go index 567333aefc3..b7c896f6abc 100644 --- a/cmd/telemetryd/main.go +++ b/cmd/telemetryd/main.go @@ -8,6 +8,7 @@ import ( "github.com/influxdata/influxdb/kit/cli" influxlogger "github.com/influxdata/influxdb/logger" + "github.com/influxdata/influxdb/prom...
51e72c8821081b01c831783a3dcf0045bf81f28c
2021-06-23 23:03:29
Carol (Nichols || Goulding)
refactor: Extract a function for creating a write buffer from database rules
false
Extract a function for creating a write buffer from database rules
refactor
diff --git a/server/src/config.rs b/server/src/config.rs index de414ca4612..996393c3c40 100644 --- a/server/src/config.rs +++ b/server/src/config.rs @@ -12,8 +12,7 @@ use query::exec::Executor; /// This module contains code for managing the configuration of the server. use crate::{ db::{catalog::Catalog, Db}, - ...
f133cda00cac5360dfc92495264ecc541aab292d
2023-01-30 17:22:13
Andrew Lamb
docs: Add docstring to Scratchpad (#6742)
false
Add docstring to Scratchpad (#6742)
docs
diff --git a/compactor2/src/components/scratchpad/mod.rs b/compactor2/src/components/scratchpad/mod.rs index 58a27fe4bc8..a2a23330772 100644 --- a/compactor2/src/components/scratchpad/mod.rs +++ b/compactor2/src/components/scratchpad/mod.rs @@ -15,6 +15,34 @@ pub trait ScratchpadGen: Debug + Display + Send + Sync { ...
8e52b6cf56753960958cae85bebb4be42ea631c3
2020-05-05 23:31:13
Johnny Steenbergen
fix: delete unique keys when record not found
false
delete unique keys when record not found
fix
diff --git a/kv/notification_endpoint.go b/kv/notification_endpoint.go index fbdfe4ab7ae..3fc7772563f 100644 --- a/kv/notification_endpoint.go +++ b/kv/notification_endpoint.go @@ -41,7 +41,7 @@ func newEndpointStore() *IndexStore { return &IndexStore{ Resource: resource, EntStore: NewStoreBase(resource, []...
fa8da19c4523f975751136f3ba21ed8fdc1ffee6
2021-08-13 16:27:46
Edd Robinson
refactor: expose enc size API into column
false
expose enc size API into column
refactor
diff --git a/query_tests/src/sql.rs b/query_tests/src/sql.rs index e554ba36819..2e9575d47bd 100644 --- a/query_tests/src/sql.rs +++ b/query_tests/src/sql.rs @@ -370,10 +370,10 @@ async fn sql_select_from_system_chunk_columns() { "| partition_key | chunk_id | table_name | column_name | storage | row_c...
c28b5f94e75e656b50d36e097416a1ebec7a47a4
2021-01-12 03:31:40
Sean Brickley
chore(ui): Upgrade flux-lsp-browser to v0.5.27
false
Upgrade flux-lsp-browser to v0.5.27
chore
diff --git a/ui/package.json b/ui/package.json index c7b958bffd0..92922f104e3 100644 --- a/ui/package.json +++ b/ui/package.json @@ -135,7 +135,7 @@ "dependencies": { "@influxdata/clockface": "2.3.4", "@influxdata/flux": "^0.5.1", - "@influxdata/flux-lsp-browser": "^0.5.26", + "@influxdata/flux-lsp-b...
c6a6005f656b1701da133140ed300db4ff1d8bc8
2021-05-20 13:52:20
Marco Neumann
feat: add `PreservedCatalog.exists`
false
add `PreservedCatalog.exists`
feat
diff --git a/parquet_file/src/catalog.rs b/parquet_file/src/catalog.rs index d3b7583d05d..32c446356d4 100644 --- a/parquet_file/src/catalog.rs +++ b/parquet_file/src/catalog.rs @@ -250,6 +250,17 @@ impl<S> PreservedCatalog<S> where S: CatalogState, { + /// Checks if a preserved catalog exists. + pub async ...
9171e1521f908e93f0c781d081f99c952266e326
2023-06-08 20:05:33
Joe-Blount
fix: clean compaction output from scratchpad
false
clean compaction output from scratchpad
fix
diff --git a/compactor/src/driver.rs b/compactor/src/driver.rs index fb448a695cf..c940c0057f9 100644 --- a/compactor/src/driver.rs +++ b/compactor/src/driver.rs @@ -321,6 +321,9 @@ async fn execute_branch( ) .await?; + // inputs can be removed from the scratchpad as soon as we're done with compaction. + ...
1eab81f47eeb26c8b9f4f18a425e808b604242e5
2021-11-30 20:16:34
Marco Neumann
chore: ignore `RUSTSEC-2021-0127`
false
ignore `RUSTSEC-2021-0127`
chore
diff --git a/.cargo/audit.toml b/.cargo/audit.toml index b4e7b2d43b0..0a54839ea86 100644 --- a/.cargo/audit.toml +++ b/.cargo/audit.toml @@ -39,6 +39,11 @@ ignore = [ # why needed: part of `arrow` # upstream issue: https://github.com/google/flatbuffers/issues/6627 "RUSTSEC-2021-0122", + + # title: ser...
6f74f512114488d7dff424fe1f1fb5278e99d9b7
2021-10-18 22:44:14
Raphael Taylor-Davies
chore: suppress RUSTSEC-2020-0159
false
suppress RUSTSEC-2020-0159
chore
diff --git a/.cargo/audit.toml b/.cargo/audit.toml index 141c66d3a75..93c024913ce 100644 --- a/.cargo/audit.toml +++ b/.cargo/audit.toml @@ -10,6 +10,11 @@ ignore = [ # upstream issue: https://github.com/chronotope/chrono/issues/553 "RUSTSEC-2020-0071", + # title: Potential segfault in `localtime_r` invo...
40d3dd8cc44ae7e3002719f9af259b1b9b8b88ac
2020-03-24 23:44:55
Alex Boatwright
fix: show all dashboards (#17399)
false
show all dashboards (#17399)
fix
diff --git a/ui/src/dashboards/components/dashboard_index/DashboardCards.tsx b/ui/src/dashboards/components/dashboard_index/DashboardCards.tsx index 8444643b982..148de15864d 100644 --- a/ui/src/dashboards/components/dashboard_index/DashboardCards.tsx +++ b/ui/src/dashboards/components/dashboard_index/DashboardCards.tsx...
f2fc4a6d4367fed6338fa53bd142bab8929d0c30
2020-06-23 00:23:53
Carol (Nichols || Goulding)
chore: Remove or change scope for outdated dead_code allows
false
Remove or change scope for outdated dead_code allows
chore
diff --git a/delorean_tsm/src/encoders/float.rs b/delorean_tsm/src/encoders/float.rs index db36611deec..99e4bfd7279 100644 --- a/delorean_tsm/src/encoders/float.rs +++ b/delorean_tsm/src/encoders/float.rs @@ -19,7 +19,6 @@ fn is_sentinel_u64(v: u64, sentinel: u64) -> bool { /// paper. Each subsequent value is compared...
1396b86a6f8f3d8243aeffdab6c22135921a1384
2021-04-23 21:28:48
Edd Robinson
refactor: tidy up labels
false
tidy up labels
refactor
diff --git a/metrics/src/lib.rs b/metrics/src/lib.rs index 47002370917..90f08c90ba8 100644 --- a/metrics/src/lib.rs +++ b/metrics/src/lib.rs @@ -131,7 +131,7 @@ impl Domain { /// `mydomain.somename.requests.total` /// `mydomain.somename.requests.duration.seconds` pub fn register_red_metric(&self, subname...
6a562757ada5c65b369dcbde9ec014a59ff56757
2019-05-03 02:34:40
Alirie Gray
test(http): add test coverage for handler.go
false
add test coverage for handler.go
test
diff --git a/http/handler_test.go b/http/handler_test.go index 7adbd3ddcb8..29d684a0352 100644 --- a/http/handler_test.go +++ b/http/handler_test.go @@ -6,21 +6,16 @@ import ( _ "net/http/pprof" "testing" - "github.com/prometheus/client_golang/prometheus" + "github.com/influxdata/influxdb/kit/prom" + "github.com/...
b91a856f59348cf75fb2c4addcd3aa95f05d06b2
2019-10-09 04:09:33
Alex Boatwright
chore(ui): relocate testing configuration (#15356)
false
relocate testing configuration (#15356)
chore
diff --git a/ui/jest.config.js b/ui/jest.config.js new file mode 100644 index 00000000000..3fc82684f17 --- /dev/null +++ b/ui/jest.config.js @@ -0,0 +1,45 @@ +module.exports = { + setupFilesAfterEnv: [ + './jestSetup.ts' + ], + displayName: 'test', + testURL: 'http://localhost', + testPathIgnorePatterns: [ + ...
6dcbc88d22f39e71a67d5fe3b96bc6d7f0646494
2020-02-06 03:45:32
Zoe Steinkamp
fix: gauge tests (#16744)
false
gauge tests (#16744)
fix
diff --git a/ui/cypress/e2e/explorer.test.ts b/ui/cypress/e2e/explorer.test.ts index 3f4af28c547..b4e0fde512a 100644 --- a/ui/cypress/e2e/explorer.test.ts +++ b/ui/cypress/e2e/explorer.test.ts @@ -181,6 +181,48 @@ describe('DataExplorer', () => { }) }) + describe('Optional suffix and prefix in gauge', () => ...
b18b18afd9d39c378901eed691cba25bc0dc54b0
2022-03-22 19:12:52
Paul Dix
fix: have ingester use single mutable batch for buffer (#4095)
false
have ingester use single mutable batch for buffer (#4095)
fix
diff --git a/ingester/src/data.rs b/ingester/src/data.rs index 62086ef51e1..1901dce5fd2 100644 --- a/ingester/src/data.rs +++ b/ingester/src/data.rs @@ -87,6 +87,9 @@ pub enum Error { #[snafu(display("Error while copying buffer to snapshot: {}", source))] BufferToSnapshot { source: mutable_batch::Error }, +...
2b7289002818ac31dec734e36be9e281aa442eab
2021-03-10 19:58:03
Andrew Lamb
fix: Revert "fix: Shutdown stest fixture on test harness exit"
false
Revert "fix: Shutdown stest fixture on test harness exit"
fix
diff --git a/scripts/cargo_bin_no_orphan.bash b/scripts/cargo_bin_no_orphan.bash deleted file mode 100755 index ef80ca4e928..00000000000 --- a/scripts/cargo_bin_no_orphan.bash +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/bash -# -# Runs a command and waits until it or the parent process dies. -# -# See https://github.com/inf...
414b0f02cae02a9d86123b0de10007f02138f73b
2022-09-19 22:54:08
Carol (Nichols || Goulding)
fix: Use time helper methods in more places
false
Use time helper methods in more places
fix
diff --git a/compactor/src/compact.rs b/compactor/src/compact.rs index 98cab77e965..26a0b14bb22 100644 --- a/compactor/src/compact.rs +++ b/compactor/src/compact.rs @@ -285,11 +285,8 @@ impl Compactor { // the last 4 hours. If not, increase to 24 hours let mut num_partitions = 0; ...
0bd28f66bc5d09f5fb6a708545855bc30d8a57ef
2022-02-12 03:58:49
Dane Strandboge
fix: update 422 dry-run response to conform to API spec (#23121)
false
update 422 dry-run response to conform to API spec (#23121)
fix
diff --git a/pkger/http_server_template.go b/pkger/http_server_template.go index e5f6004a77a..8bf0c1b694f 100644 --- a/pkger/http_server_template.go +++ b/pkger/http_server_template.go @@ -316,6 +316,14 @@ type RespApply struct { Errors []ValidationErr `json:"errors,omitempty" yaml:"errors,omitempty"` } +// RespAp...
2ebf17645ed6c9634a8b2206ea432f16662657ee
2019-01-15 21:17:31
Nathaniel Cook
chore: update Flux to v0.14.0
false
update Flux to v0.14.0
chore
diff --git a/go.mod b/go.mod index 7d7e5251e37..d088cff2622 100644 --- a/go.mod +++ b/go.mod @@ -66,7 +66,7 @@ require ( github.com/hashicorp/vault v0.11.5 github.com/hashicorp/vault-plugin-secrets-kv v0.0.0-20181106190520-2236f141171e // indirect github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d // i...
60ad929721744a668bb762afc52c4374856cdaa7
2021-06-02 02:09:14
Nga Tran
refactor: add macro tto compare output of explains
false
add macro tto compare output of explains
refactor
diff --git a/query/src/exec/context.rs b/query/src/exec/context.rs index 1fd5260ee6e..3fdab7797d1 100644 --- a/query/src/exec/context.rs +++ b/query/src/exec/context.rs @@ -147,7 +147,6 @@ impl IOxExecutionContext { pub fn prepare_sql(&mut self, sql: &str) -> Result<Arc<dyn ExecutionPlan>> { debug!(text=%...
64bf8c5182e341656d1374633bf729dc6e3682e2
2021-06-02 13:11:19
Marco Neumann
docs: add code comment explaining why we parse transaction timestamps
false
add code comment explaining why we parse transaction timestamps
docs
diff --git a/parquet_file/src/catalog.rs b/parquet_file/src/catalog.rs index 9746ac17a9b..2ff7c98b22d 100644 --- a/parquet_file/src/catalog.rs +++ b/parquet_file/src/catalog.rs @@ -866,6 +866,7 @@ where } .fail()?; } + // verify we can parse the timestamp (checking that no erro...
e811a69a1e375929e2bdc46da2ebe2451398cee0
2023-04-13 15:37:32
dependabot[bot]
chore(deps): Bump serde_json from 1.0.95 to 1.0.96 (#7535)
false
Bump serde_json from 1.0.95 to 1.0.96 (#7535)
chore
diff --git a/Cargo.lock b/Cargo.lock index bfec9171484..5bb2a12a4a0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4947,9 +4947,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.95" +version = "1.0.96" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d721eca97ac802aa7...
1ccaa433e8ed6b51b2840ccf98dca75b17cd1d58
2021-07-31 01:54:30
Andrew Lamb
fix: Temporarily disable parquet predicate pushdown (#2164)
false
Temporarily disable parquet predicate pushdown (#2164)
fix
diff --git a/parquet_file/src/storage.rs b/parquet_file/src/storage.rs index 675f556e77f..664dfd31902 100644 --- a/parquet_file/src/storage.rs +++ b/parquet_file/src/storage.rs @@ -305,6 +305,14 @@ impl Storage { path: temp_path.to_string_lossy(), })?; + // TODO: renenable when bug in par...
ffe63442751c3342865f82802de658d02552a431
2020-03-05 21:00:04
Stuart Carnie
feat(cli): Extend example demonstrating pflag.Value
false
Extend example demonstrating pflag.Value
feat
diff --git a/kit/cli/viper_test.go b/kit/cli/viper_test.go index ca95a15b46d..3fbbd0738ec 100644 --- a/kit/cli/viper_test.go +++ b/kit/cli/viper_test.go @@ -6,12 +6,36 @@ import ( "time" ) +type customFlag bool + +func (c customFlag) String() string { + if c == true { + return "on" + } + return "off" +} + +func (...
6327e3d9c0dedcfd21f6893e12d5c6e3f5d027bb
2023-02-09 16:09:33
dependabot[bot]
chore(deps): Bump serde_json from 1.0.92 to 1.0.93 (#6918)
false
Bump serde_json from 1.0.92 to 1.0.93 (#6918)
chore
diff --git a/Cargo.lock b/Cargo.lock index adb142cb62e..82e530362e9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5075,9 +5075,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.92" +version = "1.0.93" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7434af0dc1cbd5926...
b8f85967dd9994617f7dee785675548b0d2c2f65
2021-02-12 19:13:12
Andrew Lamb
feat: Enable/Disable logging in tests via RUST_LOG environment variable (#793)
false
Enable/Disable logging in tests via RUST_LOG environment variable (#793)
feat
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 97fe8caaaf3..ff7848003f5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -99,6 +99,25 @@ The `cargo` build tool runs tests as well. Run: cargo test --workspace ``` +### Enabling logging in tests + +To enable logging to stderr during a run of `cargo test` se...
a4df93e604ba41cdd35d55c9e5c370576e39c966
2022-04-12 17:35:08
Dom Dwyer
chore: workspace-hack update
false
workspace-hack update
chore
diff --git a/Cargo.lock b/Cargo.lock index 2f838a9c886..a467dbab83f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7021,6 +7021,7 @@ dependencies = [ "bytes", "cc", "chrono", + "crossbeam-utils", "digest 0.9.0", "either", "futures-channel", @@ -7067,6 +7068,7 @@ dependencies = [ "tokio-stream", "tokio-uti...
2d6a23f7c3456a73378dcf639873b6b71958bd9c
2021-07-19 18:32:29
Edd Robinson
fix: avoid potential race
false
avoid potential race
fix
diff --git a/lifecycle/src/policy.rs b/lifecycle/src/policy.rs index f03dd351b8c..dfe713fa2ca 100644 --- a/lifecycle/src/policy.rs +++ b/lifecycle/src/policy.rs @@ -530,12 +530,13 @@ where // Clear out completed tasks let mut completed_compactions = 0; self.trackers.retain(|x| { - ...
cf046d0b3e5ffec1bbbbcf3d6d050d099e7206ca
2023-07-17 20:04:01
Carol (Nichols || Goulding)
refactor: Extract a from implementation for creating TransitionPartitionId
false
Extract a from implementation for creating TransitionPartitionId
refactor
diff --git a/compactor/src/partition_info.rs b/compactor/src/partition_info.rs index 0167dd77ebc..41940d4a49f 100644 --- a/compactor/src/partition_info.rs +++ b/compactor/src/partition_info.rs @@ -45,9 +45,6 @@ impl PartitionInfo { /// If this partition has a `PartitionHashId` stored in the catalog, use that. Othe...
41d695effc45f863dd133dc7c6565ccddd6318ed
2021-04-26 22:28:25
Paul Hummer
build(flux): update flux to v0.113.1 (#21294)
false
update flux to v0.113.1 (#21294)
build
diff --git a/go.mod b/go.mod index 659b083536b..06173fc94cd 100644 --- a/go.mod +++ b/go.mod @@ -47,7 +47,7 @@ require ( github.com/hashicorp/vault/api v1.0.2 github.com/imdario/mergo v0.3.9 // indirect github.com/influxdata/cron v0.0.0-20191203200038-ded12750aac6 - github.com/influxdata/flux v0.113.0 + github.co...
225f426e08b2140077bca15a82f0be747b3e32e9
2019-09-06 10:58:35
Russ Savage
fix(slack): remove option for token in UI (#14998)
false
remove option for token in UI (#14998)
fix
diff --git a/http/notification_endpoint_test.go b/http/notification_endpoint_test.go index 2d2432c7143..6be75cf5077 100644 --- a/http/notification_endpoint_test.go +++ b/http/notification_endpoint_test.go @@ -68,8 +68,7 @@ func TestService_handleGetNotificationEndpoints(t *testing.T) { OrgID: influxTesting.M...
4928259411e3dfe19ced76bb20a039bae80b7287
2020-03-17 08:42:38
Gershon Shif
chore: added INFLUXPATH parameter required by backup and restore tests (#17306)
false
added INFLUXPATH parameter required by backup and restore tests (#17306)
chore
diff --git a/.circleci/config.yml b/.circleci/config.yml index ac999030808..59acf9352af 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -44,9 +44,9 @@ jobs: - attach_workspace: at: ~/project - run: docker login -u=$QUAY_USER -p=$QUAY_PASS quay.io - - run: docker run --entry...
885767aa0a6010de592bde9992945b01389eb994
2023-07-13 20:20:35
dependabot[bot]
chore(deps): Bump regex-automata from 0.3.2 to 0.3.3 (#8225)
false
Bump regex-automata from 0.3.2 to 0.3.3 (#8225)
chore
diff --git a/Cargo.lock b/Cargo.lock index 8111e7daa07..83ff1d986b1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4565,7 +4565,7 @@ checksum = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575" dependencies = [ "aho-corasick", "memchr", - "regex-automata 0.3.2", + "regex-automata 0.3.3", "regex-sy...
8a503b5a08abe3ad48bf7860d5cba8710e678f1c
2019-08-16 08:11:29
Kelvin Wang
chore(authorizer): user org perm for endpoints
false
user org perm for endpoints
chore
diff --git a/authorizer/notification_endpoint.go b/authorizer/notification_endpoint.go index 913eacdf6dd..3bff41d60e3 100644 --- a/authorizer/notification_endpoint.go +++ b/authorizer/notification_endpoint.go @@ -32,52 +32,6 @@ func NewNotificationEndpointService( } } -func newNotificationEndpointPermission(a infl...
27a98d75860072be935166c3d617cbef479813de
2023-06-21 13:47:40
dependabot[bot]
chore(deps): Bump tower-http from 0.4.0 to 0.4.1 (#8029)
false
Bump tower-http from 0.4.0 to 0.4.1 (#8029)
chore
diff --git a/Cargo.lock b/Cargo.lock index 81c3d8bd869..1edf3a779ca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -552,7 +552,7 @@ checksum = "f8175979259124331c1d7bf6586ee7e0da434155e4b2d48ec2c8386281d8df39" dependencies = [ "async-trait", "axum-core", - "bitflags", + "bitflags 1.3.2", "bytes", "futures-util", ...
b1b2444fac1e429e3f4831549b3f91edcbf763d8
2020-03-05 07:32:43
Deniz Kusefoglu
feat(sampledata): Route from buckets index to Data Explorer (#17085)
false
Route from buckets index to Data Explorer (#17085)
feat
diff --git a/CHANGELOG.md b/CHANGELOG.md index 35714ff4b3f..69c237210a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ ## v2.0.0-beta.6 [unreleased] ### Features +1. [17085](https://github.com/influxdata/influxdb/pull/17085): Clicking on bucket name takes user to Data Explorer with bucket selected ...
aa9213c4f4da7af72bb30e71a766028146cb1fbb
2025-01-10 00:10:14
praveen-influx
feat: check mem and force snapshot (#25767)
false
check mem and force snapshot (#25767)
feat
diff --git a/influxdb3/src/commands/serve.rs b/influxdb3/src/commands/serve.rs index 9262ffe0edb..7da27da9e54 100644 --- a/influxdb3/src/commands/serve.rs +++ b/influxdb3/src/commands/serve.rs @@ -28,7 +28,10 @@ use influxdb3_telemetry::store::TelemetryStore; use influxdb3_wal::{Gen1Duration, WalConfig}; use influxdb...
3a473d2374ecb3b910d267e40a32c574f01b6aad
2023-03-23 07:32:33
dependabot[bot]
chore(deps): Bump dotenvy from 0.15.6 to 0.15.7
false
Bump dotenvy from 0.15.6 to 0.15.7
chore
diff --git a/Cargo.lock b/Cargo.lock index d227f36758e..d2462642596 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1777,9 +1777,9 @@ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" [[package]] name = "dotenvy" -version = "0.15.6" +version = "0.15.7" source = "registry+https://github.com...
7c529d929a9da36fe4d7c905dacf7c6770e4a8de
2021-07-03 02:21:36
Dane Strandboge
feat: port `influxd inspect dump-tsm` (#21761)
false
port `influxd inspect dump-tsm` (#21761)
feat
diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ee2d201c6f..9611e13de74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,7 @@ This release adds an embedded SQLite database for storing metadata required by t 1. [21621](https://github.com/influxdata/influxdb/pull/21621): Add `storage-wal-max-write-delay` config...
db5ad12b9a3741c8da4faa3743968c915994217c
2023-09-13 20:44:42
Dom Dwyer
docs: remove misleading documentation
false
remove misleading documentation
docs
diff --git a/ingester/src/arcmap.rs b/ingester/src/arcmap.rs index 509c314179e..fed9cbb7a67 100644 --- a/ingester/src/arcmap.rs +++ b/ingester/src/arcmap.rs @@ -62,10 +62,9 @@ where /// This call is thread-safe - if two calls race, a value will be /// initialised exactly once (one arbitrary caller's `init` cl...
8d7865496d0625b2e4f81a31e992b1e235296d21
2022-02-07 20:44:34
Andrew Lamb
refactor: remove out of date comments (#3653)
false
remove out of date comments (#3653)
refactor
diff --git a/query_tests/src/influxrpc/read_group.rs b/query_tests/src/influxrpc/read_group.rs index bed008d9369..c2937548aa2 100644 --- a/query_tests/src/influxrpc/read_group.rs +++ b/query_tests/src/influxrpc/read_group.rs @@ -360,8 +360,6 @@ async fn test_grouped_series_set_plan_count_measurement_pred() { .awai...
0ea0cf6a9375112fdb8684b80c19203ed160e1a4
2020-05-12 01:08:47
Jake Goulding
ci: install the Flatbuffers compiler
false
install the Flatbuffers compiler
ci
diff --git a/.circleci/config.yml b/.circleci/config.yml index 467bb5476fd..8560e9e9a42 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -11,6 +11,41 @@ commands: - run: name: Add llvm-config to the PATH command: sudo update-alternatives --install /usr/bin/llvm-config llvm-co...
e09f39d6a069d9859f7fa38f8819263bd005fb71
2022-03-05 01:07:46
Andrew Lamb
chore: Update datafusion (#3943)
false
Update datafusion (#3943)
chore
diff --git a/Cargo.lock b/Cargo.lock index b8ba0d58989..a316c7b8d64 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -73,6 +73,12 @@ version = "1.0.55" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "159bb86af3a200e19a068f4224eae4c8bb2d0fa054c7e5d1cacd5cef95e684cd" +[[package]] +name = "arra...