是不是有這么一個場景,對外提供一堆數據或者是要返回給用戶一個結果。但是不想把內部的一些數據和邏輯暴露給對方。。。簡單點來說,就是想以服務的方式對外提供一個接口。對于這種有很多處理方式,RPC,搭建一個web服務啥的。。。。但是這些畢竟都太重量級了,操作起來很麻煩。我這里給出的一種非常easy的方式來處理。使用bottle解決問題。
需求: 檢查一個zookeeper服務中的某些節點是否存在,如果存在返回OK,不存在則給出不存的節點信息。要求返回的信息是和pyunit的結果信息一致。
實現環境:
1. python 2.7 以及自帶的pyunit
2. bottle 作為一個python的簡易服務器
pip install bottle
3. kazoo 一個python的zookeeper客戶端
pip install kazoo
1. 創建一個python的測試類 zk_check.py
-*- coding: utf-8 -*- from kazoo.client import KazooClient import unittest class zktest(unittest.TestCase): def runTest(self): zknamespace = “/app/zktest_performance_1” zkhosts = “127.0.0.1:2181,127.0.0.1:2182,127.0.0.1:2183” ZKTEST_DRIVERS = [“ip1”, “ip2”] ZKTEST_NODES = [“ip3”, “ip4”, “ip5”, “ip6”] driverChildren = [] nodeChildren = [] badDrivers = [] badNodes = [] # checking zk = KazooClient(hosts=zkhosts, read_only=True) zk.start() driverFatherPath = zknamespace + “/status/drivers” nodeFatherPath = zknamespace + “/status/nodes” if zk.exists(driverFatherPath): driverChildren = zk.get_children(driverFatherPath) if len(driverChildren) > for driver in zktest_DRIVERS: if driver not in driverChildren: badDrivers.append(driver) if zk.exists(nodeFatherPath): nodeChildren = zk.get_children(nodeFatherPath) if len(nodeChildren) > for node in zktest_NODES: if node not in nodeChildren: badNodes.append(node) zk.stop() if (len(badNodes)==0) and (len(badDrivers)==0): self.assertEquals(1,1,”pass”) else: if len(badDrivers) > 0: self.assertEquals(1,2,'len : %d , error : %s' % (len(badDrivers),badDrivers)) if len(badNodes) > 0: self.assertEquals(1,2,'len : %d , error : %s' % (len(badNodes),badNodes)) if __name__ == ‘__main__': unittest.main()
2. 寫一個bottle服務,將結果輸出
import commands from bottle import route, run, template @route(‘/alisa') def index(): command = “python /Users/metaboy/script/zk_check.py” #output = os.popen(command) return template(‘<b>{{text}}</b>', text=commands.getoutput(command)) run(host='localhost', port=8888) 3. 后臺啟動bottle服務,提供外部訪問ip
現在可以直接通過 http://localhost:8888/alisa 進行訪問。
新聞熱點
疑難解答
圖片精選