
Implemented backup and restore for reddwarf instances. Implements spec/consistent-snapshots Change-Id: Ic1e78545f9e90ab986665a58f524081dcde6894b
66 lines
2.1 KiB
Python
66 lines
2.1 KiB
Python
# Copyright 2011 OpenStack Foundation
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); 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.
|
|
|
|
from datetime import datetime
|
|
from datetime import timedelta
|
|
|
|
from reddwarf.common import cfg
|
|
from reddwarf.common import exception
|
|
from reddwarf.common import utils
|
|
from reddwarf.db import get_db_api
|
|
from reddwarf.db import models as dbmodels
|
|
from reddwarf.openstack.common import log as logging
|
|
from reddwarf.openstack.common.gettextutils import _
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
CONF = cfg.CONF
|
|
|
|
AGENT_HEARTBEAT = CONF.agent_heartbeat_time
|
|
|
|
|
|
def persisted_models():
|
|
return {'agent_heartbeats': AgentHeartBeat}
|
|
|
|
|
|
class AgentHeartBeat(dbmodels.DatabaseModelBase):
|
|
"""Defines the state of a Guest Agent."""
|
|
|
|
_data_fields = ['instance_id', 'updated_at']
|
|
_table_name = 'agent_heartbeats'
|
|
|
|
def __init__(self, **kwargs):
|
|
super(AgentHeartBeat, self).__init__(**kwargs)
|
|
|
|
@classmethod
|
|
def create(cls, **values):
|
|
values['id'] = utils.generate_uuid()
|
|
heartbeat = cls(**values).save()
|
|
if not heartbeat.is_valid():
|
|
raise exception.InvalidModelError(errors=heartbeat.errors)
|
|
return heartbeat
|
|
|
|
def save(self):
|
|
if not self.is_valid():
|
|
raise exception.InvalidModelError(errors=self.errors)
|
|
self['updated_at'] = utils.utcnow()
|
|
LOG.debug(_("Saving %s: %s") %
|
|
(self.__class__.__name__, self.__dict__))
|
|
return get_db_api().save(self)
|
|
|
|
@staticmethod
|
|
def is_active(agent):
|
|
return (datetime.now() - agent.updated_at <
|
|
timedelta(seconds=AGENT_HEARTBEAT))
|