微服務註冊管理中心的未來之星:Nacos

2020-10-04 11:00:34

1.為什麼Nacos?

Nacos是一款微服務的註冊和設定管理中心開源軟體,是阿里巴巴貢獻給開源社群的,其遵循Apache 2.0的開源協定,可以免費的使用於商業環境,而且阿里雲上已經全面支援。
在這裡插入圖片描述
其Github地址https://github.com/alibaba/nacos ,目前此開源專案已經有14.4k個星星了,已經非常厲害了!
在這裡插入圖片描述

相對於Eureka,其不僅僅是微服務的註冊中心,還能同時擔任設定管理中心,介面也非常的友好。琦彥大神在其部落格《微服務:註冊中心ZooKeeper、Eureka、Consul 、Nacos對比》 一文中對這些註冊中心進行了詳細的對比,對比的標準就是分散式系統設計當中的2個黃金定律:

  • CAP
1. 一致性(Consistency) (所有節點在同一時間具有相同的資料)
2. 可用性(Availability) (保證每個請求不管成功或者失敗都有響應)
3. 分隔容忍(Partition tolerance) (系統中任意資訊的丟失或失敗不會
影響系統的繼續運作)

具體的CAP理論,網上的資料很多就不在贅述。

  • BASE
    eBay的架構師Dan Pritchett源於對大規模分散式系統的實踐總結,在ACM上發表文章提出BASE理論,BASE理論是對CAP理論的延伸,核心思想是即使無法做到強一致性(Strong Consistency,CAP的一致性就是強一致性),但應用可以採用適合的方式達到最終一致性(Eventual Consitency)。
    具體資訊,大家可以參考《分散式系統的BASE理論》

琦彥大神在其部落格《微服務:註冊中心ZooKeeper、Eureka、Consul 、Nacos對比》 一文中,對這些註冊中心的對比簡單明瞭。可以用下面的一張表格表示。
在這裡插入圖片描述
從上面的表格中以及Nacos自身的官方檔案 可以知道,其不僅支援SpringCloud全家桶中的SpringCloud的RESTful Service, 更支援K8S,gPRC,而且和阿里自己的一套微服務實現框架Dubbo也能無縫整合。
在這裡插入圖片描述
說了這麼多,下面就一探其真容。其基本架構如下:
在這裡插入圖片描述
其主要元件是Nacos 伺服器和Nacos的控制檯。截至2020年10月2日,其最新的版本的是1.3.2,可以到此地址下載

注:因為Github上面下載Nacos的安裝包的速度比較慢,筆者把最新的上傳到了CSDN,零CSDN積分供大家下載,CSDN下載地址https://download.csdn.net/download/chancein007/12909981
在這裡插入圖片描述

2. Nacos 安裝

Nacos的安裝還是比較簡單的,如果是單機版本的安裝更簡單。下載一個最新版本的Nacos,其預設支援Windows和Linux, 以Windows為例子。比如,筆者下載並解壓縮到了E:\bigdata\nacos-server-1.3.2\nacos\bin,直接進入這個目錄,輸入下面的命令:

startup.cmd -m standalone

注意:一定要加啟動模式,預設情況下是叢集模式啟動。啟動的Log如下:

E:\bigdata\nacos-server-1.3.2\nacos\bin>startup.cmd -m standalone
"nacos is starting with standalone"

         ,--.
       ,--.'|
   ,--,:  : |                                           Nacos 1.3.2
,`--.'`|  ' :                       ,---.               Running in stand alone mode, All function modules
|   :  :  | |                      '   ,'\   .--.--.    Port: 8848
:   |   \ | :  ,--.--.     ,---.  /   /   | /  /    '   Pid: 13112
|   : '  '; | /       \   /     \.   ; ,. :|  :  /`./   Console: http://192.168.79.1:8848/nacos/index.html
'   ' ;.    ;.--.  .-. | /    / ''   | |: :|  :  ;_
|   | | \   | \__\/: . ..    ' / '   | .; : \  \    `.      https://nacos.io
'   : |  ; .' ," .--.; |'   ; :__|   :    |  `----.   \
|   | '`--'  /  /  ,.  |'   | '.'|\   \  /  /  /`--'  /
'   : |     ;  :   .'   \   :    : `----'  '--'.     /
;   |.'     |  ,     .-./\   \  /            `--'---'
'---'        `--`---'     `----'

2020-10-03 00:15:00,292 INFO Bean 'org.springframework.security.config.annotation.configuration.ObjectPostProcessorConfiguration' of type [org.springframework.security.config.annotation.configuration.ObjectPostProcessorConfiguration$$EnhancerBySpringCGLIB$$c7035815] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)

2020-10-03 00:15:00,437 INFO Bean 'objectPostProcessor' of type [org.springframework.security.config.annotation.configuration.AutowireBeanFactoryObjectPostProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)

2020-10-03 00:15:00,445 INFO Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@7674b62c' of type [org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)

2020-10-03 00:15:00,450 INFO Bean 'org.springframework.security.config.annotation.method.configuration.GlobalMethodSecurityConfiguration' of type [org.springframework.security.config.annotation.method.configuration.GlobalMethodSecurityConfiguration$$EnhancerBySpringCGLIB$$ebd7fac7] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)

2020-10-03 00:15:00,462 INFO Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)

2020-10-03 00:15:01,578 INFO Tomcat initialized with port(s): 8848 (http)

2020-10-03 00:15:01,827 INFO Root WebApplicationContext: initialization completed in 8794 ms

2020-10-03 00:15:17,800 INFO Initializing ExecutorService 'applicationTaskExecutor'

2020-10-03 00:15:18,092 INFO Adding welcome page: class path resource [static/index.html]

2020-10-03 00:15:18,954 INFO Creating filter chain: Ant [pattern='/**'], []

2020-10-03 00:15:19,050 INFO Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@56db847e, org.springframework.security.web.context.SecurityContextPersistenceFilter@5c1bd44c, org.springframework.security.web.header.HeaderWriterFilter@1eef9aef, org.springframework.security.web.csrf.CsrfFilter@2e5c7f0b, org.springframework.security.web.authentication.logout.LogoutFilter@6e57e95e, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@18cc679e, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@67ef029, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@740abb5, org.springframework.security.web.session.SessionManagementFilter@5db99216, org.springframework.security.web.access.ExceptionTranslationFilter@4de025bf]

2020-10-03 00:15:19,286 INFO Exposing 2 endpoint(s) beneath base path '/actuator'

2020-10-03 00:15:19,335 INFO Initializing ExecutorService 'taskScheduler'

2020-10-03 00:15:19,516 INFO Tomcat started on port(s): 8848 (http) with context path '/nacos'

2020-10-03 00:15:19,525 INFO Nacos Log files: E:\bigdata\nacos-server-1.3.2\nacos\logs

2020-10-03 00:15:19,529 INFO Nacos Log files: E:\bigdata\nacos-server-1.3.2\nacos\conf

2020-10-03 00:15:19,529 INFO Nacos Log files: E:\bigdata\nacos-server-1.3.2\nacos\data

2020-10-03 00:15:19,529 INFO Nacos started successfully in stand alone mode. use embedded storage

2020-10-03 00:15:22,099 INFO Initializing Servlet 'dispatcherServlet'

2020-10-03 00:15:22,117 INFO Completed initialization in 18 ms

2020-10-03 00:19:42,321 WARN [NotifyCenter] Start destroying Publisher

2020-10-03 00:19:42,321 WARN [ThreadPoolManager] Start destroying ThreadPool

2020-10-03 00:19:42,321 WARN [NotifyCenter] Destruction of the end

2020-10-03 00:19:42,321 INFO Shutting down ExecutorService 'taskScheduler'

2020-10-03 00:19:42,331 INFO Shutting down ExecutorService 'applicationTaskExecutor'

2020-10-03 00:20:06,685 WARN [ThreadPoolManager] Destruction of the end

啟動後就能開啟網站地址:http://localhost:8848/nacos
預設使用者名稱和密碼是:nacos/nacos
在左邊的選單欄裡面,我看可以到看到其有設定管理和服務管理
在這裡插入圖片描述
如果需要把設定資訊儲存到資料庫,則需要修改其applications.properties檔案。比如下面,筆者準備用mysql

server.servlet.contextPath=/nacos
server.port=8848
spring.datasource.platform=mysql
db.num=1
db.url.0=jdbc:mysql://127.0.0.1:3306/nacos?characterEncoding=utf8&connectTimeout=1000&socketTimeout=3000&autoReconnect=true&useUnicode=true&useSSL=false&serverTimezone=UTC
db.user=nacos
db.password=nacos
nacos.naming.empty-service.auto-clean=true
nacos.naming.empty-service.clean.initial-delay-ms=50000
nacos.naming.empty-service.clean.period-time-ms=30000
management.metrics.export.elastic.enabled=false
management.metrics.export.influx.enabled=false
server.tomcat.accesslog.enabled=true
server.tomcat.accesslog.pattern=%h %l %u %t "%r" %s %b %D %{User-Agent}i
server.tomcat.basedir=
nacos.security.ignore.urls=/,/error,/**/*.css,/**/*.js,/**/*.html,/**/*.map,/**/*.svg,/**/*.png,/**/*.ico,/console-fe/public/**,/v1/auth/**,/v1/console/health/**,/actuator/**,/v1/console/server/**
### The auth system to use, currently only 'nacos' is supported:
nacos.core.auth.system.type=nacos
### If turn on auth system:
nacos.core.auth.enabled=false
### The token expiration in seconds:
nacos.core.auth.default.token.expire.seconds=18000
### The default token:
nacos.core.auth.default.token.secret.key=SecretKey012345678901234567890123456789012345678901234567890123456789
### Turn on/off caching of auth information. By turning on this switch, the update of auth information would have a 15 seconds delay.
nacos.core.auth.caching.enabled=true
#*************** Istio Related Configurations ***************#
### If turn on the MCP server:
nacos.istio.mcp.server.enabled=false

注意:修改上面的檔案後,需要實現自己建立一張nacos的資料庫表,並執行其conf資料夾下的nacos-mysql.sql資料庫指令碼,比如筆者本機:E:\bigdata\nacos-server-1.3.2\nacos\conf\nacos-mysql.sql
在這裡插入圖片描述
執行完SQL語句後,其會有下面的表格出現:
在這裡插入圖片描述
筆者新增一個使用者devops,這個時候,我們在資料庫裡面就能看到這個新新增的使用者了。
在這裡插入圖片描述

在這裡插入圖片描述

3. Nacos與SpringCloud的整合

在其官方網站 提供了詳細的步驟。
而且其官方網站也提供了一個Github的程式碼的地址

4. 總結

本文主要和大家一起回顧了一下,為什麼選擇Nacos產品作為註冊中心,因為其不僅僅提供了註冊中心的功能,也提供了設定管理中心的功能,而且其產品也在生產環境中得到驗證。其管理介面的功能也做的非常的好,還自帶許可權管理功能。筆者強烈推薦大家,可以在自己的專案嘗試用一下~

參考文獻:
https://nacos.io/zh-cn/docs/quick-start-spring-cloud.html
https://blog.csdn.net/fly910905/article/details/100023415
http://www.hollischuang.com/archives/672