Huan Xiong

Results 35 issues of Huan Xiong

While I installed swiftly, I saw output like the following: ``` $ curl -L https://swiftlang.github.io/swiftly/swiftly-install.sh | bash --[SNIPPED]-- Importing Swift's PGP keys... gpg: key D441C977412B37AD: public key "Swift Automatic Signing...

Take `Dockerfile-ubuntu_cb_ycsb` as an example, it hardcodes `jammy`. So the workload only works for ubuntu 22.04. ``` # mongo-install-pm RUN wget -nc https://www.mongodb.org/static/pgp/server-6.0.asc; cat server-6.0.asc | gpg --dearmor | sudo...

All workload start scripts use the following pattern to get benchmark command's return code: ``` syslog_netcat "Command output will be shown" $command_line 2>&1 | while read line ; do syslog_netcat...

I observed the issue when trying to run Hadoop workload. Take its start script as an example: ``` cb_run_hadoop.sh -> execute_load_generator() -> eval $CMDLINE 2>&1 >> $OUTPUT_FILE -> ~/cb_report_app_metrics.py ```...

While CBTOOL's own code have been modified to use Python 3, some workloads still use Python 2. One such example is cassandra_ycsb. Ycsb's latest version in [upstream](https://github.com/brianfrankcooper/YCSB/) is 0.17.0, which...