前言

前些年写过分布式任务调度平台XXL-JOB,本文补充一下高可用的调度中心,也就是集群版的调度平台,这个其实挺简单的!就连官网也就几个字!
在这里插入图片描述

环境准备

  • MySQL
  • Nginx/LSB
  • 多台服务器

Nginx反向代理

这个比较简单,使用Docker搭建就行了,简单把流程跑通即可,线上的话可以采用阿里云的LSB做代理,
修改配置

user  nginx;
worker_processes  auto;

error_log  /var/log/nginx/error.log notice;
pid        /var/run/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    keepalive_timeout  65;

    #gzip  on;

      upstream job{                                                        
	  	  server xxx.xxx.xxx.x:38100;# job调度服务A
          server xxx.xxx.xxx.x:38100;# job调度服务B
      }

      #定会任务调度中心
      server {
        listen 8899;
        server_name _;
        rewrite ^(.*)\#(.*)$ $1#$2 redirect;
    	location / {
             proxy_pass http://job;
        }
        
    }
  
  
    server {
        listen 80;
	server_name _;
        rewrite ^(.*)\#(.*)$ $1#$2 redirect;
    	location /{`在这里插入代码片`
	    index  index.html index.htm; 
            root   /usr/share/nginx/html; 
        }
    }



    include /etc/nginx/conf.d/*.conf;
}

启动Nginx容器

docker run -d  -p 8899:8899 -p 80:80 --name nginx  -v /data/nginx/www:/usr/share/nginx/html -v /data/nginx/conf/nginx.conf:/etc/nginx/nginx.conf  -v /data/nginx/logs:/var/log/nginx nginx

MySQL

MySQL没有什么需要特殊处理的,只需要调度中心保持同一个即可

执行器

在这里插入图片描述

Logo

权威|前沿|技术|干货|国内首个API全生命周期开发者社区

更多推荐