背景:我有一个python
模块设置抓住从流API JSON对象,并使用pymongo存储它们(一次25批量插入)在MongoDB中。 为了便于比较,我也有一个bash命令来curl
来自同一数据流的API和pipe
它mongoimport
。 无论是在单独的集合,这些方法存储数据。
每隔一段时间,我监视count()
的集合,以检查他们表现如何。
到目前为止,我看到了python
模块由后面约1000 JSON对象落后curl | mongoimport
curl | mongoimport
方法。
问题:我如何才能优化我python
模块为〜与同步curl | mongoimport
curl | mongoimport
?
我不能用tweetstream
,因为我不使用Twitter的API,但第三方流媒体服务。
可能有人请帮助我在这里?
Python
模块:
class StreamReader:
def __init__(self):
try:
self.buff = ""
self.tweet = ""
self.chunk_count = 0
self.tweet_list = []
self.string_buffer = cStringIO.StringIO()
self.mongo = pymongo.Connection(DB_HOST)
self.db = self.mongo[DB_NAME]
self.raw_tweets = self.db["raw_tweets_gnip"]
self.conn = pycurl.Curl()
self.conn.setopt(pycurl.ENCODING, 'gzip')
self.conn.setopt(pycurl.URL, STREAM_URL)
self.conn.setopt(pycurl.USERPWD, AUTH)
self.conn.setopt(pycurl.WRITEFUNCTION, self.handle_data)
self.conn.perform()
except Exception as ex:
print "error ocurred : %s" % str(ex)
def handle_data(self, data):
try:
self.string_buffer = cStringIO.StringIO(data)
for line in self.string_buffer:
try:
self.tweet = json.loads(line)
except Exception as json_ex:
print "JSON Exception occurred: %s" % str(json_ex)
continue
if self.tweet:
try:
self.tweet_list.append(self.tweet)
self.chunk_count += 1
if self.chunk_count % 1000 == 0
self.raw_tweets.insert(self.tweet_list)
self.chunk_count = 0
self.tweet_list = []
except Exception as insert_ex:
print "Error inserting tweet: %s" % str(insert_ex)
continue
except Exception as ex:
print "Exception occurred: %s" % str(ex)
print repr(self.buff)
def __del__(self):
self.string_buffer.close()
谢谢阅读。