8000 Tags · ZhuZhengyi/cockroach · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: ZhuZhengyi/cockroach

Tags

provisional_201903181811_v19.1.0-rc.1

Toggle provisional_201903181811_v19.1.0-rc.1's commit message
Merge cockroachdb#35284 cockroachdb#35793 cockroachdb#35865

35284: storage,kv: make transaction deadline exceeded errors retriable r=andreimatei a=andreimatei

Before this patch, they were opaque TransactionStatusErrors.
The belief is that we should only be seeing such errors when a
transaction is pushed by minutes. Shockingly, this seems to hapen enough
in our tests, for example as described here: cockroachdb#18684 (comment)

This patch marks the error as retriable, since it technically is.

This patch also changes the semantics of the
EndTransactionRequest.Deadline field to make it exclusive so that it
matches the nature of SQL leases. No migration needed.

Touches cockroachdb#18684

Release note (sql change): "transaction deadline exceeded" errors are
now returned to the client with a retriable code.

35793: storage: fix TestRangeInfo flake and re-enable fo
8000
llower reads by default r=ajwerner a=ajwerner

This PR addresses a test flake introduced by enabling follower reads in
conjunction with cockroachdb#35130 which makes follower reads more generally possible
in the face of lease transfer.

Fixes cockroachdb#35758.

Release note: None

35865: roachtest: Skip flaky jepsen nemesis r=tbg a=bdarnell

See cockroachdb#35599

Release note: None

Co-authored-by: Andrei Matei <andrei@cockroachlabs.com>
Co-authored-by: Andrew Werner <ajwerner@cockroachlabs.com>
Co-authored-by: Ben Darnell <ben@bendarnell.com>

v19.1.0-beta.20190318

Toggle v19.1.0-beta.20190318's commit message
Merge cockroachdb#35663

35663: kv: disable size check on marshaling to reduce panics r=ajwerner a=ajwerner

This disables a portion of the additional checking added in cockroachdb#35202 because it
increases the rate of panics. This case should be re-enabled with the complete
resolution of cockroachdb#34241.

Release note: None

Co-authored-by: Andrew Werner <ajwerner@cockroachlabs.com>

provisional_201903122203_v19.1.0-beta.20190318

Toggle provisional_201903122203_v19.1.0-beta.20190318's commit message
Merge cockroachdb#35663

35663: kv: disable size check on marshaling to reduce panics r=ajwerner a=ajwerner

This disables a portion of the additional checking added in cockroachdb#35202 because it
increases the rate of panics. This case should be re-enabled with the complete
resolution of cockroachdb#34241.

Release note: None

Co-authored-by: Andrew Werner <ajwerner@cockroachlabs.com>

v2.1.6

Toggle v2.1.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request cockroachdb#35289 from jordanlewis/backport2.1-35125

release-2.1: sql: don't panic in prod on processor double close

provisional_201903042159_v2.1.6

Toggle provisional_201903042159_v2.1.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request cockroachdb#35289 from jordanlewis/backport2.1-35125

release-2.1: sql: don't panic in prod on processor double close

v19.1.0-beta.20190304

Toggle v19.1.0-beta.20190304's commit message
Merge cockroachdb#35223

35223: Makefile: add a gss go build tag r=tbg a=mjibson

This allows us to only build gss support if the Makefile determines it's
ok, instead of relying on Go's build tags as well.

Release note: None

Co-authored-by: Matt Jibson <matt.jibson@gmail.com>
Co-authored-by: David Taylor <tinystatemachine@gmail.com>

provisional_201902271612_v19.1.0-beta.20190304

Toggle provisional_201902271612_v19.1.0-beta.20190304's commit message
Merge cockroachdb#35223

35223: Makefile: add a gss go build tag r=tbg a=mjibson

This allows us to only build gss support if the Makefile determines it's
ok, instead of relying on Go's build tags as well.

Release note: None

Co-authored-by: Matt Jibson <matt.jibson@gmail.com>
Co-authored-by: David Taylor <tinystatemachine@gmail.com>

v19.1.0-beta.20190225

Toggle v19.1.0-beta.20190225's commit message
Merge cockroachdb#34755

34755: distsqlrun: sanity check sortTopKProcessor's parameters r=jordanlewis a=asubiotto

- Change k to a uint64
- Error with a zero k value

We've seen a bug in the wild cockroachdb#33225 where a sortTopKProcessor could have
possibly been created with an invalid k value. This commit ensures that this
state does not crash a server by being overly cautious about the
sorter's k parameter.

Release note: None

Co-authored-by: Alfonso Subiotto Marqués <alfonso@cockroachlabs.com>

provisional_201902192209_v19.1.0-beta.20190225

Toggle provisional_201902192209_v19.1.0-beta.20190225's commit message
Merge cockroachdb#34755

34755: distsqlrun: sanity check sortTopKProcessor's parameters r=jordanlewis a=asubiotto

- Change k to a uint64
- Error with a zero k value

We've seen a bug in the wild cockroachdb#33225 where a sortTopKProcessor could have
possibly been created with an invalid k value. This commit ensures that this
state does not crash a server by being overly cautious about the
sorter's k parameter.

Release note: None

Co-authored-by: Alfonso Subiotto Marqués <alfonso@cockroachlabs.com>

v2.1.5

Toggle v2.1.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request cockroachdb#32214 from justinj/backport2.1-31751

backport-2.1: opt,sql: fix correctness with JSON normalization
0