コード例 #1
0
ファイル: sync.py プロジェクト: PythonPunters/sync
class Synchronizer():
    """
    Sync data between cassandra end elasticsearch
    """

    def __init__(self):
        self.elasticsearch = ElasticSearchDAO()
        self.cassandra = CassandraDAO()

    def is_updated(self, provider, table):
        """
        Check if provider is updated
        :param provider: "Database" to be checked
        :return: If provider is updated (True) or outdated (False)
        """

        if provider.lower() == 'elasticsearch':
            return False
        elif provider.lower() == 'cassandra':
            return False
        else:
            logger.error("Provider doesnt exists.")
            raise ValueError('Invalid provider.')

    def cassandra_to_elasticsearch(self):
        """
        Write something cool here
        """
        for table in self.cassandra.get_all_tables():
            # if size of table content is not equal between cassandra end elasticsearch return False
            if len(self.cassandra.get_all_data(table=table)) != len(self.elasticsearch.get_all_data(doc_type=table)):
                return False

    def elasticsearch_to_cassandra(self):
        """
        Write something cool here
        """
        for doc_type in self.elasticsearch.get_doc_types():
            if len(self.elasticsearch.get_all_data(doc_type=doc_type)) != len(
                    self.cassandra.get_all_data(table=doc_type)):
                return False
コード例 #2
0
class Synchronizer():
    """
    Sync data between cassandra end elasticsearch
    """
    def __init__(self):
        self.elasticsearch = ElasticSearchDAO()
        self.cassandra = CassandraDAO()

    def is_updated(self, provider, table):
        """
        Check if provider is updated
        :param provider: "Database" to be checked
        :return: If provider is updated (True) or outdated (False)
        """

        if provider.lower() == 'elasticsearch':
            return False
        elif provider.lower() == 'cassandra':
            return False
        else:
            logger.error("Provider doesnt exists.")
            raise ValueError('Invalid provider.')

    def cassandra_to_elasticsearch(self):
        """
        Write something cool here
        """
        for table in self.cassandra.get_all_tables():
            # if size of table content is not equal between cassandra end elasticsearch return False
            if len(self.cassandra.get_all_data(table=table)) != len(
                    self.elasticsearch.get_all_data(doc_type=table)):
                return False

    def elasticsearch_to_cassandra(self):
        """
        Write something cool here
        """
        for doc_type in self.elasticsearch.get_doc_types():
            if len(self.elasticsearch.get_all_data(doc_type=doc_type)) != len(
                    self.cassandra.get_all_data(table=doc_type)):
                return False
コード例 #3
0
ファイル: sync.py プロジェクト: PythonPunters/sync
 def __init__(self):
     self.elasticsearch = ElasticSearchDAO()
     self.cassandra = CassandraDAO()
コード例 #4
0
 def __init__(self):
     self.elasticsearch = ElasticSearchDAO()
     self.cassandra = CassandraDAO()
コード例 #5
0
ファイル: run.py プロジェクト: marquesds/sync
from dao.elasticsearch_dao import ElasticSearchDAO
from dao.cassandra_dao import CassandraDAO

body_movie = {
    "title": "The Godfather",
    "directors": ["Francis Ford Coppola"],
    "year": 1972,
    "genres": ["Crime", "Drama"]
}

body_serie = {
    "title": "Once Upon a Time",
    "directors": [
        "Adam Horowitz",
        "Edward Kitsis"
    ],
    "year": 2011,
    "genres": ["Crime", "Drama"],
    "seasons": 3
}

cs = CassandraDAO()
# cs.save(table='series', body=body_serie)
print(cs.get_all_tables())
#cs.get_all_data(table='movies')
# es = ElasticSearchDAO()
# es.save(doc_type='series', body=body_serie)
# print(es.get_doc_types())

# print(es.cleaned_data(doc_type='movies'))