Esempio n. 1
0
def main():
    pool = simple_client.get_connection()
    mass_insert(pool)
Esempio n. 2
0
##    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
##    GNU General Public License version 2 for more details.
##
##    You should have received a copy of the GNU General Public License
##    along with daedalus; see the file LICENSE.txt.
##-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

import logging

from pycassa.columnfamily import ColumnFamily

from daedalus.proto import simple_client
from daedalus.proto.simple_client import CF_LOGS


def query(pool):
    logging.info("-" * 120)  # ------------------------------
    logging.info("-" * 120)  # ------------------------------
    cf_logs = ColumnFamily(pool, CF_LOGS)
    for obj in cf_logs.get_range():  #@UnusedVariable
        print "Key: {0}".format(obj[0])
        # print dir(obj[1])
        for k, v in obj[1].iteritems():
            print "    {0} -> {1}".format(k, v)


if __name__ == '__main__':
    logging.basicConfig(level=logging.INFO)
    pool = simple_client.get_connection()
    query(pool)
Esempio n. 3
0
def main():
    pool = simple_client.get_connection()
    query(pool)
Esempio n. 4
0
def main():
    pool = simple_client.get_connection()
    query(pool)
Esempio n. 5
0
##    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
##    GNU General Public License version 2 for more details.
##
##    You should have received a copy of the GNU General Public License
##    along with daedalus; see the file LICENSE.txt.
##-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

import logging

from pycassa.columnfamily import ColumnFamily

from daedalus.proto import simple_client
from daedalus.proto.simple_client import CF_LOGS


def query(pool):
    logging.info("-" * 120) # ------------------------------
    logging.info("-" * 120) # ------------------------------
    cf_logs = ColumnFamily(pool, CF_LOGS)
    for obj in cf_logs.get_range(): #@UnusedVariable
        print "Key: {0}".format(obj[0])
        # print dir(obj[1])
        for k, v in obj[1].iteritems():
            print "    {0} -> {1}".format(k, v)


if __name__ == '__main__':
    logging.basicConfig(level=logging.INFO)
    pool = simple_client.get_connection()
    query(pool)