Files
75cca493341ba724d2514511909c772db700ba09
swift /bin /swift-recon-cron

77 lines
2.5 KiB
Plaintext
Raw Normal View History

# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied.
# See the License for the specific language governing permissions and
# limitations under the License.
swift-recon-cron.py
"""
import os
import sys
from ConfigParser import ConfigParser
from swift.common.utils import get_logger, dump_recon_cache
for i in os.listdir(device_dir):
asyncdir = os.path.join(device_dir, i, "async_pending")
if os.path.isdir(asyncdir):
for entry in os.listdir(asyncdir):
if os.path.isdir(os.path.join(asyncdir, entry)):
async_hdir = os.path.join(asyncdir, entry)
async_count += len(os.listdir(async_hdir))
return async_count
def main():
c = ConfigParser()
try:
conf_path = sys.argv[1]
except Exception:
print "Usage: %s CONF_FILE" % sys.argv[0].split('/')[-1]
print "ex: swift-recon-cron /etc/swift/object-server.conf"
sys.exit(1)
if not c.read(conf_path):
print "Unable to read config file %s" % conf_path
sys.exit(1)
conf = dict(c.items('filter:recon'))
device_dir = conf.get('devices', '/srv/node')
recon_cache_path = conf.get('recon_cache_path', '/var/cache/swift')
cache_file = os.path.join(recon_cache_path, "object.recon")
conf['log_name'] = conf.get('log_name', 'recon-cron')
logger = get_logger(conf, log_route='recon-cron')
try:
2011年09月01日 13:46:13 -05:00
print str(e)
_('Exception during recon-cron while accessing devices'))
2011年09月01日 13:46:13 -05:00
try:
2011年09月01日 13:46:13 -05:00
except Exception:
logger.exception(_('Exception remove cronjob lock'))
if __name__ == '__main__':
main()