完成服务器判题队列长度监控功能

This commit is contained in:
virusdefender
2015-08-20 13:47:57 +08:00
parent 9879195555
commit d8dd9cd72c
4 changed files with 18 additions and 11 deletions

View File

@@ -10,12 +10,6 @@ from settings import docker_config, source_code_dir, test_case_dir, submission_d
@app.task
def judge(submission_id, time_limit, memory_limit, test_case_id):
# 先更新判题队列长度
r = redis.StrictRedis(host=redis_config["host"], port=redis_config["port"], db=redis_config["db"])
length = r.incr("queue_length")
now = datetime.datetime.now()
# 使用hash key是今天的日期 value 的 key 是当前时分秒 12:02:03 value 是队列长度
r.hset(str(datetime.date.today()), ":".join([str(now.hour), str(now.minute), str(now.second)]), length)
try:
command = "%s run -t -i --privileged --rm=true " \
"-v %s:/var/judger/test_case/ " \
@@ -42,8 +36,4 @@ def judge(submission_id, time_limit, memory_limit, test_case_id):
cur.execute("update submission set result=%s, info=%s where id=%s",
(result["system_error"], str(e), submission_id))
conn.commit()
conn.close()
r.decr("queue_length")
now = datetime.datetime.now()
# 使用hash key是今天的日期 value 的 key 是当前时分秒 12:02:03 value 是队列长度
r.hset(str(datetime.date.today()), ":".join([str(now.hour), str(now.minute), str(now.second)]), length)
conn.close()