View metro-rocketchat
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
#!/bin/bash | |
SITE1=cluster1 | |
SITE2=cluster2 | |
TOKEN='irw4CeuS7CgbSLMk6/k2YDJkAXmAKdndCYMZ4XXTYtwrTXgX6oghTbS4su7WMq4WAi' | |
HOOK1=http://rocket-chat-rocket-chat.apps.bos1.chris.ocs.ninja/hooks/${TOKEN} | |
HOOK2=http://rocket-chat-rocket-chat.apps.bos2.chris.ocs.ninja/hooks/${TOKEN} | |
TIME=10 | |
export NUMBER1=0 | |
export NUMBER2=0 | |
while true ; do |
View ceph_large_omap_objets_warning
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
#Check bucket limits: | |
$ radosgw-admin bucket limit check | jq '.[].buckets[].fill_status' | uniq | |
$ radosgw-admin bucket limit check | jq '.[].buckets[].objects_per_shard' | sort -n | uniq | |
#Default WARN Thresholds: | |
"osd_deep_scrub_large_omap_object_key_threshold": "2000000", | |
"osd_deep_scrub_large_omap_object_value_sum_threshold": "1073741824" #1G | |
#Warnings you get in the cluster log: |
View Ceph Bluestore Compression Perf Stats
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
These are the compression perf stats for the tests run with: 84 rbd volumes, 32 IO-Depth, 100% Random Write. | |
FIO config: | |
- LibRBD engine | |
- refill_buffers | |
- buffer_compress_percentage=80 | |
- buffer_pattern=0xdeadfac | |
Ceph config: | |
- bluestore_compression_algorithm: snappy |
View server.conf
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
# MariaDB Server configuration | |
# | |
# Please do not change this file directly since it is managed by Ansible and will be overwritten | |
[mariadb] | |
socket = /var/lib/mysql/mysql.sock | |
port = 3306 | |
default_storage_engine = InnoDB |
View tuned.conf
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 /usr/lib/tuned/ceph-tuned/tuned.conf | |
[main] | |
summary=ceph_perf | |
[cpu] | |
governor=performance | |
energy_perf_bias=performance | |
min_perf_pct=100 | |
force_latency=1 |
View all.yml
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
### PLEASE TAKE IN ACCOUNT THIS FILE IS CONFIGURED FOR BECHNMARK TESTING OF CEPH NOT PRODUCTION USE | |
# cat ceph-ansible-3.2/group_vars/all.yml | |
--- | |
dummy: | |
#ceph_release_num: | |
# dumpling: 0.67 | |
# emperor: 0.72 | |
# firefly: 0.80 |
View ceph.conf
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
### PLEASE TAKE IN ACCOUNT THIS FILE IS CONFIGURED FOR BECHNMARK TESTING OF CEPH NOT PRODUCTION USE | |
[client] | |
rbd cache = False | |
[client.openstack] | |
admin socket = /var/run/openstack/$cluster-$type.$id.$pid.$cctid.asok | |
log file = /var/log/ceph/qemu-guest-$pid.log |
View fio-template.job
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
[global] | |
ioengine=rbd | |
clientname=admin | |
pool=rbdpool | |
#IO-Depth changes depending on the test | |
iodepth=$IODEPTH | |
runtime=600 | |
direct=1 | |
sync=0 | |
buffered=0 |