SpringCloudAlibaba学习实战

一、高可用nacos搭建

搭建方案:使用haproxy做为nacos节点的负载均衡器,部署三个nacos节点,分别是192.168.200.133、192.168.200.134、192.168.200.135,负载均衡端口是16443,各个nacos节点的端口是8850

高可用server端 nacos配置

下载压缩包

分别上传到192.168.200.133、192.168.200.134、192.168.200.135,并解压
各个节点配置host
vim /etc/hosts

这里是133的节点的host

各个节点都进入nacos的config目录配置文件,修改cluster.conf
然后在修改application..properties

启动mysql,这里我是用docker启动的,然后在mysql下创建nacos_config表

启动各个节点的nacos

sh /home/software/nacos-8850/bin/startup.sh

haproxy配置

 cat /etc/haproxy/haproxy.cfg

global
    # to have these messages end up in /var/log/haproxy.log you will
    # need to:
    #
    # 1) configure syslog to accept network log events.  This is done
    #    by adding the '-r' option to the SYSLOGD_OPTIONS in
    #    /etc/sysconfig/syslog
    #
    # 2) configure local2 events to go to the /var/log/haproxy.log
    #   file. A line like the following can be added to
    #   /etc/sysconfig/syslog
    #
    #    local2.*                       /var/log/haproxy.log
    #
    log         127.0.0.1 local2

    chroot      /var/lib/haproxy
    pidfile     /var/run/haproxy.pid
    maxconn     4000
    user        haproxy
    group       haproxy
    daemon

    # turn on stats unix socket
    stats socket /var/lib/haproxy/stats

#---------------------------------------------------------------------
# common defaults that all the 'listen' and 'backend' sections will
# use if not designated in their block
#---------------------------------------------------------------------
defaults
    mode                    http
    log                     global
    option                  httplog
    option                  dontlognull
    option http-server-close
    option forwardfor       except 127.0.0.0/8
    option                  redispatch
    retries                 3
    timeout http-request    10s
    timeout queue           1m
    timeout connect         10s
    timeout client          1m
    timeout server          1m
    timeout http-keep-alive 10s
    timeout check           10s
    maxconn                 3000

#---------------------------------------------------------------------
# main frontend which proxys to the backends
#---------------------------------------------------------------------
frontend  app
    bind                  *:16443
    mode                   tcp
    option                 tcplog
    default_backend        app

#---------------------------------------------------------------------
# round robin balancing between the various backends
#---------------------------------------------------------------------
backend app
    balance     roundrobin
    server master133  192.168.200.133:8850 check
    server master134  192.168.200.134:8850 check
    server master135  192.168.200.135:8850 check

启动haproxy并开机自起

systemctl enable haproxy &&  systemctl start haproxy

访问http://192.168.200.133:16443/nacos/index.html,nacos的高可用完成

高可用client端 nacos配置

在同一个应用名称下部署两个节点,这里由于条件有限,我只能使用同一个节点地址下的不同端口代表不同的节点

server:
  port: 8080
spring:
  profiles: clientA01
  application:
    name: clientA
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    name: defaultDataSource
    url: jdbc:mysql://localhost:3306/employees?serverTimezone=UTC
    username: root
    password: 123456
  cloud:
    nacos:
      discovery:
        username: nacos
        password: nacos
        server-addr: 192.168.200.133:8850,192.168.200.134:8850,192.168.200.135:8850
        namespace: public
---
server:
  port: 8081
spring:
  profiles: clientA02
  application:
    name: clientA
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    name: defaultDataSource
    url: jdbc:mysql://localhost:3306/employees?serverTimezone=UTC
    username: root
    password: 123456
  cloud:
    nacos:
      discovery:
        username: nacos
        password: nacos
        server-addr: 192.168.200.133:8850,192.168.200.134:8850,192.168.200.135:8850
        namespace: public

根据不同的profile条件,选择不同的环境

分别启动clientA01和clientA02

看看nacos的前端界面,部署成功

二、集群的负载均衡器 Ribbon

springcloud已经与Ribbon进行了整合,我们只需要在RestTemplate上进行配置,Ribbon能够将注册列表的实例进行负载均衡

@SpringBootApplication
public class NacostestApplication {

    public static void main(String[] args) {
        SpringApplication.run(NacostestApplication.class, args);
    }

    @LoadBalanced
    @Bean
    public RestTemplate restTemplate() {
        return new RestTemplate();
    }
}

获取服务端口号的工具类

@Configuration
public class ServiceInfoUtil implements ApplicationListener<WebServerInitializedEvent> {
    private int serverPort;

    @Override
    public void onApplicationEvent(WebServerInitializedEvent event) {
        this.serverPort = event.getWebServer().getPort();
    }

    public int getPort() {
        return this.serverPort;
    }
}

Controller层

@RestController
@Slf4j
public class TestController {
    @Autowired
    private RestTemplate restTemplate;

    @Autowired
    private DiscoveryClient discoveryClient;

    //获取被调用服务的端口的工具类
    @Autowired
    private ServiceInfoUtil serviceInfoUtil;

    //提供给服务消费端的接口
    @GetMapping("/provide")
    public void test(){
        List<String> services = discoveryClient.getServices();
        log.info("服务消费:【{}】,端口号:【{}】",services,serviceInfoUtil.getPort());
    }

    //服务消费端的消费接口
    @GetMapping("/consummer")
    public String consummer(){
        return restTemplate.getForEntity("http://clientA/provide",String.class).getBody();
    }
}

我们启动一个消费者的服务

server:
  port: 8082
spring:
  profiles: consummerA
  application:
    name: consummerA
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    name: defaultDataSource
    url: jdbc:mysql://localhost:3306/employees?serverTimezone=UTC
    username: root
    password: 123456
  cloud:
    nacos:
      discovery:
        username: nacos
        password: nacos
        server-addr: 192.168.200.133:8850,192.168.200.134:8850,192.168.200.135:8850
        namespace: public
logging:
  config: classpath:log4j2.xml

启动消费者服务器,然后在重启两个clientA
消费端访问http://localhost:8082/consummer,服务打到了端口为8080的clientA上
消费端再次访问http://localhost:8082/consummer,服务打到了端口为8081的clientA上
证明负载均衡是生效的

三、熔断限流 sentinel

下载安装sentinel
java -jar sentinel-dashboard-1.8.0.jar

引入sentinel依赖

<dependency>
    <groupId>com.alibaba.cloud</groupId>
    <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
</dependency>

访问http://192.168.200.133:8080/,由于sentinel是懒加载,所以刚刚启动什么都看不到,只有请求了接口才能看到内容

四、调用链监控 sleuth和zipking

https://www.cnblogs.com/jiawen010/articles/10948552.html
https://www.cnblogs.com/itgaofei/p/9353054.html

curl -sSL https://zipkin.io/quickstart.sh | bash -s
nohup java -jar zipkin.jar  > zipking.log  2>&1 &

访问:http://192.168.200.133:9411/
引入依赖,由于zipkin已经包含sleuth,所以可以将sleuth的依赖移除

        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-zipkin</artifactId>
        </dependency>

配置

server:
  port: 8080
spring:
  profiles: clientA01
  application:
    name: clientA
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    name: defaultDataSource
    url: jdbc:mysql://localhost:3306/employees?serverTimezone=UTC
    username: root
    password: 123456
  cloud:
    sentinel:
      transport:
        dashboard: 192.168.200.133:8080
    nacos:
      discovery:
        username: nacos
        password: nacos
        server-addr: 192.168.200.133:8850,192.168.200.134:8850,192.168.200.135:8850
        namespace: public
  zipkin:
    base-url: http://192.168.200.133:9411
  sleuth:
    sampler:
      probability: 1.0
logging:
  config: classpath:log4j2.xml

五、服务网关 gateway

可以做到统一用户认证,达到了不需要在每个模块都做一次登录授权的功能,另外统一管理服务接口对外暴露一个统一的域名,有利于系统的后期的重构或迁移,内部服务如何变化对外部无感知,减少运维的成本

server:
  port: 8083
spring:
  application:
    name: gateway
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    name: defaultDataSource
    url: jdbc:mysql://localhost:3306/employees?serverTimezone=UTC
    username: root
    password: 123456
  cloud:
    sentinel:
      transport:
        dashboard: 192.168.200.133:8080
    nacos:
      discovery:
        username: nacos
        password: nacos
        server-addr: 192.168.200.133:8850,192.168.200.134:8850,192.168.200.135:8850
        namespace: public
    gateway:
      discovery:
        locator:
          enabled: true
      routes:
        - id: clientA
          uri: lb://clientA
          predicates:
            - Path=/clientA/**

        - id: consummerA
          uri: lb://consummerA
          predicates:
            - Path=/consummerA/**

访问:http://localhost:8083/consummerA/consummer 即可转发到consummerA应用下的/consummer接口

六、配置管理 nacos-config

spring:
  application:
    name: consummerA
  profiles: consummerA
  cloud:
    nacos:
      config:
        server-addr: 192.168.200.133:8850,192.168.200.134:8850,192.168.200.135:8850
        file-extension: yaml

到nacos上添加配置
@RestController
@Slf4j
public class TestController {
    //获取被调用服务的端口的工具类
    @Autowired
    private ServiceInfoUtil serviceInfoUtil;

    @Value("${test.config}")
    private String config;

    @GetMapping("/getconfig")
    public String getconfig(){
        return config;
    }
}

访问:http://localhost:8083/consummerA/getconfig

另外在配置中心里content-center.yaml是所有应用通用的配置,data id为content-center.yaml时,无论应用处于何种环境或者是服务名称都能拿到配置

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容