Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

roachtest: transfer-leases/quit failed [slow upreplication] #58492

Closed
cockroach-teamcity opened this issue Jan 6, 2021 · 29 comments
Closed

roachtest: transfer-leases/quit failed [slow upreplication] #58492

cockroach-teamcity opened this issue Jan 6, 2021 · 29 comments
Assignees
Labels
branch-master Failures and bugs on the master branch. C-test-failure Broken test (automatically or manually discovered). O-roachtest O-robot Originated from a bot. T-kv KV Team

Comments

@cockroach-teamcity
Copy link
Member

(roachtest).transfer-leases/quit failed on master@cee475331ca3629b503cd2e7c7919b72c98a5ca5:

The test failed on branch=master, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/transfer-leases/quit/run_1
	quit.go:63,quit.go:303,soon.go:47,retry.go:197,soon.go:53,quit.go:216,quit.go:86,quit.go:142,context.go:140,quit.go:141,quit.go:86,quit.go:46,quit.go:340,test_runner.go:760: (1) ranges with no lease outside of node 3: []string{"21"}

	cluster.go:1637,context.go:140,cluster.go:1626,test_runner.go:841: dead node detection: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/bin/roachprod monitor teamcity-2561359-1609916496-73-n3cpu4 --oneshot --ignore-empty-nodes: exit status 1 2: 9751
		1: 13528
		3: dead
		Error: UNCLASSIFIED_PROBLEM: 3: dead
		(1) UNCLASSIFIED_PROBLEM
		Wraps: (2) attached stack trace
		  -- stack trace:
		  | main.glob..func14
		  | 	/home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:1147
		  | main.wrap.func1
		  | 	/home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:271
		  | github.com/spf13/cobra.(*Command).execute
		  | 	/home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:830
		  | github.com/spf13/cobra.(*Command).ExecuteC
		  | 	/home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:914
		  | github.com/spf13/cobra.(*Command).Execute
		  | 	/home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:864
		  | main.main
		  | 	/home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:1850
		  | runtime.main
		  | 	/usr/local/go/src/runtime/proc.go:204
		  | runtime.goexit
		  | 	/usr/local/go/src/runtime/asm_amd64.s:1374
		Wraps: (3) 3: dead
		Error types: (1) errors.Unclassified (2) *withstack.withStack (3) *errutil.leafError

More

Artifacts: /transfer-leases/quit

See this test on roachdash
powered by pkg/cmd/internal/issues

@cockroach-teamcity cockroach-teamcity added branch-master Failures and bugs on the master branch. C-test-failure Broken test (automatically or manually discovered). O-roachtest O-robot Originated from a bot. release-blocker Indicates a release-blocker. Use with branch-release-2x.x label to denote which branch is blocked. labels Jan 6, 2021
@nvanbenschoten
Copy link
Member

@knz do you mind taking a look at this? It's unclear why node 3 was detected as dead, as I don't see any crashes in the logs.

@knz
Copy link
Contributor

knz commented Jan 6, 2021

I recently found that the cluster monitor logic in roachtest may have a flaw. Maybe this is a smoking gun of that. Will investigate.

@asubiotto
Copy link
Contributor

@knz want to double check whether this issue should qualify as an alpha release blocker as well

@knz
Copy link
Contributor

knz commented Jan 21, 2021

definitely not release blocker IMHO -- lease transfers that don't fully succeed during node restarts yield merely temporary inconvenience, and the issue is not new anyway

@knz knz removed the release-blocker Indicates a release-blocker. Use with branch-release-2x.x label to denote which branch is blocked. label Jan 21, 2021
@knz
Copy link
Contributor

knz commented Jan 25, 2021

@tbg I investigated this failure. It is expecting all leases to move out of some node (here, n3) and asserts this by checking, for every replicas on the node, that the lease is elsewhere.

In this particular case, it appears that the lease for affected range r21 was not moved out of the draining node ... because the lease was invalid (cue in discussion on #58613). Which is expected.

Now I'd like to tweak the test so that it excludes ranges with invalid leases. How can I inspect whether leases are invalid using SQL?

@tbg
Copy link
Member

tbg commented Feb 4, 2021

Sorry it took me so long to get back to you here. To the best of my knowledge, this is not possible. Do you feel that this test needs to remain a roachtest? As a roachtest, I would expect it to set up a workload and assert that the workload is not negatively impacted by the node draining. (Which, btw, is also a pain to set up in a roachtest, as you know, and we already have that roachtest: kv/gracefuldraining). Moreover, is this test adding enough value to be kept around, if we don't feel that it should remain a roachtest, assuming we get #59371 in?

@knz
Copy link
Contributor

knz commented Feb 4, 2021

I agree that the structure of test is redundant with the code in #59371

However that other PR does not yet assert that all the leases have been transferred by a drain. We probably want to test that still. What would be a good non-SQL way to inspect whether all non-invalid leases have been transferred, and only invalid leases remain?

@tbg
Copy link
Member

tbg commented Feb 4, 2021

That would be store.VisitReplicas which lets you look at all replicas, then you can grab the .Lease() and check it against node liveness.

@cockroach-teamcity
Copy link
Member Author

(roachtest).transfer-leases/quit failed on master@9fa4b125bfb07552b43ba4fd52c9301afd7a937b:

The test failed on branch=master, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/transfer-leases/quit/run_1
	quit.go:63,quit.go:303,soon.go:47,retry.go:197,soon.go:53,quit.go:216,quit.go:86,quit.go:142,context.go:140,quit.go:141,quit.go:86,quit.go:46,quit.go:340,test_runner.go:768: (1) ranges with no lease outside of node 3: []string{"26"}

	cluster.go:1667,context.go:140,cluster.go:1656,test_runner.go:849: dead node detection: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/bin/roachprod monitor teamcity-2807998-1616565826-23-n3cpu4 --oneshot --ignore-empty-nodes: exit status 1 2: 24573
		1: 1266
		3: dead
		Error: UNCLASSIFIED_PROBLEM: 3: dead
		(1) UNCLASSIFIED_PROBLEM
		Wraps: (2) attached stack trace
		  -- stack trace:
		  | main.glob..func14
		  | 	/home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:1147
		  | main.wrap.func1
		  | 	/home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:271
		  | github.com/spf13/cobra.(*Command).execute
		  | 	/home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:830
		  | github.com/spf13/cobra.(*Command).ExecuteC
		  | 	/home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:914
		  | github.com/spf13/cobra.(*Command).Execute
		  | 	/home/agent/work/.go/src/github.com/cockroachdb/cockroach/vendor/github.com/spf13/cobra/command.go:864
		  | main.main
		  | 	/home/agent/work/.go/src/github.com/cockroachdb/cockroach/pkg/cmd/roachprod/main.go:1852
		  | runtime.main
		  | 	/usr/local/go/src/runtime/proc.go:204
		  | runtime.goexit
		  | 	/usr/local/go/src/runtime/asm_amd64.s:1374
		Wraps: (3) 3: dead
		Error types: (1) errors.Unclassified (2) *withstack.withStack (3) *errutil.leafError

More

Artifacts: /transfer-leases/quit

See this test on roachdash
powered by pkg/cmd/internal/issues

@tbg tbg unassigned knz May 10, 2021
@jlinder jlinder added the T-kv KV Team label Jun 16, 2021
@cockroach-teamcity
Copy link
Member Author

roachtest.transfer-leases/quit failed with artifacts on master @ 8009ac6bb63f455a18bb1139d505bdd9930816b7:

The test failed on branch=master, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/transfer-leases/quit/run_1
	quit.go:67,quit.go:139,quit.go:73,quit.go:50,quit.go:347,test_runner.go:770: cluster did not up-replicate: some ranges not up-replicated yet
Reproduce

See the corresponding section in the [roachtest README](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/roachtest)

/cc @cockroachdb/kv-triage

This test on roachdash | Improve this report!

@tbg
Copy link
Member

tbg commented Jul 28, 2021 via email

@tbg tbg changed the title roachtest: transfer-leases/quit failed roachtest: transfer-leases/quit failed [slow upreplication] Jul 29, 2021
@cockroach-teamcity
Copy link
Member Author

roachtest.transfer-leases/quit failed with artifacts on master @ f19914b8c6281e463645580e1411774c3b0c20c9:

The test failed on branch=master, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/transfer-leases/quit/run_1
	quit.go:67,quit.go:139,quit.go:73,quit.go:50,quit.go:347,test_runner.go:770: cluster did not up-replicate: some ranges not up-replicated yet
Reproduce

See the corresponding section in the [roachtest README](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/roachtest)

/cc @cockroachdb/kv-triage

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.transfer-leases/quit failed with artifacts on master @ fe1fb73ae989142193643db30dd4b1b6dd6fe7dd:

The test failed on branch=master, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/transfer-leases/quit/run_1
	quit.go:67,quit.go:139,quit.go:73,quit.go:50,quit.go:347,test_runner.go:777: cluster did not up-replicate: some ranges not up-replicated yet
Reproduce

See: roachtest README

/cc @cockroachdb/kv-triage

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.transfer-leases/quit failed with artifacts on master @ 701b177d8f4b81d8654dfb4090a2cd3cf82e63a7:

The test failed on branch=master, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/transfer-leases/quit/run_1
	quit.go:67,quit.go:139,quit.go:73,quit.go:50,quit.go:347,test_runner.go:777: cluster did not up-replicate: some ranges not up-replicated yet
Reproduce

See: roachtest README

/cc @cockroachdb/kv-triage

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.transfer-leases/quit failed with artifacts on master @ 31af9e32a55a166166e9ba9c5327b7cd847ae236:

The test failed on branch=master, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/transfer-leases/quit/run_1
	quit.go:67,quit.go:139,quit.go:73,quit.go:50,quit.go:347,test_runner.go:777: cluster did not up-replicate: some ranges not up-replicated yet
Reproduce

See: roachtest README

/cc @cockroachdb/kv-triage

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.transfer-leases/quit failed with artifacts on master @ c995342ead51e08f8ed1155de4218d30a00d86d2:

The test failed on branch=master, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/transfer-leases/quit/run_1
	quit.go:67,quit.go:139,quit.go:73,quit.go:50,quit.go:347,test_runner.go:777: cluster did not up-replicate: some ranges not up-replicated yet
Reproduce

See: roachtest README

/cc @cockroachdb/kv-triage

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.transfer-leases/quit failed with artifacts on master @ 1c46e1cd4e5be986bf9d13799bb7e13ddc896ed2:

The test failed on branch=master, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/transfer-leases/quit/run_1
	quit.go:67,quit.go:139,quit.go:73,quit.go:50,quit.go:347,test_runner.go:777: cluster did not up-replicate: some ranges not up-replicated yet
Reproduce

See: roachtest README

See: CI job to stress roachtests

For the CI stress job, click the ellipsis (...) next to the Run button and fill in: * Changes / Build branch: master * Parameters / `env.TESTS`: `^transfer-leases/quit$` * Parameters / `env.COUNT`: <number of runs>

/cc @cockroachdb/kv-triage

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.transfer-leases/quit failed with artifacts on master @ eef03a46f2e43ff70485dadf7d9ad445db05cab4:

The test failed on branch=master, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/transfer-leases/quit/run_1
	quit.go:67,quit.go:139,quit.go:73,quit.go:50,quit.go:347,test_runner.go:777: cluster did not up-replicate: some ranges not up-replicated yet
Reproduce

See: roachtest README

See: CI job to stress roachtests

For the CI stress job, click the ellipsis (...) next to the Run button and fill in: * Changes / Build branch: master * Parameters / `env.TESTS`: `^transfer-leases/quit$` * Parameters / `env.COUNT`: <number of runs>

/cc @cockroachdb/kv-triage

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.transfer-leases/quit failed with artifacts on master @ 6b8d59327add74cf1342345fb3eaffc3a3e765d2:

The test failed on branch=master, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/transfer-leases/quit/run_1
	quit.go:67,quit.go:139,quit.go:73,quit.go:50,quit.go:347,test_runner.go:777: cluster did not up-replicate: some ranges not up-replicated yet
Reproduce

See: roachtest README

See: CI job to stress roachtests

For the CI stress job, click the ellipsis (...) next to the Run button and fill in: * Changes / Build branch: master * Parameters / `env.TESTS`: `^transfer-leases/quit$` * Parameters / `env.COUNT`: <number of runs>

/cc @cockroachdb/kv-triage

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.transfer-leases/quit failed with artifacts on master @ 50ef2fc205baa65c5a740c2d614fe1de279367e9:

The test failed on branch=master, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/transfer-leases/quit/run_1
	quit.go:67,quit.go:139,quit.go:73,quit.go:50,quit.go:347,test_runner.go:777: cluster did not up-replicate: some ranges not up-replicated yet
Reproduce

See: roachtest README

See: CI job to stress roachtests

For the CI stress job, click the ellipsis (...) next to the Run button and fill in: * Changes / Build branch: master * Parameters / `env.TESTS`: `^transfer-leases/quit$` * Parameters / `env.COUNT`: <number of runs>

/cc @cockroachdb/kv-triage

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.transfer-leases/quit failed with artifacts on master @ cab185ff71f0924953d987fe6ffd14efdd32a3a0:

The test failed on branch=master, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/transfer-leases/quit/run_1
	quit.go:67,quit.go:139,quit.go:73,quit.go:50,quit.go:347,test_runner.go:777: cluster did not up-replicate: some ranges not up-replicated yet
Reproduce

See: roachtest README

See: CI job to stress roachtests

For the CI stress job, click the ellipsis (...) next to the Run button and fill in: * Changes / Build branch: master * Parameters / `env.TESTS`: `^transfer-leases/quit$` * Parameters / `env.COUNT`: <number of runs>

/cc @cockroachdb/kv-triage

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.transfer-leases/quit failed with artifacts on master @ 62ec88c61edcaa023a579199cc5b43d3ee951cef:

The test failed on branch=master, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/transfer-leases/quit/run_1
	quit.go:67,quit.go:139,quit.go:73,quit.go:50,quit.go:347,test_runner.go:777: cluster did not up-replicate: some ranges not up-replicated yet
Reproduce

See: roachtest README

See: CI job to stress roachtests

For the CI stress job, click the ellipsis (...) next to the Run button and fill in: * Changes / Build branch: master * Parameters / `env.TESTS`: `^transfer-leases/quit$` * Parameters / `env.COUNT`: <number of runs>

/cc @cockroachdb/kv-triage

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.transfer-leases/quit failed with artifacts on master @ 847514dab6354d4cc4ccf7b2857487b32119fb37:

The test failed on branch=master, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/transfer-leases/quit/run_1
	quit.go:67,quit.go:139,quit.go:73,quit.go:50,quit.go:347,test_runner.go:777: cluster did not up-replicate: some ranges not up-replicated yet
Reproduce

See: roachtest README

See: CI job to stress roachtests

For the CI stress job, click the ellipsis (...) next to the Run button and fill in: * Changes / Build branch: master * Parameters / `env.TESTS`: `^transfer-leases/quit$` * Parameters / `env.COUNT`: <number of runs>

/cc @cockroachdb/kv-triage

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.transfer-leases/quit failed with artifacts on master @ 3928f1963833fbf51ae47bd2a42ae6a200ebbb14:

The test failed on branch=master, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/transfer-leases/quit/run_1
	quit.go:67,quit.go:139,quit.go:73,quit.go:50,quit.go:347,test_runner.go:777: cluster did not up-replicate: some ranges not up-replicated yet
Reproduce

See: roachtest README

See: CI job to stress roachtests

For the CI stress job, click the ellipsis (...) next to the Run button and fill in: * Changes / Build branch: master * Parameters / `env.TESTS`: `^transfer-leases/quit$` * Parameters / `env.COUNT`: <number of runs>

/cc @cockroachdb/kv-triage

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.transfer-leases/quit failed with artifacts on master @ 0880e83e30ee5eb9aab7bb2297324e098d028225:

The test failed on branch=master, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/transfer-leases/quit/run_1
	quit.go:67,quit.go:139,quit.go:73,quit.go:50,quit.go:347,test_runner.go:777: cluster did not up-replicate: some ranges not up-replicated yet
Reproduce

See: roachtest README

See: CI job to stress roachtests

For the CI stress job, click the ellipsis (...) next to the Run button and fill in: * Changes / Build branch: master * Parameters / `env.TESTS`: `^transfer-leases/quit$` * Parameters / `env.COUNT`: <number of runs>

/cc @cockroachdb/kv-triage

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.transfer-leases/quit failed with artifacts on master @ ee3efd6b1e24a3e1676778f5028fa0a35266f683:

The test failed on branch=master, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/transfer-leases/quit/run_1
	quit.go:67,quit.go:139,quit.go:73,quit.go:50,quit.go:347,test_runner.go:777: cluster did not up-replicate: some ranges not up-replicated yet
Reproduce

See: roachtest README

See: CI job to stress roachtests

For the CI stress job, click the ellipsis (...) next to the Run button and fill in: * Changes / Build branch: master * Parameters / `env.TESTS`: `^transfer-leases/quit$` * Parameters / `env.COUNT`: <number of runs>

/cc @cockroachdb/kv-triage

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.transfer-leases/quit failed with artifacts on master @ 04a41e7915f4a89dcc1d0dbd92466c6adf79ec9f:

The test failed on branch=master, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/transfer-leases/quit/run_1
	quit.go:67,quit.go:139,quit.go:73,quit.go:50,quit.go:347,test_runner.go:777: cluster did not up-replicate: some ranges not up-replicated yet
Reproduce

See: roachtest README

See: CI job to stress roachtests

For the CI stress job, click the ellipsis (...) next to the Run button and fill in: * Changes / Build branch: master * Parameters / `env.TESTS`: `^transfer-leases/quit$` * Parameters / `env.COUNT`: <number of runs>

/cc @cockroachdb/kv-triage

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.transfer-leases/quit failed with artifacts on master @ dd82053908203cf6d77c36c06a8280831bb93d57:

The test failed on branch=master, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/transfer-leases/quit/run_1
	quit.go:67,quit.go:139,quit.go:73,quit.go:50,quit.go:347,test_runner.go:777: cluster did not up-replicate: some ranges not up-replicated yet
Reproduce

See: roachtest README

See: CI job to stress roachtests

For the CI stress job, click the ellipsis (...) next to the Run button and fill in: * Changes / Build branch: master * Parameters / `env.TESTS`: `^transfer-leases/quit$` * Parameters / `env.COUNT`: <number of runs>

/cc @cockroachdb/kv-triage

This test on roachdash | Improve this report!

@erikgrinaker
Copy link
Contributor

I believe this has been fixed now: #68169

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
branch-master Failures and bugs on the master branch. C-test-failure Broken test (automatically or manually discovered). O-roachtest O-robot Originated from a bot. T-kv KV Team
Projects
None yet
Development

No branches or pull requests

8 participants