mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.0 KiB
Python
34 lines
1.0 KiB
Python
5 years ago
|
#!/usr/bin/env python
|
||
|
|
||
|
from __future__ import (absolute_import, division, print_function)
|
||
|
__metaclass__ = type
|
||
|
|
||
|
import os
|
||
|
import sys
|
||
|
import time
|
||
|
|
||
|
# read the args from sys.argv
|
||
|
throttledir, inventory_hostname, max_throttle = sys.argv[1:]
|
||
|
# format/create additional vars
|
||
|
max_throttle = int(max_throttle)
|
||
|
throttledir = os.path.expanduser(throttledir)
|
||
|
throttlefile = os.path.join(throttledir, inventory_hostname)
|
||
|
try:
|
||
|
# create the file
|
||
|
with(open(throttlefile, 'a')):
|
||
|
os.utime(throttlefile, None)
|
||
|
# count the number of files in the dir
|
||
|
throttlelist = os.listdir(throttledir)
|
||
|
print("tasks: %d/%d" % (len(throttlelist), max_throttle))
|
||
|
# if we have too many files, fail
|
||
|
if len(throttlelist) > max_throttle:
|
||
|
print(throttlelist)
|
||
|
raise ValueError("Too many concurrent tasks: %d/%d" % (len(throttlelist), max_throttle))
|
||
|
finally:
|
||
|
# remove the file, then wait to make sure it's gone
|
||
|
os.unlink(throttlefile)
|
||
|
while True:
|
||
|
if not os.path.exists(throttlefile):
|
||
|
break
|
||
|
time.sleep(0.1)
|