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: disk-stalled/log=false,data=true failed #78131

Closed
cockroach-teamcity opened this issue Mar 19, 2022 · 4 comments
Closed

roachtest: disk-stalled/log=false,data=true failed #78131

cockroach-teamcity opened this issue Mar 19, 2022 · 4 comments
Labels
branch-release-22.1 Used to mark GA and release blockers, technical advisories, and bugs for 22.1 C-test-failure Broken test (automatically or manually discovered). O-roachtest O-robot Originated from a bot. T-storage Storage Team

Comments

@cockroach-teamcity
Copy link
Member

cockroach-teamcity commented Mar 19, 2022

roachtest.disk-stalled/log=false,data=true failed with artifacts on release-22.1 @ f5b42a4e3bbdadb25aee89a41871239a624d538d:

		Wraps: (3) COMMAND_PROBLEM
		Wraps: (4) Node 1. Command with error:
		  | ``````
		  | set -exuo pipefail;
		  |   thrift_dir="/opt/thrift"
		  |
		  |   if [ ! -f "/usr/bin/thrift" ]; then
		  | 	sudo apt-get update;
		  | 	sudo apt-get install -qy automake bison flex g++ git libboost-all-dev libevent-dev libssl-dev libtool make pkg-config python-setuptools libglib2.0-dev python2 python-six
		  |
		  |     sudo mkdir -p "${thrift_dir}"
		  |     sudo chmod 777 "${thrift_dir}"
		  |     cd "${thrift_dir}"
		  |     curl "https://downloads.apache.org/thrift/0.13.0/thrift-0.13.0.tar.gz" | sudo tar xvz --strip-components 1
		  |     sudo ./configure --prefix=/usr
		  |     sudo make -j$(nproc)
		  |     sudo make install
		  |     (cd "${thrift_dir}/lib/py" && sudo python2 setup.py install)
		  |   fi
		  |
		  |   charybde_dir="/opt/charybdefs"
		  |   nemesis_path="${charybde_dir}/charybdefs-nemesis"
		  |
		  |   if [ ! -f "${nemesis_path}" ]; then
		  |     sudo apt-get install -qy build-essential cmake libfuse-dev fuse
		  |     sudo rm -rf "${charybde_dir}" "${nemesis_path}" /usr/local/bin/charybdefs{,-nemesis}
		  |     sudo mkdir -p "${charybde_dir}"
		  |     sudo chmod 777 "${charybde_dir}"
		  |     # TODO(bilal): Change URL back to scylladb/charybdefs once https://github.com/scylladb/charybdefs/pull/28 is merged.
		  |     git clone --depth 1 "https://github.com/itsbilal/charybdefs.git" "${charybde_dir}"
		  |
		  |     cd "${charybde_dir}"
		  |     thrift -r --gen cpp server.thrift
		  |     cmake CMakeLists.txt
		  |     make -j$(nproc)
		  |
		  |     sudo modprobe fuse
		  |     sudo ln -s "${charybde_dir}/charybdefs" /usr/local/bin/charybdefs
		  |     cat > "${nemesis_path}" <<EOF
		  | #!/bin/bash
		  | cd /opt/charybdefs/cookbook
		  | ./recipes "\$@"
		  | EOF
		  |     chmod +x "${nemesis_path}"
		  | 	sudo ln -s "${nemesis_path}" /usr/local/bin/charybdefs-nemesis
		  | fi
		  |
		  | ``````
		Wraps: (5) exit status 2
		Error types: (1) *withstack.withStack (2) *errutil.withPrefix (3) errors.Cmd (4) *hintdetail.withDetail (5) *exec.ExitError
Help

See: roachtest README

See: How To Investigate (internal)

Same failure on other branches

/cc @cockroachdb/storage

This test on roachdash | Improve this report!

Jira issue: CRDB-13980

@cockroach-teamcity cockroach-teamcity added branch-release-22.1 Used to mark GA and release blockers, technical advisories, and bugs for 22.1 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 Mar 19, 2022
@blathers-crl blathers-crl bot added the T-storage Storage Team label Mar 19, 2022
@cockroach-teamcity
Copy link
Member Author

roachtest.disk-stalled/log=true,data=false failed with artifacts on release-22.1 @ f5b42a4e3bbdadb25aee89a41871239a624d538d:

		Wraps: (3) COMMAND_PROBLEM
		Wraps: (4) Node 1. Command with error:
		  | ``````
		  | set -exuo pipefail;
		  |   thrift_dir="/opt/thrift"
		  |
		  |   if [ ! -f "/usr/bin/thrift" ]; then
		  | 	sudo apt-get update;
		  | 	sudo apt-get install -qy automake bison flex g++ git libboost-all-dev libevent-dev libssl-dev libtool make pkg-config python-setuptools libglib2.0-dev python2 python-six
		  |
		  |     sudo mkdir -p "${thrift_dir}"
		  |     sudo chmod 777 "${thrift_dir}"
		  |     cd "${thrift_dir}"
		  |     curl "https://downloads.apache.org/thrift/0.13.0/thrift-0.13.0.tar.gz" | sudo tar xvz --strip-components 1
		  |     sudo ./configure --prefix=/usr
		  |     sudo make -j$(nproc)
		  |     sudo make install
		  |     (cd "${thrift_dir}/lib/py" && sudo python2 setup.py install)
		  |   fi
		  |
		  |   charybde_dir="/opt/charybdefs"
		  |   nemesis_path="${charybde_dir}/charybdefs-nemesis"
		  |
		  |   if [ ! -f "${nemesis_path}" ]; then
		  |     sudo apt-get install -qy build-essential cmake libfuse-dev fuse
		  |     sudo rm -rf "${charybde_dir}" "${nemesis_path}" /usr/local/bin/charybdefs{,-nemesis}
		  |     sudo mkdir -p "${charybde_dir}"
		  |     sudo chmod 777 "${charybde_dir}"
		  |     # TODO(bilal): Change URL back to scylladb/charybdefs once https://github.com/scylladb/charybdefs/pull/28 is merged.
		  |     git clone --depth 1 "https://github.com/itsbilal/charybdefs.git" "${charybde_dir}"
		  |
		  |     cd "${charybde_dir}"
		  |     thrift -r --gen cpp server.thrift
		  |     cmake CMakeLists.txt
		  |     make -j$(nproc)
		  |
		  |     sudo modprobe fuse
		  |     sudo ln -s "${charybde_dir}/charybdefs" /usr/local/bin/charybdefs
		  |     cat > "${nemesis_path}" <<EOF
		  | #!/bin/bash
		  | cd /opt/charybdefs/cookbook
		  | ./recipes "\$@"
		  | EOF
		  |     chmod +x "${nemesis_path}"
		  | 	sudo ln -s "${nemesis_path}" /usr/local/bin/charybdefs-nemesis
		  | fi
		  |
		  | ``````
		Wraps: (5) exit status 2
		Error types: (1) *withstack.withStack (2) *errutil.withPrefix (3) errors.Cmd (4) *hintdetail.withDetail (5) *exec.ExitError
Help

See: roachtest README

See: How To Investigate (internal)

Same failure on other branches

This test on roachdash | Improve this report!

@jbowens jbowens removed the release-blocker Indicates a release-blocker. Use with branch-release-2x.x label to denote which branch is blocked. label Mar 19, 2022
@cockroach-teamcity
Copy link
Member Author

roachtest.disk-stalled/log=false,data=true failed with artifacts on release-22.1 @ a25a145510d5d0bc7570db327a21cd3fcde21980:

		Wraps: (3) COMMAND_PROBLEM
		Wraps: (4) Node 1. Command with error:
		  | ``````
		  | set -exuo pipefail;
		  |   thrift_dir="/opt/thrift"
		  |
		  |   if [ ! -f "/usr/bin/thrift" ]; then
		  | 	sudo apt-get update;
		  | 	sudo apt-get install -qy automake bison flex g++ git libboost-all-dev libevent-dev libssl-dev libtool make pkg-config python-setuptools libglib2.0-dev python2 python-six
		  |
		  |     sudo mkdir -p "${thrift_dir}"
		  |     sudo chmod 777 "${thrift_dir}"
		  |     cd "${thrift_dir}"
		  |     curl "https://downloads.apache.org/thrift/0.13.0/thrift-0.13.0.tar.gz" | sudo tar xvz --strip-components 1
		  |     sudo ./configure --prefix=/usr
		  |     sudo make -j$(nproc)
		  |     sudo make install
		  |     (cd "${thrift_dir}/lib/py" && sudo python2 setup.py install)
		  |   fi
		  |
		  |   charybde_dir="/opt/charybdefs"
		  |   nemesis_path="${charybde_dir}/charybdefs-nemesis"
		  |
		  |   if [ ! -f "${nemesis_path}" ]; then
		  |     sudo apt-get install -qy build-essential cmake libfuse-dev fuse
		  |     sudo rm -rf "${charybde_dir}" "${nemesis_path}" /usr/local/bin/charybdefs{,-nemesis}
		  |     sudo mkdir -p "${charybde_dir}"
		  |     sudo chmod 777 "${charybde_dir}"
		  |     # TODO(bilal): Change URL back to scylladb/charybdefs once https://github.com/scylladb/charybdefs/pull/28 is merged.
		  |     git clone --depth 1 "https://github.com/itsbilal/charybdefs.git" "${charybde_dir}"
		  |
		  |     cd "${charybde_dir}"
		  |     thrift -r --gen cpp server.thrift
		  |     cmake CMakeLists.txt
		  |     make -j$(nproc)
		  |
		  |     sudo modprobe fuse
		  |     sudo ln -s "${charybde_dir}/charybdefs" /usr/local/bin/charybdefs
		  |     cat > "${nemesis_path}" <<EOF
		  | #!/bin/bash
		  | cd /opt/charybdefs/cookbook
		  | ./recipes "\$@"
		  | EOF
		  |     chmod +x "${nemesis_path}"
		  | 	sudo ln -s "${nemesis_path}" /usr/local/bin/charybdefs-nemesis
		  | fi
		  |
		  | ``````
		Wraps: (5) exit status 2
		Error types: (1) *withstack.withStack (2) *errutil.withPrefix (3) errors.Cmd (4) *hintdetail.withDetail (5) *exec.ExitError
Help

See: roachtest README

See: How To Investigate (internal)

Same failure on other branches

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.disk-stalled/log=true,data=false failed with artifacts on release-22.1 @ a25a145510d5d0bc7570db327a21cd3fcde21980:

		Wraps: (3) COMMAND_PROBLEM
		Wraps: (4) Node 1. Command with error:
		  | ``````
		  | set -exuo pipefail;
		  |   thrift_dir="/opt/thrift"
		  |
		  |   if [ ! -f "/usr/bin/thrift" ]; then
		  | 	sudo apt-get update;
		  | 	sudo apt-get install -qy automake bison flex g++ git libboost-all-dev libevent-dev libssl-dev libtool make pkg-config python-setuptools libglib2.0-dev python2 python-six
		  |
		  |     sudo mkdir -p "${thrift_dir}"
		  |     sudo chmod 777 "${thrift_dir}"
		  |     cd "${thrift_dir}"
		  |     curl "https://downloads.apache.org/thrift/0.13.0/thrift-0.13.0.tar.gz" | sudo tar xvz --strip-components 1
		  |     sudo ./configure --prefix=/usr
		  |     sudo make -j$(nproc)
		  |     sudo make install
		  |     (cd "${thrift_dir}/lib/py" && sudo python2 setup.py install)
		  |   fi
		  |
		  |   charybde_dir="/opt/charybdefs"
		  |   nemesis_path="${charybde_dir}/charybdefs-nemesis"
		  |
		  |   if [ ! -f "${nemesis_path}" ]; then
		  |     sudo apt-get install -qy build-essential cmake libfuse-dev fuse
		  |     sudo rm -rf "${charybde_dir}" "${nemesis_path}" /usr/local/bin/charybdefs{,-nemesis}
		  |     sudo mkdir -p "${charybde_dir}"
		  |     sudo chmod 777 "${charybde_dir}"
		  |     # TODO(bilal): Change URL back to scylladb/charybdefs once https://github.com/scylladb/charybdefs/pull/28 is merged.
		  |     git clone --depth 1 "https://github.com/itsbilal/charybdefs.git" "${charybde_dir}"
		  |
		  |     cd "${charybde_dir}"
		  |     thrift -r --gen cpp server.thrift
		  |     cmake CMakeLists.txt
		  |     make -j$(nproc)
		  |
		  |     sudo modprobe fuse
		  |     sudo ln -s "${charybde_dir}/charybdefs" /usr/local/bin/charybdefs
		  |     cat > "${nemesis_path}" <<EOF
		  | #!/bin/bash
		  | cd /opt/charybdefs/cookbook
		  | ./recipes "\$@"
		  | EOF
		  |     chmod +x "${nemesis_path}"
		  | 	sudo ln -s "${nemesis_path}" /usr/local/bin/charybdefs-nemesis
		  | fi
		  |
		  | ``````
		Wraps: (5) exit status 2
		Error types: (1) *withstack.withStack (2) *errutil.withPrefix (3) errors.Cmd (4) *hintdetail.withDetail (5) *exec.ExitError
Help

See: roachtest README

See: How To Investigate (internal)

Same failure on other branches

This test on roachdash | Improve this report!

@nicktrav
Copy link
Collaborator

Fixed by #78043.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
branch-release-22.1 Used to mark GA and release blockers, technical advisories, and bugs for 22.1 C-test-failure Broken test (automatically or manually discovered). O-roachtest O-robot Originated from a bot. T-storage Storage Team
Projects
None yet
Development

No branches or pull requests

3 participants