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 | |
# | |
# Compact all OSDs on a host while they are stopped/offline | |
# | |
# Author: Wido den Hollander <[email protected]> | |
# | |
df|grep "/var/lib/ceph/osd"|awk '{print $6}'|cut -d '-' -f 2|sort -n|xargs -n 1 -P 10 -I OSD ceph-kvstore-tool bluestore-kv /var/lib/ceph/osd/ceph-OSD compact |
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
require 'sinatra' | |
# see http://www.sinatrarb.com/intro#Conditions | |
set(:action) { |value| condition { params[:Action] == value.to_s } } | |
get '/', :action => :xyz do | |
# ... | |
end |