31,581 issues in cockroachdb/cockroach
Add Date, Timestamp and Interval types.
-
Opened by vivekmenezes
Sep 1, 2015 - 168 comments
storage: transitive prerequisites are not always transferred on command cancellation
https://sentry.io/cockroach-labs/cockroachdb/issues/284616795/ if len(reply.Ranges) == 0 { // No matching results were returned from the scan. This should // never happen with the above logic. ...
-
Opened by tschottdorf
Jun 1, 2017 - 150 comments
storage: dropping a large table will brick a cluster due to compactions
$ roachprod create USER-FOO -n10 $ roachprod run USER-FOO 'mkdir -p /mnt/data1/cockroach && gsutil -m -q cp -r gs://cockroach-fixtures/workload/bank/version=1.0.0,payload-bytes=10240,ranges=0,rows=65104166,seed=1/stores=10/$((10#$(hostname ...
-
Opened by benesch
Mar 19, 2018 - 140 comments
Replica Batch ground work
opening this as a PR so that we can comment and discuss on the diffs. I rebased on top of master and am adding commits, nothing else. Original branch is backed up here.
-
Opened by tschottdorf
Sep 3, 2015 - 134 comments
Add reverse scan support
The work is still in process.The main logic has been added.There are some tests and comments to be added. The major changes are as follows: 1.The key.Prev() has been restored which has been deleted by ...
-
Opened by thundercw
Jul 15, 2015 - 130 comments
Batch requests all the way up to Store.ExecuteCmd
see #2130, #1998 for context. This (for the most part) implements the foundation for #2130. I say the "foundation" because some parts which are in there aren't implemented yet, but clearly ...
-
Opened by tschottdorf
Aug 18, 2015 - 127 comments
stability: implement node liveness; first step towards new range leases
This change adds a node liveness table as a global system table. Nodes periodically write updates to their liveness record by doing a conditional put to the liveness table. The leader of the range containing ...
-
Opened by spencerkimball
Sep 25, 2016 - 139 comments
ccl/importccl: TestImportCSVStmt failed under stress
SHA: https://github.com/cockroachdb/cockroach/commits/eed443af32474fd76d3b860b44ebfa339b249703 Parameters: TAGS= GOFLAGS=-race Failed test: https://teamcity.cockroachdb.com/viewLog.html?buildId=783812&tab=buildLog ...
-
Opened by cockroach-teamcity
Jul 18, 2018 - 121 comments
Grant leader lease to ranges; implement HasLeaderLease.
Added new Lease type to proto/data.proto. Leases contain an expiration as a wall time in unix nanos as well as the node and store IDs of the replica being granted the lease. Ranges keep track of the lease ...
-
Opened by spencerkimball
Apr 9, 2015 - 118 comments
Add support for multi-statement transactions.
for subsequent operations. Implement COMMIT and ROLLBACK transaction. Implement implicit BEGIN transaction. closes https://github.com/cockroachdb/cockroach/issues/1890
-
Opened by vivekmenezes
Aug 11, 2015 - 115 comments