通道长连接分配问题

netty服务端给了N个连接,我是客户端,有M个服务器,想要让N个连接平均分配在M个服务器上。例如,如果N为5,M为3,则最好是两台台服务器2个连接、一台服务器1个连接。N为1,M为3的话,1台服务器1个连接,其他服务器0个连接。算法要稳定,即如果N和M固定的话每次计算的结果要是一样的。可以借助服务器内网ip作为服务器标识。

请给出java算法,和不同的N和M值,对应的不同的结果。

java 复制代码
import java.util.*;

public class ConnectionDistributor {

    public static Map<String, List<Integer>> distributeConnections(List<String> serverIps, int connectionCount) {
        Map<String, List<Integer>> distribution = new HashMap<>();
        int serverCount = serverIps.size();
        
        // Initialize the map with empty lists for each server IP
        for (String ip : serverIps) {
            distribution.put(ip, new ArrayList<>());
        }

        for (int i = 0; i < connectionCount; i++) {
            // Use the modulo operation to ensure even distribution
            String server = serverIps.get(i % serverCount);
            distribution.get(server).add(i + 1); // Connection IDs are 1-based
        }

        return distribution;
    }

    public static void main(String[] args) {
        List<String> serverIps = Arrays.asList("192.168.0.1", "192.168.0.2", "192.168.0.3");

        int[] connectionCounts = {1, 5, 10, 15, 20};
        for (int connectionCount : connectionCounts) {
            Map<String, List<Integer>> result = distributeConnections(serverIps, connectionCount);
            System.out.println("For " + connectionCount + " connections:");
            for (Map.Entry<String, List<Integer>> entry : result.entrySet()) {
                System.out.println("Server " + entry.getKey() + " has connections: " + entry.getValue());
            }
            System.out.println();
        }
    }
}

执行结果

java 复制代码
For 1 connections:
Server 192.168.0.2 has connections: []
Server 192.168.0.1 has connections: [1]
Server 192.168.0.3 has connections: []

For 5 connections:
Server 192.168.0.2 has connections: [2, 5]
Server 192.168.0.1 has connections: [1, 4]
Server 192.168.0.3 has connections: [3]

For 10 connections:
Server 192.168.0.2 has connections: [2, 5, 8]
Server 192.168.0.1 has connections: [1, 4, 7, 10]
Server 192.168.0.3 has connections: [3, 6, 9]

For 15 connections:
Server 192.168.0.2 has connections: [2, 5, 8, 11, 14]
Server 192.168.0.1 has connections: [1, 4, 7, 10, 13]
Server 192.168.0.3 has connections: [3, 6, 9, 12, 15]

For 20 connections:
Server 192.168.0.2 has connections: [2, 5, 8, 11, 14, 17, 20]
Server 192.168.0.1 has connections: [1, 4, 7, 10, 13, 16, 19]
Server 192.168.0.3 has connections: [3, 6, 9, 12, 15, 18]
相关推荐
跟着珅聪学java1 小时前
spring boot +Elment UI 上传文件教程
java·spring boot·后端·ui·elementui·vue
我命由我123451 小时前
Spring Boot 自定义日志打印(日志级别、logback-spring.xml 文件、自定义日志打印解读)
java·开发语言·jvm·spring boot·spring·java-ee·logback
lilye661 小时前
程序化广告行业(55/89):DMP与DSP对接及数据统计原理剖析
java·服务器·前端
战族狼魂5 小时前
CSGO 皮肤交易平台后端 (Spring Boot) 代码结构与示例
java·spring boot·后端
xyliiiiiL6 小时前
ZGC初步了解
java·jvm·算法
杉之6 小时前
常见前端GET请求以及对应的Spring后端接收接口写法
java·前端·后端·spring·vue
hycccccch7 小时前
Canal+RabbitMQ实现MySQL数据增量同步
java·数据库·后端·rabbitmq
天天向上杰8 小时前
面基JavaEE银行金融业务逻辑层处理金融数据类型BigDecimal
java·bigdecimal
请来次降维打击!!!8 小时前
优选算法系列(5.位运算)
java·前端·c++·算法
用键盘当武器的秋刀鱼8 小时前
springBoot统一响应类型3.5.1版本
java·spring boot·后端