This is the first bugfix release of Ceph Octopus, we recommend all Octopus users upgrade.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Standalone version of a trashing client inspired by mutliclient.cc in cephfs tests | |
#include <atomic> | |
#include <cstring> | |
#include <charconv> | |
#include <chrono> | |
#include <iostream> | |
#include <fstream> | |
#include <thread> | |
#include <vector> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <functional> | |
#include <string_view> | |
#include <mutex> | |
#include <map> | |
#include <thread> | |
#include <chrono> | |
#include <future> | |
template <typename ...Args> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
std::atomic<int> sum {0}; | |
struct Point {int x, int y}; | |
struct D3 {int x, int y, int z}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
022-02-05T20:01:21+01:00 | |
Running ./src/randgen | |
Run on (8 X 24.1218 MHz CPU s) | |
CPU Caches: | |
L1 Data 64 KiB (x8) | |
L1 Instruction 128 KiB (x8) | |
L2 Unified 4096 KiB (x2) | |
Load Average: 1.65, 1.91, 2.07 | |
---------------------------------------------------------------------------- | |
Benchmark Time CPU Iterations |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# do a `pip install githubpy` before running the script | |
import os | |
import github | |
import argparse | |
if __name__ == "__main__": | |
parser = argparse.ArgumentParser() | |
parser.add_argument("target_sha", metavar="target_sha", | |
help="sha1 of the branch to update to") |
- ceph-volume zap always skips block.db, leaves them around (issue#40664, pr#30305, Alfredo Deza)
- ceph-volume lvm.zap fix cleanup for db partitions (issue#40664, pr#30302, Dominik Csapak)
- ceph-volume tests set the noninteractive flag for Debian (pr#29901, Alfredo Deza)
- ceph-volume: do not fail when trying to remove crypt mapper (pr#30556, Guillaume Abrioux)
- ceph-volume: fix stderr failure to decode/encode when redirected (pr#30299, Alfredo Deza)
- ceph-volume: pre-install python-apt and its variants before test runs (pr#30296, Alfredo Deza)
- ceph-volume: use the OSD identifier when reporting success (pr#29771
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
akey1=access1 | |
skey1=secret1 | |
radosgw-admin user create --uid=s3test1 --display-name='tester1' --access-key=$akey1 --secret=$skey1 [email protected] | |
akey2=access2 | |
skey2=secret2 | |
radosgw-admin user create --uid=s3test2 --display-name='tester2' --access-key=$akey2 --secret=$skey2 [email protected] | |
cat <<EOF > s3.conf | |
[DEFAULT] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cat release-x.rst | sed "s/\`\([a-z]\+\#[0-9]\+\)\s\(<[a-z0-9://.]\+>\`\_\)/\1/g" > release-x.txt |
NewerOlder