主頁 > 知識庫 > 利用MongoDB中oplog機(jī)制實(shí)現(xiàn)準(zhǔn)實(shí)時(shí)數(shù)據(jù)的操作監(jiān)控

利用MongoDB中oplog機(jī)制實(shí)現(xiàn)準(zhǔn)實(shí)時(shí)數(shù)據(jù)的操作監(jiān)控

熱門標(biāo)簽:電銷機(jī)器人是什么軟件 老虎洗衣店地圖標(biāo)注 廣州長安公司怎樣申請400電話 蘋果汽車租賃店地圖標(biāo)注 濟(jì)南電銷機(jī)器人加盟公司 呼和浩特電銷外呼系統(tǒng)加盟 杭州人工電銷機(jī)器人價(jià)格 怎么投訴地圖標(biāo)注 云南外呼系統(tǒng)

前言

最近有一個(gè)需求是要實(shí)時(shí)獲取到新插入到MongoDB的數(shù)據(jù),而插入程序本身已經(jīng)有一套處理邏輯,所以不方便直接在插入程序里寫相關(guān)程序,傳統(tǒng)的數(shù)據(jù)庫大多自帶這種觸發(fā)器機(jī)制,但是Mongo沒有相關(guān)的函數(shù)可以用(也可能我了解的太少了,求糾正),當(dāng)然還有一點(diǎn)是需要python實(shí)現(xiàn),于是收集整理了一個(gè)相應(yīng)的實(shí)現(xiàn)方法。

一、引子

首先可以想到,這種需求其實(shí)很像數(shù)據(jù)庫的主從備份機(jī)制,從數(shù)據(jù)庫之所以能夠同步主庫是因?yàn)榇嬖谀承┲笜?biāo)來做控制,我們知道MongoDB雖然沒有現(xiàn)成觸發(fā)器,但是它能夠?qū)崿F(xiàn)主從備份,所以我們就從它的主從備份機(jī)制入手。

二、OPLOG

首先,需要以master模式來打開mongod守護(hù),命令行使用–master,或者配置文件增加master鍵為true。

此時(shí),我們可以在Mongo的系統(tǒng)庫local里見到新增的collection——oplog,此時(shí)oplog.$main里就會存儲進(jìn)oplog信息,如果此時(shí)還有充當(dāng)從數(shù)據(jù)庫的Mongo存在,就會還有一些slaves的信息,由于我們這里并不是主從同步,所以不存在這些集合。

再來看看oplog結(jié)構(gòu):

"ts" : Timestamp(6417682881216249, 1), 時(shí)間戳
"h" : NumberLong(0), 長度
"v" : 2, 
"op" : "n", 操作類型
"ns" : "", 操作的庫和集合
"o2" : "_id" update條件
"o" : {} 操作值,即document

這里需要知道op的幾種屬性:

insert,'i'
update, 'u'
remove(delete), 'd'
cmd, 'c'
noop, 'n' 空操作

從上面的信息可以看出,我們只要不斷讀取到ts來做對比,然后根據(jù)op即可判斷當(dāng)前出現(xiàn)的是什么操作,相當(dāng)于使用程序?qū)崿F(xiàn)了一個(gè)從數(shù)據(jù)庫的接收端。

三、CODE

在Github上找到了別人的實(shí)現(xiàn)方式,不過它的函數(shù)庫太老舊,所以在他的基礎(chǔ)上進(jìn)行修改。

Github地址:https://github.com/RedBeard0531/mongo-oplog-watcher

mongo_oplog_watcher.py如下:

#!/usr/bin/python
import pymongo
import re
import time
from pprint import pprint # pretty printer
from pymongo.errors import AutoReconnect

class OplogWatcher(object):
  def __init__(self, db=None, collection=None, poll_time=1.0, connection=None, start_now=True):
    if collection is not None:
      if db is None:
        raise ValueError('must specify db if you specify a collection')
      self._ns_filter = db + '.' + collection
    elif db is not None:
      self._ns_filter = re.compile(r'^%s\.' % db)
    else:
      self._ns_filter = None

    self.poll_time = poll_time
    self.connection = connection or pymongo.Connection()

    if start_now:
      self.start()

  @staticmethod
  def __get_id(op):
    id = None
    o2 = op.get('o2')
    if o2 is not None:
      id = o2.get('_id')

    if id is None:
      id = op['o'].get('_id')

    return id

  def start(self):
    oplog = self.connection.local['oplog.$main']
    ts = oplog.find().sort('$natural', -1)[0]['ts']
    while True:
      if self._ns_filter is None: 
        filter = {}
      else:
        filter = {'ns': self._ns_filter}
      filter['ts'] = {'$gt': ts}
      try:
        cursor = oplog.find(filter, tailable=True)
        while True:
          for op in cursor:
            ts = op['ts']
            id = self.__get_id(op)
            self.all_with_noop(ns=op['ns'], ts=ts, op=op['op'], id=id, raw=op)
          time.sleep(self.poll_time)
          if not cursor.alive:
            break
      except AutoReconnect:
        time.sleep(self.poll_time)

  def all_with_noop(self, ns, ts, op, id, raw):
    if op == 'n':
      self.noop(ts=ts)
    else:
      self.all(ns=ns, ts=ts, op=op, id=id, raw=raw)

  def all(self, ns, ts, op, id, raw):
    if op == 'i':
      self.insert(ns=ns, ts=ts, id=id, obj=raw['o'], raw=raw)
    elif op == 'u':
      self.update(ns=ns, ts=ts, id=id, mod=raw['o'], raw=raw)
    elif op == 'd':
      self.delete(ns=ns, ts=ts, id=id, raw=raw)
    elif op == 'c':
      self.command(ns=ns, ts=ts, cmd=raw['o'], raw=raw)
    elif op == 'db':
      self.db_declare(ns=ns, ts=ts, raw=raw)

  def noop(self, ts):
    pass

  def insert(self, ns, ts, id, obj, raw, **kw):
    pass

  def update(self, ns, ts, id, mod, raw, **kw):
    pass

  def delete(self, ns, ts, id, raw, **kw):
    pass

  def command(self, ns, ts, cmd, raw, **kw):
    pass

  def db_declare(self, ns, ts, **kw):
    pass

class OplogPrinter(OplogWatcher):
  def all(self, **kw):
    pprint (kw)
    print #newline

if __name__ == '__main__':
  OplogPrinter()

首先是實(shí)現(xiàn)一個(gè)數(shù)據(jù)庫的初始化,設(shè)定一個(gè)延遲時(shí)間(準(zhǔn)實(shí)時(shí)):

self.poll_time = poll_time
self.connection = connection or pymongo.MongoClient()

主要的函數(shù)是start() ,實(shí)現(xiàn)一個(gè)時(shí)間的比對并進(jìn)行相應(yīng)字段的處理:

def start(self):
 oplog = self.connection.local['oplog.$main']
 #讀取之前提到的庫
 ts = oplog.find().sort('$natural', -1)[0]['ts']
 #獲取一個(gè)時(shí)間邊際
 while True:
 if self._ns_filter is None:
  filter = {}
 else:
  filter = {'ns': self._ns_filter}
 filter['ts'] = {'$gt': ts}
 try:
  cursor = oplog.find(filter)
  #對此時(shí)間之后的進(jìn)行處理
  while True:
  for op in cursor:
   ts = op['ts']
   id = self.__get_id(op)
   self.all_with_noop(ns=op['ns'], ts=ts, op=op['op'], id=id, raw=op)
   #可以指定處理插入監(jiān)控,更新監(jiān)控或者刪除監(jiān)控等
  time.sleep(self.poll_time)
  if not cursor.alive:
   break
 except AutoReconnect:
  time.sleep(self.poll_time)

循環(huán)這個(gè)start函數(shù),在all_with_noop這里就可以編寫相應(yīng)的監(jiān)控處理邏輯。

這樣就可以實(shí)現(xiàn)一個(gè)簡易的準(zhǔn)實(shí)時(shí)Mongo數(shù)據(jù)庫操作監(jiān)控器,下一步就可以配合其他操作來對新入庫的程序進(jìn)行相應(yīng)處理。

總結(jié)

以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作能帶來一定的幫助,如果有疑問大家可以留言交流,謝謝大家對腳本之家的支持。

您可能感興趣的文章:
  • 關(guān)于單臺MongoDB實(shí)例開啟Oplog的過程詳解
  • Mongodb的oplog詳解
  • mongodb中oplog介紹和格式詳析

標(biāo)簽:自貢 遼陽 泰安 雞西 玉林 廈門 無錫 興安盟

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《利用MongoDB中oplog機(jī)制實(shí)現(xiàn)準(zhǔn)實(shí)時(shí)數(shù)據(jù)的操作監(jiān)控》,本文關(guān)鍵詞  利用,MongoDB,中,oplog,機(jī)制,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《利用MongoDB中oplog機(jī)制實(shí)現(xiàn)準(zhǔn)實(shí)時(shí)數(shù)據(jù)的操作監(jiān)控》相關(guān)的同類信息!
  • 本頁收集關(guān)于利用MongoDB中oplog機(jī)制實(shí)現(xiàn)準(zhǔn)實(shí)時(shí)數(shù)據(jù)的操作監(jiān)控的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章