欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Python 使用 consul 做服務(wù)發(fā)現(xiàn)示例詳解

 更新時間:2021年03月10日 10:09:56   作者:雙鬼帶單  
這篇文章主要介紹了Python 使用 consul 做服務(wù)發(fā)現(xiàn)示例詳解,本文給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下

前言

前面一章講了微服務(wù)的一些優(yōu)點(diǎn)和缺點(diǎn),那如何做到

一、目標(biāo)

二、使用步驟

1. 安裝 consul

我們可以直接使用官方提供的二進(jìn)制文件來進(jìn)行安裝部署,其官網(wǎng)地址為 https://www.consul.io/downloads

在這里插入圖片描述

下載后為可執(zhí)行文件,在我們開發(fā)試驗過程中,可以直接使用 consul agent -dev 命令來啟動一個單節(jié)點(diǎn)的 consul

在啟動的打印日志中可以看到 agent: Started HTTP server on 127.0.0.1:8500 (tcp), 我們可以在瀏覽器直接訪問 127.0.0.1:8500 即可看到如下

在這里插入圖片描述

這里我們的 consul 就啟動成功了

2. 服務(wù)注冊

在網(wǎng)絡(luò)編程中,一般會提供項目的 IP、PORT、PROTOCOL,在服務(wù)治理中,我們還需要知道對應(yīng)的服務(wù)名、實(shí)例名以及一些自定義的擴(kuò)展信息

在這里使用 ServiceInstance 接口來規(guī)定注冊服務(wù)時必須的一些信息

class ServiceInstance:

 def __init__(self, service_id: str, host: str, port: int, secure: bool = False, metadata: dict = None,
   instance_id: str = None):
 self.service_id = service_id
 self.host = host
 self.port = port
 self.secure = secure
 self.metadata = metadata
 self.instance_id = instance_id

 def get_instance_id(self):
 return

定義基類

在上面規(guī)定了需要注冊的服務(wù)的必要信息,下面定義下服務(wù)注冊和剔除的方法,方便以后實(shí)現(xiàn) Eureka 和 Redis 的方式

import abc


class ServiceRegistry(abc.ABC):

 @abc.abstractmethod
 def register(self, service_instance: ServiceInstance):
 pass

 @abc.abstractmethod
 def deregister(self):
 pass

具體實(shí)現(xiàn)

因為 consul 提供了 http 接口來對consul 進(jìn)行操作,我們也可以使用 http 請求方式進(jìn)行注冊和剔除操作,具體 http 接口文檔見 https://www.consul.io/api-docs, consul 并沒有提供 Python 語言的實(shí)現(xiàn),這里使用 python-consul 來訪問 consul

import consul


class ConsulServiceRegistry(ServiceRegistry):
 _consul = None
 _instance_id = None

 def __init__(self, host: str, port: int, token: str = None):
 self.host = host
 self.port = port
 self.token = token
 self._consul = consul.Consul(host, port, token=token)

 def register(self, service_instance: ServiceInstance):
 schema = "http"
 if service_instance.secure:
  schema = "https"
 check = consul.Check.http(f'{schema}:{service_instance.host}:{service_instance.port}/actuator/health', "1s",
     "3s", "10s")
 self._consul.agent.service.register(service_instance.service_id,
      service_id=service_instance.instance_id,
      address=service_instance.host,
      port=service_instance.port,
      check=check)
 self._instance_id = service_instance.instance_id

 def deregister(self):
 if self._instance_id:
  self._consul.agent.service.deregister(service_id=self._instance_id)
  self._instance_id = None

3. 服務(wù)發(fā)現(xiàn)

在服務(wù)發(fā)現(xiàn)中,一般會需要兩個方法

  • 獲取所有的服務(wù)列表
  • 獲取指定的服務(wù)的所有實(shí)例信息

基類定義

import abc


class DiscoveryClient(abc.ABC):

 @abc.abstractmethod
 def get_services(self) -> list:
 pass

 @abc.abstractmethod
 def get_instances(self, service_id: str) -> list:
 pass

具體實(shí)現(xiàn)

來實(shí)現(xiàn)一下

這里是簡化版,所以一些參數(shù)直接寫死了,如果需要可以適當(dāng)修改

import consul


class ConsulServiceDiscovery(DiscoveryClient):

 _consul = None

 def __init__(self, host: str, port: int, token: str = None):
 self.host = host
 self.port = port
 self.token = token
 self._consul = consul.Consul(host, port, token=token)

 def get_services(self) -> list:
 return self._consul.catalog.services()[1].keys()

 def get_instances(self, service_id: str) -> list:
 origin_instances = self._consul.catalog.service(service_id)[1]
 result = []
 for oi in origin_instances:
  result.append(ServiceInstance(
  oi.get('ServiceName'),
  oi.get('ServiceAddress'),
  oi.get('ServicePort'),
  oi.get('ServiceTags'),
  oi.get('ServiceMeta'),
  oi.get('ServiceID'),
  ))
 return result

4. 測試用例

import unittest
from random import random

class MyTestCase(unittest.TestCase):
 def test_consul_register(self):
 instance = ServiceInstance("abc", "127.0.0.1", 8000, instance_id=f'abc_{random()}')

 registry = ConsulServiceRegistry("127.0.0.1", 8500)
 discovery = ConsulServiceDiscovery("127.0.0.1", 8500)
 registry.register(instance)
 print(discovery.get_services())
 print(discovery.get_instances("abc"))
 self.assertEqual(True, True)
if __name__ == '__main__':
 unittest.main()

總結(jié)

通過使用 consul api 我們可以簡單的實(shí)現(xiàn)基于 consul 的服務(wù)發(fā)現(xiàn),在通過結(jié)合 http rpc 就可簡單的實(shí)現(xiàn)服務(wù)的調(diào)用,下面一章來簡單講下 go 如何發(fā)起 http 請求,為我們做 rpc 做個鋪墊

具體代碼見 https://github.com/zhangyunan1994/gimini

參考

https://www.consul.io/api-docs

https://github.com/hashicorp/consul/tree/master/api

到此這篇關(guān)于Python 使用 consul 做服務(wù)發(fā)現(xiàn)的文章就介紹到這了,更多相關(guān)Python 使用 consul 服務(wù)內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

  • python+JS?實(shí)現(xiàn)逆向?SMZDM?的登錄加密

    python+JS?實(shí)現(xiàn)逆向?SMZDM?的登錄加密

    這篇文章主要介紹了python+JS?實(shí)現(xiàn)逆向?SMZDM?的登錄加密,文章通過利用SMZDM平臺展開詳細(xì)的內(nèi)容介紹,需要的小伙伴可以參考一下
    2022-05-05
  • 通過實(shí)例解析Python return運(yùn)行原理

    通過實(shí)例解析Python return運(yùn)行原理

    這篇文章主要介紹了通過實(shí)例解析Python return運(yùn)行原理,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友可以參考下
    2020-03-03
  • Go/Python/Erlang編程語言對比分析及示例代碼

    Go/Python/Erlang編程語言對比分析及示例代碼

    這篇文章主要介紹了Go/Python/Erlang編程語言對比分析及示例代碼,本文重點(diǎn)是給大家介紹go語言,從語言對比分析的角度切入介紹,需要的朋友可以參考下
    2018-04-04
  • 老生常談python中的重載

    老生常談python中的重載

    所謂重載,就是多個相同函數(shù)名的函數(shù),根據(jù)傳入的參數(shù)個數(shù),參數(shù)類型而執(zhí)行不同的功能。所以函數(shù)重載實(shí)質(zhì)上是為了解決編程中參數(shù)可變不統(tǒng)一的問題。這篇文章主要介紹了老生常談python中的重載,需要的朋友可以參考下
    2018-11-11
  • tensorflow 大于某個值為1,小于為0的實(shí)例

    tensorflow 大于某個值為1,小于為0的實(shí)例

    這篇文章主要介紹了tensorflow 大于某個值為1,小于為0的實(shí)例,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2020-06-06
  • pygame游戲之旅 按鈕上添加文字的方法

    pygame游戲之旅 按鈕上添加文字的方法

    這篇文章主要為大家詳細(xì)介紹了pygame游戲之旅的第11篇,按鈕上添加文字的方法,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2018-11-11
  • python 合并多個excel中同名的sheet

    python 合并多個excel中同名的sheet

    這篇文章主要介紹了python 如何合并多個excel中同名的sheet,幫助大家更好的利用python處理excel表格,感興趣的朋友可以了解下
    2021-01-01
  • 詳解python polyscope庫的安裝和例程

    詳解python polyscope庫的安裝和例程

    這篇文章主要介紹了python polyscope庫的安裝和例程,本文給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2020-11-11
  • Python入門之字符串操作詳解

    Python入門之字符串操作詳解

    字符串是Pyhon常用的數(shù)據(jù)類型,這篇文章主要為大家詳細(xì)介紹一下python字符串的一些常見實(shí)用操作,需要的朋友可以參考下
    2022-09-09
  • Python實(shí)現(xiàn)DDos攻擊實(shí)例詳解

    Python實(shí)現(xiàn)DDos攻擊實(shí)例詳解

    這篇文章主要給大家介紹了關(guān)于Python實(shí)現(xiàn)DDos攻擊的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2019-02-02

最新評論