yougov / mongo-connector

MongoDB data stream pipeline tools by YouGov (adopted from MongoDB)
Apache License 2.0
1.88k stars 478 forks source link

Mongo connector with slor is not working , ValueError: No JSON object could be decoded #272

Closed coolraaj15 closed 8 years ago

coolraaj15 commented 9 years ago

I am new here for mongo connector with solr+mongo. Can you please help me here I am running command after setting up my replica set of mongo C:\Python27\Scripts>mongo-connector -m ppispcw28:27017 -n admin.servicenow -t http://estpcsw173:8983/solr/#/ -d solr_doc_manager

Output: No handlers could be found for logger "mongo_connector.util" Traceback (most recent call last): File "C:\Python27\lib\runpy.py", line 162, in run_module_as_main "main_", fname, loader, pkg_name) File "C:\Python27\lib\runpy.py", line 72, in run_code exec code in run_globals File "C:\Python27\Scripts\mongo-connector.exemain_.py", line 9, in File "C:\Python27\lib\site-packages\mongo_connector\util.py", line 85, in wrapped func(args, _kwargs) File "C:\Python27\lib\site-packages\mongo_connector\connector.py", line 998, in main conf.parse_args() File "C:\Python27\lib\site-packages\mongo_connector\config.py", line 114, in parse_args option, dict((k, values.get(k)) for k in option.cli_names)) File "C:\Python27\lib\site-packages\mongo_connector\connector.py", line 789, in apply_doc_managers dm_instances.append(module.DocManager(target_url, kwargs)) File "C:\Python27\lib\site-packages\mongo_connector\doc_managers\solr_doc_manager.py", line 76, in init self._build_fields() File "C:\Python27\lib\site-packages\mongo_connector\util.py", line 32, in wrapped return f(args, _kwargs) File "C:\Python27\lib\site-packages\mongo_connector\doc_managers\solr_doc_manager.py", line 95, in _build_fields result = decoder.decode(declared_fields) File "C:\Python27\lib\json\decoder.py", line 366, in decode obj, end = self.raw_decode(s, idx=_w(s, 0).end()) File "C:\Python27\lib\json\decoder.py", line 384, in raw_decode raise ValueError("No JSON object could be decoded") ValueError: No JSON object could be decoded My primary suspect is solr config (as I am new for this too) Please help me here

llvtt commented 9 years ago

There are a couple of things to check:

On Fri, Jun 19, 2015 at 4:40 PM, coolraaj15 notifications@github.com wrote:

I am new here for mongo connector with solr+mongo. Can you please help me here I am running command after setting up my replica set of mongo C:\Python27\Scripts>mongo-connector -m ppispcw28:27017 -n admin.servicenow -t http://estpcsw173:8983/solr/#/ -d solr_doc_manager

Output: No handlers could be found for logger "mongo_connector.util" Traceback (most recent call last): File "C:\Python27\lib\runpy.py", line 162, in run_module_as_main "main_", fname, loader, pkg_name) File "C:\Python27\lib\runpy.py", line 72, in run_code exec code in run_globals File "C:\Python27\Scripts\mongo-connector.exemain_.py", line 9, in File "C:\Python27\lib\site-packages\mongo_connector\util.py", line 85, in wrapped func(args,

_kwargs) File "C:\Python27\lib\site-packages\mongo_connector\connector.py", line 998, in main conf.parse_args() File "C:\Python27\lib\site-packages\mongo_connector\config.py", line 114, in parse_args option, dict((k, values.get(k)) for k in option.cli_names)) File "C:\Python27\lib\site-packages\mongo_connector\connector.py", line 789, in apply_doc_managers dm_instances.append(module.DocManager(target_url, kwargs)) File "C:\Python27\lib\site-packages\mongo_connector\doc_managers\solr_doc_manager.py", line 76, in init self._build_fields() File "C:\Python27\lib\site-packages\mongo_connector\util.py", line 32, in wrapped return f(args, _kwargs) File "C:\Python27\lib\site-packages\mongo_connector\doc_managers\solr_doc_manager.py", line 95, in _build_fields result = decoder.decode(declared_fields) File "C:\Python27\lib\json\decoder.py", line 366, in decode obj, end = self.raw_decode(s, idx=_w(s, 0).end()) File "C:\Python27\lib\json\decoder.py", line 384, in raw_decode raise ValueError("No JSON object could be decoded") ValueError: No JSON object could be decoded My primary suspect is solr config (as I am new for this too) Please help me here

— Reply to this email directly or view it on GitHub https://github.com/10gen-labs/mongo-connector/issues/272.

coolraaj15 commented 9 years ago

Yes You are right. This page is 404 for me. I dont know how to resolve it. Do you have all configuration which can setup luke and all? Do need to create a collection with "admin" name to achieve it?

coolraaj15 commented 9 years ago

do i need same schema.xml in solr also? and please help me on which location in solr i have to put this?

llvtt commented 9 years ago

Check out the documentation from Apache for how to set these up. This section of the Mongo Connector wiki has the links: https://github.com/10gen-labs/mongo-connector/wiki/Usage-with-Solr#configuring-solr.

coolraaj15 commented 9 years ago

I am still unable to configure solr only. I am using solr 4.5 and want to configure schema.xml, solrconfig.xml and solr.xml, but these files are at many places. I am confused which file I shld configure and how.

Thank you for supporting.

llvtt commented 9 years ago

The file structure should look something like this in Solr 4:

coreName/
|---conf/
    |---solrconfig.xml
    |---schema.xml
solr.xml

If you download a fresh copy of Solr (or go to the root of where you downloaded Solr), you'll see an "example" directory. If you navigate to example/solr, you will see another directory called "collection1" that contains configuration files and data for a core of the same name. You can probably use that as a starting point for setting up your own Solr core.

coolraaj15 commented 9 years ago

Thanks Luke It seems working cause I started getting some of my documents and some of them are not present. I am getting less than 54 docs. I tried searching http://localhost:8983/solr/admin/luke?docId=2 or http://localhost:8983/solr/admin/luke?id=TKT0229256

for some of my id i am getting only I cant get others though they are present in MongoDB. I also tried below http://localhost:8983/solr/collection1/select?q=%3A_&wt=json&_id=TKT0229256

seems getting others documents not the specific I searched.

coolraaj15 commented 9 years ago

Hi Luke,

Please help on the above.

Thanks for your help.

llvtt commented 9 years ago

Please specify the command that you're using to run mongo-connector, the config file, and the mongo-connector logs. Please also provide an example of a document that isn't being synchronized to Solr, including database and collection names if possible.

On Mon, Jun 29, 2015 at 9:54 AM, coolraaj15 notifications@github.com wrote:

Hi Luke,

Please help on the above.

Thanks for your help.

— Reply to this email directly or view it on GitHub https://github.com/10gen-labs/mongo-connector/issues/272#issuecomment-116759926 .

coolraaj15 commented 9 years ago

command to run mongo-connector C:\Python27\Scripts>mongo-connector -m ppispcw28:27017 -n admin.servicenow -t http://estpcsw173:8983/solr/ -d solr_doc_manager

config files on mongo-connector - enclosed xml below with "========"

schema.xml

<?xml version="1.0" encoding="UTF-8" ?>

``` ``` _id description ``` ``` ``` ``` ``` ```

Config files on solr --- schema.xml is same as above

solrconfig.xml

<?xml version="1.0" encoding="UTF-8" ?>

``` 4.5 ``` ``` ``` ${solr.data.dir:} ``` ``` ``` ${solr.lock.type:native} true ``` ``` ``` ${solr.ulog.dir:} ${solr.autoCommit.maxTime:15000} false ${solr.autoSoftCommit.maxTime:-1} ``` ``` 1024 true ``` ``` ``` 20 200 static firstSearcher warming in solrconfig.xml false 2 ``` ``` ``` ``` ``` explicit 10 text ``` explicit json true text true json true ``` explicit ``` velocity browse layout Solritas edismax text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4 title^10.0 description^5.0 keywords^5.0 author^2.0 resourcename^1.0 text 100% *:* 10 *,score text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4 title^10.0 description^5.0 keywords^5.0 author^2.0 resourcename^1.0 text,features,name,sku,id,manu,cat,title,description,keywords,author,resourcename 3 on cat manu_exact content_type author_s ipod GB 1 cat,inStock after price 0 600 50 popularity 0 10 3 manufacturedate_dt NOW/YEAR-10YEARS NOW +1YEAR before after on content features title name html <b> </b> 0 title 0 name 3 200 content 750 on false 5 2 5 true true 5 3 spellcheck ``` ``` application/json application/csv ``` true ignored_ ``` true links ignored_ ``` ``` solrpingquery all explicit true ``` ``` ``` ``` text_general default text solr.DirectSolrSpellChecker internal 0.5 2 1 5 4 0.01 wordbreak solr.WordBreakSolrSpellChecker name true true 10 ``` ``` text default wordbreak on true 10 5 5 true true 10 5 spellcheck ``` ``` text true tvComponent ``` lingo ``` org.carrot2.clustering.lingo.LingoClusteringAlgorithm clustering/carrot2 stc org.carrot2.clustering.stc.STCClusteringAlgorithm kmeans org.carrot2.clustering.kmeans.BisectingKMeansClusteringAlgorithm ``` ``` true true name id features true false ``` edismax text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4 *:* 10 *,score clustering ``` ``` true false terms ``` string elevate.xml explicit text elevator ``` 100 ``` 70 0.5 [-\w ,/\n\"']{20,200} ]]> ]]> ,, ,, ,, ,, ,]]> ]]> 10 .,!? WORD en US ``` ``` ``` ``` ``` text/plain; charset=UTF-8 5 ``` ``` ``` _:_

Solr.xml

<?xml version="1.0" encoding="UTF-8" ?>

${host:} ${jetty.port:8983} ${hostContext:solr} ${zkClientTimeout:15000} ${genericCoreNodeNames:true} ${socketTimeout:0} ${connTimeout:0} # Mongo-connector.log # 2015-06-24 16:55:10,917 [ERROR] mongo_connector.oplog_manager:311 - Cursor closed due to an exception. Will attempt to reconnect. Traceback (most recent call last): File "C:\Python27\lib\site-packages\mongo_connector\oplog_manager.py", line 186, in run for n, entry in enumerate(cursor): File "C:\Python27\lib\site-packages\pymongo\cursor.py", line 1090, in next if len(self.__data) or self._refresh(): File "C:\Python27\lib\site-packages\pymongo\cursor.py", line 1039, in _refresh limit, self.__id)) File "C:\Python27\lib\site-packages\pymongo\cursor.py", line 933, in __send_message res = client._send_message_with_response(message, **kwargs) File "C:\Python27\lib\site-packages\pymongo\mongo_client.py", line 1218, in _send_message_with_response raise AutoReconnect(str(e)) AutoReconnect: [Errno 10054] An existing connection was forcibly closed by the remote host # My mondodb structure db name: admin collection name: servicenow # test data: unable to get http://localhost:8983/solr/admin/luke?id=DFCT001007 "_id" : "DFCT001007", "_class" : "defects", "assigned_to" : "aws", "assignment_group" : "asc", "cab" : "xza", "closed_by" : "xxx", "configuration_item" : "abc", "parent" : "RLSE0010025", "requested_by" : "raj", "requested_for" : "", "description" : "desc", "opened_by" : "raj", "parent_feature" : "", "updated" : ISODate("2013-10-09T19:34:46Z"), "short_description" : "my short description", "state" : "Closed Complete", "development_priority" : "2 - High", "active" : "false", "comments_and_work_notes" : "abcxxxxxxxxxxxxx", "created" : ISODate("2013-02-15T00:49:04Z"), "created_by" : "MPOCXI", "impacted_geography" : "", "opened" : ISODate("2013-02-15T00:45:38Z"), "reassignment_count" : "1", "reassignment_reason" : "", "resolution_notes" : "Planned end date: 2013-03-08", "updated_by" : "MZUXXX", "work_notes" : "abcdxxxxxxxxxxxx", "closed" : ISODate("2013-03-11T15:21:07Z"), ## "correlation_display" : "" able to get http://localhost:8983/solr/admin/luke?id=INC035356 "_id" : "INC035356", "_class" : "Incidents", "requested_for" : "Raj", "requested_by" : "rajxxx", "opened_by" : "rajxxx", "configuration_item" : "team", "assignment_group" : "team", "assigned_to" : "raj", "work_notes" : "ajsdjsxxx", "updated_by" : "afc", "updated" : ISODate("2015-06-25T13:28:07Z"), "additional_comments" : "", "contact_type" : "Phone", "description" : "abcxxxxx", "impacted_geography" : "Global", "reassignment_count" : "0", "reassignment_reason" : "", "reopen_count" : "0", "resolution_code" : "", "resolution_notes" : "", "response_sla_acheived" : "false", "severity" : "4 - Medium", "updates" : "5", "category_1" : "Application", "category_2" : "Data", "category_3" : "Missing", "comments_and_work_notes" : "abcxxxx", "created" : ISODate("2015-06-25T00:23:19Z"), "created_by" : "asdf", "short_description" : " abcdesc", "state" : "Pending", "priority" : "3 - Medium", # "active" : "true" # http://localhost:8983/solr/admin/luke?wt=xslt&tr=luke.xsl#index Solr Luke Request Handler Response Index Statistics Field Statistics _class _id _ts _version_ active additional_comments assigned_to assignment_group cab category_1 category_2 category_3 closed comments_and_work_notes configuration_item contact_type created created_by description development_priority impacted_geography ns opened opened_by parent priority reassignment_count reassignment_reason release reopen_count requested_by requested_for resolution_code resolution_notes response_sla_acheived severity short_description state updated updated_by updates work_notes Index Statistics index numDocs 146 maxDoc 148 deletedDocs 2 version 1247 segmentCount 3 current false hasDeletions true directory org.apache.lucene.store.NRTCachingDirectory:NRTCachingDirectory(org.apache.lucene.store.MMapDirectory@C:\Users\xxxx\Downloads\solr-4.5.1\solr-4.5.1\example\solr\collection1\data\index lockFactory=org.apache.lucene.store.NativeFSLockFactory@52fb6dcb; maxCacheMB=48.0 maxMergeSizeMB=4.0) userData commitTimeMSec 1435512550823 lastModified 2015-06-28T17:29:10.823Z Field Statistics fields _class type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 148 _id type string schema Indexed - Stored - Omit Norms - Sort Missing Last - index Indexed - Tokenized - Stored - Omit Norms - docs 148 _ts type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * docs 148 _version_ type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * docs 148 active type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 148 additional_comments type string schema Indexed - Stored - Multivalued - Omit Norms - Sort Missing Last - index Indexed - Tokenized - Stored - Omit Norms - docs 39 assigned_to type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 147 assignment_group type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 148 cab type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 1 category_1 type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 94 category_2 type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 94 category_3 type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 94 closed type tdate schema Indexed - Tokenized - Stored - index Tokenized - Stored - docs 24 comments_and_work_notes type string schema Indexed - Stored - Multivalued - Omit Norms - Sort Missing Last - index Indexed - Tokenized - Stored - Omit Norms - docs 61 configuration_item type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 96 contact_type type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 94 created type tdate schema Indexed - Tokenized - Stored - index Tokenized - Stored - docs 148 created_by type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 148 description type string schema Indexed - Stored - Multivalued - Omit Norms - Sort Missing Last - index Indexed - Tokenized - Stored - Omit Norms - docs 148 development_priority type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 2 impacted_geography type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 97 ns type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 148 opened type tdate schema Indexed - Tokenized - Stored - index Tokenized - Stored - docs 3 opened_by type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 148 parent type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 1 priority type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 146 reassignment_count type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 97 reassignment_reason type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 10 release type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 1 reopen_count type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 94 requested_by type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 148 requested_for type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 146 resolution_code type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 26 resolution_notes type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 27 response_sla_acheived type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 94 severity type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 94 short_description type string schema Indexed - Stored - Multivalued - Omit Norms - Sort Missing Last - index Indexed - Tokenized - Stored - Omit Norms - docs 148 state type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 148 updated type tdate schema Indexed - Tokenized - Stored - index Tokenized - Stored - docs 148 updated_by type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 148 updates type string schema Indexed - Stored - Omit Norms - Sort Missing Last - dynamicBase * index Indexed - Tokenized - Stored - Omit Norms - docs 145 work_notes type string schema Indexed - Stored - Multivalued - Omit Norms - Sort Missing Last - index Indexed - Tokenized - Stored - Omit Norms - docs 36 # Please let me know if you need more information.
llvtt commented 9 years ago

I notice that there's an AutoReconnect coming from mongo-connector:

 AutoReconnect: [Errno 10054] An existing connection was forcibly closed by the remote host

Do you know what was going on with MongoDB at the time? I wonder if the connector was able to reconnect. Could you try re-running mongo-connector with verbose logs (-v)? This will be more helpful in determining when things are going wrong.

coolraaj15 commented 9 years ago

May be mongo box went down and reconnected once up, that had happened 1 time. Sure I will try with -v the command is below I ran C:\Python27\Scripts>mongo-connector -m ppispcw28:27017 -n admin.servicenow -t http://estpcsw173:8983/solr/ -d solr_doc_manager -v

logs:

2015-06-29 11:09:00,753 [INFO] mongo_connector.connector:1001 - Beginning Mongo Connector 2015-06-29 11:09:00,769 [INFO] mongo_connector.oplog_manager:87 - OplogThread: Initializing oplog thread 2015-06-29 11:09:00,770 [INFO] mongo_connector.connector:295 - MongoConnector: Starting connection thread MongoClient([u'ppispcw28:27018', u'ppispcw28:27019', u'PPISPCW28:27017']) 2015-06-29 11:09:00,770 [DEBUG] mongo_connector.oplog_manager:154 - OplogThread: Run thread started 2015-06-29 11:09:00,770 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:00,770 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:00,772 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:01,233 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:02,233 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:02,233 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:02,234 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:02,289 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:03,290 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:03,290 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:03,292 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:03,306 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:04,306 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:04,306 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:04,306 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:04,321 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:05,321 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:05,321 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:05,322 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:05,335 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:06,335 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:06,335 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:06,335 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:06,348 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:07,348 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:07,348 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:07,348 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:07,361 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:08,361 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:08,361 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:08,362 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:08,377 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:09,377 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:09,377 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:09,377 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:09,388 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:10,388 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:10,388 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:10,390 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:10,403 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:11,404 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:11,404 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:11,404 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:11,415 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:12,417 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:12,417 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:12,417 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:12,428 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:13,428 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:13,428 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:13,430 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:13,443 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:14,444 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:14,444 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:14,444 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:14,457 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:15,459 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:15,459 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:15,460 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:15,473 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:16,474 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:16,474 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:16,474 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:16,484 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:17,484 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:17,484 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:17,486 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:17,499 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:18,500 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:18,500 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:18,500 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:18,513 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:19,513 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:19,513 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:19,515 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:19,528 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:20,529 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:20,529 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:20,529 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:20,542 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:21,542 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:21,542 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:21,542 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:21,555 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:22,555 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:22,555 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:22,556 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:22,569 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:23,571 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:23,571 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:23,572 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:23,585 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:24,585 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:24,585 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:24,585 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:24,598 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:25,598 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:25,598 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:25,598 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:25,611 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:26,615 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:26,615 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:26,615 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:26,628 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:27,628 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:27,628 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:27,628 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:27,641 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:28,641 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:28,641 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:28,641 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:28,653 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:29,653 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:29,653 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:29,654 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:29,663 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:30,664 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:30,664 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:30,664 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:30,676 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:31,677 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:31,677 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:31,677 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:31,691 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:32,693 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:32,693 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:32,694 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:32,707 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:33,707 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:33,707 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:33,707 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:33,720 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:34,720 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:34,720 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:34,720 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:34,733 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:35,733 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:35,733 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:35,734 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:35,749 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:36,750 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:36,750 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:36,750 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:36,763 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:37,765 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:37,765 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:37,765 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:37,778 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:38,778 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:38,778 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:38,779 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:38,792 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:39,792 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:39,792 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:39,792 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:39,805 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:40,806 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:40,806 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:40,808 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:40,822 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:41,822 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:41,822 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:41,823 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:41,836 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:42,838 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:42,838 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:42,838 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:42,849 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:43,849 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:43,849 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:43,849 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:43,861 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:44,862 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:44,862 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:44,862 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:44,875 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:45,875 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:45,875 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:45,875 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:45,888 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:46,888 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:46,888 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:46,888 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:46,901 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:47,901 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:47,901 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:47,901 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:47,914 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:48,914 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:48,914 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:48,914 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:48,927 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:49,927 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:49,927 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:49,927 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:49,938 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:50,938 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:50,938 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:50,940 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:50,954 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:51,954 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:51,954 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:51,956 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:51,970 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:52,970 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:52,970 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:52,970 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:52,984 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:53,984 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:53,984 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:53,984 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:53,997 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:54,997 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:54,997 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:54,997 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:55,009 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:56,010 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:56,010 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:56,012 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:56,026 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:57,026 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:57,026 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:57,028 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:57,036 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:58,036 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:58,036 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:58,038 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:58,051 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:09:59,052 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:09:59,052 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:09:59,052 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:09:59,059 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:00,059 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:00,059 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:00,059 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:00,072 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:01,072 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:01,072 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:01,072 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:01,085 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:02,085 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:02,085 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:02,086 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:02,101 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:03,101 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:03,101 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:03,101 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:03,115 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:04,115 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:04,115 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:04,117 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:04,131 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:05,131 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:05,131 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:05,131 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:05,145 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:06,147 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:06,147 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:06,148 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:06,155 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:07,157 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:07,157 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:07,157 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:07,171 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:08,171 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:08,171 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:08,171 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:08,184 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:09,184 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:09,184 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:09,184 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:09,197 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:10,197 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:10,197 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:10,198 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:10,211 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:11,211 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:11,211 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:11,211 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:11,221 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:12,221 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:12,221 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:12,221 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:12,234 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:13,234 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:13,234 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:13,234 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:13,247 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:14,247 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:14,247 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:14,247 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:14,260 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:15,260 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:15,260 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:15,262 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:15,275 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:16,276 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:16,276 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:16,276 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:16,289 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:17,289 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:17,289 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:17,289 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:17,302 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:18,302 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:18,302 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:18,303 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:18,316 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:19,316 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:19,316 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:19,318 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:19,331 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:20,331 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:20,331 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:20,332 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:20,345 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:21,345 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:21,345 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:21,346 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:21,359 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:22,359 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:22,359 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:22,361 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:22,374 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:23,375 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:23,375 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:23,375 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:23,388 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:24,388 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:24,388 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:24,390 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:24,403 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:25,404 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:25,404 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:25,404 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:25,411 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:26,413 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:26,413 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:26,414 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:26,427 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:27,427 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:27,427 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:27,427 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:27,440 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:28,441 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:28,441 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:28,443 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:28,456 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:29,457 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:29,457 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:29,457 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:29,470 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:30,470 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:30,470 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:30,471 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:30,486 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:31,486 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:31,487 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:31,487 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:31,822 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:32,823 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:32,823 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:32,825 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:32,838 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:33,838 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:33,838 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:33,839 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:33,868 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:34,868 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:34,868 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:34,868 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:34,884 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:35,884 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:35,884 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:35,884 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:35,911 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:36,914 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:36,914 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:36,914 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:36,928 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:37,928 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:37,928 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:37,928 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:37,940 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:38,940 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:38,940 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:38,940 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:38,953 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:39,954 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:39,954 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:39,954 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:39,967 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:40,967 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:40,967 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:40,967 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:40,980 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:41,982 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:41,982 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:41,982 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:41,993 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:42,993 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:42,993 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:42,994 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:43,007 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:44,009 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:44,009 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:44,009 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:44,019 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:45,019 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:45,019 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:45,019 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:45,030 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:46,032 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:46,032 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:46,032 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:46,046 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:47,049 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:47,049 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:47,049 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:47,056 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:48,058 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:48,058 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:48,059 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:48,072 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:49,072 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:49,072 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:49,072 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:49,086 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:50,086 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:50,086 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:50,088 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:50,101 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:51,101 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:51,101 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:51,102 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:51,117 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:52,117 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:52,117 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:52,118 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:52,131 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:53,131 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:53,131 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:53,132 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:53,145 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:54,147 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:54,147 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:54,148 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:54,161 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:55,161 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:55,161 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:55,163 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:55,176 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:56,177 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:56,177 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:56,178 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:56,191 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:57,193 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:57,193 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:57,194 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:57,207 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:58,207 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:58,207 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:58,207 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:58,219 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:10:59,220 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:10:59,220 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:10:59,220 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:10:59,233 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:00,234 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:00,234 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:00,234 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:00,247 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:01,249 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:01,249 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:01,250 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:01,263 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:02,263 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:02,263 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:02,263 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:02,276 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:03,278 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:03,278 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:03,279 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:03,293 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:04,293 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:04,293 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:04,295 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:04,309 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:05,309 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:05,309 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:05,309 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:05,322 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:06,323 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:06,323 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:06,325 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:06,338 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:07,338 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:07,338 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:07,338 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:07,352 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:08,352 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:08,352 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:08,352 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:08,365 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:09,365 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:09,365 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:09,367 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:09,381 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:10,381 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:10,381 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:10,381 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:10,397 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:11,397 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:11,397 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:11,397 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:11,410 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:12,410 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:12,410 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:12,411 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:12,424 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:13,424 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:13,424 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:13,426 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:13,440 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:14,440 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:14,440 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:14,440 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:14,454 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:15,456 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:15,456 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:15,457 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:15,470 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:16,471 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:16,471 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:16,473 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:16,486 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:17,486 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:17,486 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:17,487 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:17,500 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:18,502 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:18,502 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:18,503 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:18,516 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:19,516 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:19,516 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:19,516 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:19,529 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:20,529 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:20,529 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:20,530 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:20,545 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:21,545 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:21,545 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:21,545 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:21,558 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:22,558 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:22,558 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:22,558 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:22,569 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:23,569 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:23,569 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:23,571 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:23,584 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:24,585 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:24,585 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:24,585 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:24,598 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:25,599 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:25,599 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:25,599 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:25,612 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:26,614 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:26,614 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:26,615 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:26,628 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:27,630 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:27,631 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:27,631 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:27,644 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:28,644 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:28,644 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:28,644 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:28,655 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:29,655 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:29,655 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:29,655 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:29,667 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:30,667 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:30,667 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:30,668 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:30,683 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:31,683 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:31,683 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:31,684 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:31,697 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:32,698 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:32,698 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:32,700 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:32,713 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:33,713 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:33,713 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:33,713 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:33,726 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:34,726 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:34,726 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:34,726 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:34,740 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:35,740 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:35,740 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:35,742 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:35,755 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:36,756 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:36,756 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:36,757 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:36,770 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:37,772 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:37,772 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:37,773 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:37,788 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:38,788 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:38,788 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:38,788 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:38,802 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:39,802 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:39,802 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:39,803 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:39,818 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:40,818 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:40,818 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:40,819 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:40,832 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:41,832 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:41,832 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:41,834 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:41,848 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:42,848 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:42,848 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:42,848 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:42,861 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:43,862 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:43,862 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:43,862 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:43,875 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:44,875 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:44,875 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:44,877 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:44,890 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:45,890 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:45,890 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:45,891 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:45,904 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:46,905 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:46,905 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:46,907 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:46,921 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:47,921 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:47,921 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:47,923 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:47,937 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:48,937 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:48,937 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:48,937 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:48,951 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:49,953 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:49,953 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:49,953 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:49,966 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:50,966 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:50,966 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:50,967 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:50,980 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:51,980 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:51,980 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:51,980 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:51,993 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:52,993 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:52,993 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:52,993 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:53,006 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:54,006 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:54,006 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:54,006 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:54,017 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:55,017 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:55,017 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:55,017 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:55,029 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:56,029 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:56,029 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:56,029 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:56,042 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:57,042 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:57,042 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:57,042 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:57,051 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:58,051 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:58,051 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:58,051 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:58,062 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:11:59,062 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:11:59,062 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:11:59,062 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:11:59,069 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:00,069 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:00,069 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:00,069 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:00,076 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:01,076 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:01,076 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:01,076 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:01,089 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:02,089 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:02,089 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:02,091 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:02,105 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:03,105 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:03,105 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:03,107 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:03,121 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:04,121 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:04,121 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:04,121 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:04,135 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:05,135 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:05,135 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:05,137 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:05,151 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:06,153 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:06,153 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:06,154 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:06,167 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:07,167 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:07,167 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:07,168 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:07,181 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:08,183 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:08,183 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:08,184 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:08,197 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:09,197 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:09,197 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:09,197 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:09,210 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:10,210 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:10,210 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:10,210 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:10,223 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:11,223 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:11,223 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:11,223 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:11,236 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:12,236 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:12,236 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:12,236 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:12,250 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:13,250 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:13,250 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:13,252 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:13,267 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:14,267 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:14,267 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:14,269 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:14,282 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:15,282 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:15,282 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:15,283 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:15,298 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:16,299 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:16,299 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:16,299 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:16,315 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:17,315 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:17,315 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:17,315 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:17,329 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:18,329 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:18,329 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:18,331 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:18,345 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:19,345 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:19,345 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:19,345 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:19,359 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:20,361 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:20,361 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:20,361 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:20,375 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:21,375 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:21,375 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:21,377 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:21,390 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:22,390 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:22,390 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:22,391 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:22,404 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:23,404 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:23,404 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:23,404 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:23,417 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:24,417 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:24,417 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:24,417 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:24,430 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:25,431 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:25,431 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:25,433 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:25,447 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:26,447 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:26,447 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:26,448 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:26,463 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:27,463 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:27,463 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:27,463 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:27,477 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:28,477 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:28,477 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:28,479 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:28,493 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:29,493 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:29,493 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:29,493 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:29,506 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:30,507 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:30,507 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:30,507 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:30,520 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:31,520 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:31,520 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:31,520 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:31,533 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:32,533 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:32,533 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:32,535 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:32,552 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:33,552 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:33,552 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:33,552 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:33,565 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:34,565 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:34,565 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:34,565 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:34,576 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:35,578 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:35,578 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:35,578 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:35,591 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:36,592 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:36,592 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:36,594 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:36,607 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:37,607 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:37,607 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:37,607 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:37,619 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:38,619 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:38,619 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:38,621 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:38,634 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:39,634 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:39,634 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:39,634 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:39,648 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:40,648 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:40,648 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:40,648 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:40,660 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:41,660 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:41,660 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:41,661 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:41,674 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:42,674 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:42,674 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:42,674 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:42,690 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:43,690 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:43,690 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:43,690 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:43,703 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:44,703 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:44,703 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:44,703 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:44,716 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:45,716 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:45,716 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:45,717 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:45,730 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:46,732 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:46,732 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:46,733 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:46,746 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:47,746 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:47,746 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:47,746 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:47,759 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:48,760 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:48,760 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:48,762 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:48,775 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:49,776 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:49,776 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:49,776 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:49,790 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:50,790 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:50,790 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:50,792 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:50,805 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:51,805 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:51,805 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:51,805 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:51,816 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:52,818 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:52,819 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:52,819 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:52,832 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:53,832 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:53,832 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:53,835 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:53,848 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:54,851 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:54,851 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:54,851 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:54,865 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:55,865 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:55,865 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:55,867 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:55,881 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:56,881 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:56,881 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:56,881 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:56,894 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:57,894 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:57,894 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:57,895 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:57,911 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:58,911 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:58,911 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:58,913 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:58,926 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:12:59,926 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:12:59,926 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:12:59,927 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:12:59,941 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:00,941 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:00,941 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:00,941 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:00,956 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:01,956 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:01,956 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:01,957 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:01,971 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:02,971 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:02,971 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:02,971 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:02,984 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:03,984 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:03,984 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:03,986 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:03,999 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:04,999 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:04,999 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:04,999 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:05,010 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:06,010 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:06,010 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:06,012 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:06,025 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:07,026 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:07,028 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:07,028 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:07,042 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:08,042 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:08,042 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:08,043 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:08,055 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:09,055 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:09,055 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:09,055 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:09,062 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:10,063 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:10,063 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:10,063 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:10,076 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:11,076 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:11,076 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:11,078 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:11,089 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:12,091 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:12,091 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:12,092 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:12,105 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:13,105 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:13,105 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:13,107 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:13,121 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:14,122 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:14,122 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:14,124 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:14,138 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:15,138 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:15,138 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:15,140 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:15,154 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:16,154 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:16,154 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:16,154 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:16,170 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:17,170 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:17,170 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:17,171 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:17,187 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:18,187 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:18,187 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:18,187 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:18,201 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:19,201 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:19,201 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:19,201 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:19,214 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:20,214 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:20,214 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:20,216 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:20,229 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:21,229 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:21,229 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:21,230 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:21,243 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:22,243 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:22,243 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:22,243 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:22,256 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:23,256 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:23,256 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:23,257 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:23,270 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:24,270 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:24,270 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:24,272 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:24,286 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:25,286 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:25,286 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:25,286 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:25,299 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:26,299 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:26,299 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:26,299 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:26,313 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:27,313 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:27,313 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:27,315 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:27,328 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:28,328 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:28,328 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:28,329 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:28,342 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:29,348 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:29,348 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:29,348 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:29,362 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:30,362 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:30,362 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:30,362 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:30,375 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:31,377 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:31,377 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:31,378 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:31,394 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:32,394 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:32,394 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:32,394 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:32,408 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:33,408 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:33,408 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:33,410 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:33,424 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:34,424 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:34,424 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:34,424 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:34,438 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:35,438 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:35,438 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:35,438 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:35,453 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:36,453 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:36,453 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:36,454 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:36,471 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:37,473 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:37,473 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:37,473 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:37,486 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:38,486 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:38,486 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:38,486 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:38,500 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:39,500 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:39,500 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:39,500 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:39,513 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:40,515 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:40,515 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:40,515 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:40,529 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:41,530 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:41,530 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:41,532 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:41,545 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:42,546 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:42,546 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:42,546 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:42,558 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:43,558 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:43,558 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:43,558 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:43,565 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:44,565 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:44,565 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:44,566 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:44,581 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:45,582 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:45,582 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:45,582 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:45,595 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:46,596 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:46,596 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:46,596 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:46,608 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:47,608 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:47,608 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:47,609 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:47,622 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:48,624 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:48,624 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:48,624 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:48,637 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:49,638 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:49,638 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:49,640 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:49,655 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:50,657 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:50,657 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:50,657 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:50,668 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:51,668 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:51,668 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:51,668 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:51,683 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:52,684 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:52,684 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:52,684 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:52,697 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:53,697 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:53,697 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:53,697 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:53,709 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:54,709 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:54,709 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:54,709 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:54,721 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:55,723 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:55,723 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:55,723 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:55,736 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping. 2015-06-29 11:13:56,736 [DEBUG] mongo_connector.oplog_manager:156 - OplogThread: Getting cursor 2015-06-29 11:13:56,736 [DEBUG] mongo_connector.oplog_manager:656 - OplogThread: reading last checkpoint as Timestamp(1435598913, 61) 2015-06-29 11:13:56,736 [DEBUG] mongo_connector.oplog_manager:642 - OplogThread: oplog checkpoint updated to Timestamp(1435598913, 61) 2015-06-29 11:13:56,749 [DEBUG] mongo_connector.oplog_manager:168 - OplogThread: Last entry is the one we already processed. Up to date. Sleeping.

llvtt commented 9 years ago

On Mon, Jun 29, 2015 at 11:14 AM, coolraaj15 notifications@github.com wrote:

essage

And when you run this, you're still getting the behavior where not all documents seem to be synchronized to Solr? All other configuration files are the same when running this?

coolraaj15 commented 9 years ago

Yes Luke. Can you please let me know how to delete all index , So I will re-index it.

Thanks

coolraaj15 commented 9 years ago

Hi Luke,

Now I can get the whole docs from Mongo. But I am unable to search. I want to search through description but I am not getting. While searching with id works fine.

coolraaj15 commented 9 years ago

seraching with text is not working however those text are indexed and stored.

llvtt commented 9 years ago

It sounds like this is some sort of problem with the configuration of Elasticsearch. You will probably have more luck getting an answer to this question on the Elasticsearch user group: https://groups.google.com/forum/#!forum/elasticsearch

On Fri, Jul 10, 2015 at 9:44 AM, coolraaj15 notifications@github.com wrote:

seraching with text is not working however those text are indexed and stored.

— Reply to this email directly or view it on GitHub https://github.com/10gen-labs/mongo-connector/issues/272#issuecomment-120455770 .

aherlihy commented 8 years ago

@coolraaj15 Hello! I'm going to close this issue because it is likely a problem with elastic. If you are still experiencing problems with the most recent version of mongo-connector, feel free to re-open or file a new issue. Thank you!