forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…db#77235 cockroachdb#77241 cockroachdb#77242 76689: importccl: update parquet vendor r=stevendanna a=msbutler importccl: update parquet vendor to v0.10.0 Release note: None Release justification: bug fixes and low-risk updates to new functionality 77108: ttl: add telemetry r=rafiss a=otan This commit adds telemetry to row level TTL configuration, as well as executions of the row level TTL job. Release note: None Release justification: low risk high benefit changes to new functionality 77232: server: adding tests for statement details status api r=maryliag a=maryliag This commit adds test cases for the newly created StatementDetails endpoint. Release note: None Release justification: Category 1 77235: ccl/sqlproxyccl: skip TestDirectoryConnect under stress r=JeffSwenson a=jaylim-crl See cockroachdb#76839. TestDirectoryConnect seems to be flaking under stress. After some initial investigations, it is suspected that this may be due to port reuse issues within the testing environment. We'll skip this test for now, and a TODO has been added. Release note: None Release justification: Low-risk, test only change. 77241: cli: disable automatic compactions for compact command & enable parallelism r=bananabrick a=mufeez-amjad When running `debug compact`, disable automatic compactions to prevent excessive retrying of the manual compaction, and to prevent conflicts in the chosen key ranges to compact in parallel. Also, enable concurrent manual compactions in the call to `db.Compact`. The performance improvements for this change are discussed in: cockroachdb/pebble#1487 Release note: None Release justification: Plumbing for pebble change which was merged before the stability period. 77242: sql: add cluster version gating for new schema changer r=chengxiong-ruan a=chengxiong-ruan resolves: cockroachdb#77151 Release note: None Release justification: version gate is needed for the release. Co-authored-by: Michael Butler <[email protected]> Co-authored-by: Oliver Tan <[email protected]> Co-authored-by: Marylia Gutierrez <[email protected]> Co-authored-by: Jay <[email protected]> Co-authored-by: Mufeez Amjad <[email protected]> Co-authored-by: Chengxiong Ruan <[email protected]>
- Loading branch information
Showing
32 changed files
with
446 additions
and
53 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -244,10 +244,20 @@ def go_deps(): | |
name = "com_github_apache_thrift", | ||
build_file_proto_mode = "disable_global", | ||
importpath = "github.com/apache/thrift", | ||
sha256 = "f9e5418fda5dff9f5e1a892a127472fc621d417b3ee1351e53141509233fb1d5", | ||
strip_prefix = "github.com/apache/thrift@v0.15.0", | ||
sha256 = "50d5c610df30fa2a6039394d5142382b7d9938870dfb12ef46bddfa3da250893", | ||
strip_prefix = "github.com/apache/thrift@v0.16.0", | ||
urls = [ | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/apache/thrift/com_github_apache_thrift-v0.15.0.zip", | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/apache/thrift/com_github_apache_thrift-v0.16.0.zip", | ||
], | ||
) | ||
go_repository( | ||
name = "com_github_araddon_dateparse", | ||
build_file_proto_mode = "disable_global", | ||
importpath = "github.com/araddon/dateparse", | ||
sha256 = "8fe74d5b36a9aa66c1350657009296469f8aa5b6925acd178044cd248023fc5a", | ||
strip_prefix = "github.com/araddon/[email protected]", | ||
urls = [ | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/araddon/dateparse/com_github_araddon_dateparse-v0.0.0-20210429162001-6b43995a97de.zip", | ||
], | ||
) | ||
go_repository( | ||
|
@@ -2448,10 +2458,10 @@ def go_deps(): | |
name = "com_github_fraugster_parquet_go", | ||
build_file_proto_mode = "disable_global", | ||
importpath = "github.com/fraugster/parquet-go", | ||
sha256 = "66beb8f2218c31ca4ca3d3dbcc91c256f3379750ade924016f4179982446edd7", | ||
strip_prefix = "github.com/fraugster/parquet-go@v0.6.1", | ||
sha256 = "a9d995d60a99dac8709c614f3d2795ef4d8d79c82991b40fa703006078babf75", | ||
strip_prefix = "github.com/fraugster/parquet-go@v0.10.0", | ||
urls = [ | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/fraugster/parquet-go/com_github_fraugster_parquet_go-v0.6.1.zip", | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/fraugster/parquet-go/com_github_fraugster_parquet_go-v0.10.0.zip", | ||
], | ||
) | ||
go_repository( | ||
|
@@ -5319,10 +5329,10 @@ def go_deps(): | |
name = "com_github_mattn_go_runewidth", | ||
build_file_proto_mode = "disable_global", | ||
importpath = "github.com/mattn/go-runewidth", | ||
sha256 = "dab6e7984b913f61d02ac53f5c1875c029e591f3b4d3262dea8e95d8c28bb657", | ||
strip_prefix = "github.com/mattn/[email protected].7", | ||
sha256 = "030dcf3ea6cb39b34269f119ee5fe5e9d5834daf409e1f3f48c065a45326f4a6", | ||
strip_prefix = "github.com/mattn/[email protected].10", | ||
urls = [ | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/mattn/go-runewidth/com_github_mattn_go_runewidth-v0.0.7.zip", | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/mattn/go-runewidth/com_github_mattn_go_runewidth-v0.0.10.zip", | ||
], | ||
) | ||
go_repository( | ||
|
@@ -6733,6 +6743,16 @@ def go_deps(): | |
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/retailnext/hllpp/com_github_retailnext_hllpp-v1.0.1-0.20180308014038-101a6d2f8b52.zip", | ||
], | ||
) | ||
go_repository( | ||
name = "com_github_rivo_uniseg", | ||
build_file_proto_mode = "disable_global", | ||
importpath = "github.com/rivo/uniseg", | ||
sha256 = "cb701df81f36acfbb2627a78662fdcaa150ee1ac00d0796a7f3eafbdb6218128", | ||
strip_prefix = "github.com/rivo/[email protected]", | ||
urls = [ | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/rivo/uniseg/com_github_rivo_uniseg-v0.1.0.zip", | ||
], | ||
) | ||
go_repository( | ||
name = "com_github_robertkrimen_godocdown", | ||
build_file_proto_mode = "disable_global", | ||
|
@@ -6923,6 +6943,16 @@ def go_deps(): | |
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/sclevine/agouti/com_github_sclevine_agouti-v3.0.0+incompatible.zip", | ||
], | ||
) | ||
go_repository( | ||
name = "com_github_scylladb_termtables", | ||
build_file_proto_mode = "disable_global", | ||
importpath = "github.com/scylladb/termtables", | ||
sha256 = "0afd3a75417e6b708c62329cea7f2822162c8bf6ada0de094cdc032461b8f196", | ||
strip_prefix = "github.com/scylladb/[email protected]", | ||
urls = [ | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/scylladb/termtables/com_github_scylladb_termtables-v0.0.0-20191203121021-c4c0b6d42ff4.zip", | ||
], | ||
) | ||
go_repository( | ||
name = "com_github_sean__seed", | ||
build_file_proto_mode = "disable_global", | ||
|
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
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
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
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.