Initial fixes, bump the version

master
Bradlee Speice 2016-08-29 19:01:54 -04:00
parent 7d56d68728
commit e88547c47d
2 changed files with 14 additions and 8 deletions

View File

@ -1,2 +1,2 @@
__version__ = '0.3.7'
__version__ = '0.3.8'
__release__ = __version__

View File

@ -2,6 +2,8 @@ from pymongo import MongoClient
import logging
import argparse
from metrik import __version__
def open_connection(host, port):
return MongoClient(host=host, port=port)
@ -10,26 +12,26 @@ def open_connection(host, port):
def merge(con1, con2, database_name='metrik'):
database1 = con1[database_name]
database2 = con2[database_name]
collections = database1.collection_names()
collections = database1.collection_names(include_system_collections=False)
for collection_name in collections:
collection1 = database1[collection_name]
collection2 = database2[collection_name]
for item in collection1.find():
if collection2.find({'_id': item['_id']}) is None:
if '_id' in item and collection2.find_one({'_id': item['_id']}) is None:
collection2.save(item)
collection1.delete_one({'_id': item['_id']})
else:
logging.warning('Not moving item {} as the same ID already'
' exists in the `right` database.'.format(
item['_id']
logging.warning("Not moving item '{}' as the same ID already"
" exists in the `right` database.".format(
item.get('_id', '')
))
def main():
parser = argparse.ArgumentParser()
parser.add_argument('-h', '--host-1', dest='host1',
parser.add_argument('-g', '--host-1', dest='host1', required=True,
help='The `left` database to copy from')
parser.add_argument('-g', '--host-2', dest='host2',
parser.add_argument('-f', '--host-2', dest='host2', required=True,
help='The `right` database to copy into')
parser.add_argument('-p', '--port-1', default=27017, dest='port1', type=int,
help='The port number of the `left` database')
@ -37,10 +39,14 @@ def main():
help='The port number of the `right` database')
parser.add_argument('-d', '--database', default='metrik',
help='The database to merge from one host to the other')
parser.add_argument('-v', '--version', action='version', version=__version__)
args = parser.parse_args()
con1 = open_connection(args.host1, args.port1)
con2 = open_connection(args.host2, args.port2)
merge(con1, con2, args.database)
con1.close()
con2.close()
if __name__ == '__main__':