mirror of
https://github.com/clearml/clearml
synced 2025-02-01 17:43:43 +00:00
111 lines
3.9 KiB
Python
111 lines
3.9 KiB
Python
|
import time
|
||
|
from logging import LogRecord, getLogger, basicConfig
|
||
|
from logging.handlers import BufferingHandler
|
||
|
|
||
|
from ...backend_api.services import events
|
||
|
from ...config import config
|
||
|
|
||
|
buffer_capacity = config.get('log.task_log_buffer_capacity', 100)
|
||
|
|
||
|
|
||
|
class TaskHandler(BufferingHandler):
|
||
|
__flush_max_history_seconds = 30.
|
||
|
__once = False
|
||
|
|
||
|
@property
|
||
|
def task_id(self):
|
||
|
return self._task_id
|
||
|
|
||
|
@task_id.setter
|
||
|
def task_id(self, value):
|
||
|
self._task_id = value
|
||
|
|
||
|
def __init__(self, session, task_id, capacity=buffer_capacity):
|
||
|
super(TaskHandler, self).__init__(capacity)
|
||
|
self.task_id = task_id
|
||
|
self.session = session
|
||
|
self.last_timestamp = 0
|
||
|
self.counter = 1
|
||
|
self._last_event = None
|
||
|
|
||
|
def shouldFlush(self, record):
|
||
|
"""
|
||
|
Should the handler flush its buffer?
|
||
|
|
||
|
Returns true if the buffer is up to capacity. This method can be
|
||
|
overridden to implement custom flushing strategies.
|
||
|
"""
|
||
|
|
||
|
# Notice! protect against infinite loops, i.e. flush while sending previous records
|
||
|
# if self.lock._is_owned():
|
||
|
# return False
|
||
|
|
||
|
# if we need to add handlers to the base_logger,
|
||
|
# it will not automatically create stream one when first used, so we must manually configure it.
|
||
|
if not TaskHandler.__once:
|
||
|
base_logger = getLogger()
|
||
|
if len(base_logger.handlers) == 1 and isinstance(base_logger.handlers[0], TaskHandler):
|
||
|
if record.name != 'console' and not record.name.startswith('trains.'):
|
||
|
base_logger.removeHandler(self)
|
||
|
basicConfig()
|
||
|
base_logger.addHandler(self)
|
||
|
TaskHandler.__once = True
|
||
|
else:
|
||
|
TaskHandler.__once = True
|
||
|
|
||
|
# if we passed the max buffer
|
||
|
if len(self.buffer) >= self.capacity:
|
||
|
return True
|
||
|
|
||
|
# if the first entry in the log was too long ago.
|
||
|
if len(self.buffer) and (time.time() - self.buffer[0].created) > self.__flush_max_history_seconds:
|
||
|
return True
|
||
|
|
||
|
return False
|
||
|
|
||
|
def _record_to_event(self, record):
|
||
|
# type: (LogRecord) -> events.TaskLogEvent
|
||
|
timestamp = int(record.created * 1000)
|
||
|
if timestamp == self.last_timestamp:
|
||
|
timestamp += self.counter
|
||
|
self.counter += 1
|
||
|
else:
|
||
|
self.last_timestamp = timestamp
|
||
|
self.counter = 1
|
||
|
|
||
|
# unite all records in a single second
|
||
|
if self._last_event and timestamp - self._last_event.timestamp < 1000 and \
|
||
|
record.levelname.lower() == str(self._last_event.level):
|
||
|
# ignore backspaces (they are often used)
|
||
|
self._last_event.msg += '\n' + record.getMessage().replace('\x08', '')
|
||
|
return None
|
||
|
|
||
|
self._last_event = events.TaskLogEvent(
|
||
|
task=self.task_id,
|
||
|
timestamp=timestamp,
|
||
|
level=record.levelname.lower(),
|
||
|
worker=self.session.worker,
|
||
|
msg=record.getMessage().replace('\x08', '') # ignore backspaces (they are often used)
|
||
|
)
|
||
|
return self._last_event
|
||
|
|
||
|
def flush(self):
|
||
|
if not self.buffer:
|
||
|
return
|
||
|
self.acquire()
|
||
|
buffer = self.buffer
|
||
|
try:
|
||
|
if not buffer:
|
||
|
return
|
||
|
self.buffer = []
|
||
|
record_events = [self._record_to_event(record) for record in buffer]
|
||
|
self._last_event = None
|
||
|
requests = [events.AddRequest(e) for e in record_events if e]
|
||
|
res = self.session.send(events.AddBatchRequest(requests=requests))
|
||
|
if not res.ok():
|
||
|
print("Failed logging task to backend ({:d} lines, {})".format(len(buffer), str(res.meta)))
|
||
|
except Exception:
|
||
|
print("Failed logging task to backend ({:d} lines)".format(len(buffer)))
|
||
|
finally:
|
||
|
self.release()
|