gpt4 book ai didi

algorithm - 为 WSO2 ESB 编写负载均衡算法

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:01:13 24 4
gpt4 key购买 nike

我正面临用于自定义负载平衡端点的负载平衡算法实现。

在此文档页面上: http://docs.wso2.org/display/ESB470/Load-balance+Endpoint

我读了:

Algorithm - Either a default "Round-robin" or custom loaded algorithm of the group. See more information about this algorithm in the article.

其中“文章”是指向此页面的链接:

http://supunk.blogspot.it/2010/02/writing-load-balance-algorithm-for-wso2.html

但引用的文章并不完整,也没有说明算法开发的任何内容。谁能给我一个有效的例子?

最佳答案

您可以使用以下示例发送多个请求,以使用循环算法在不同端点之间共享。

<?xml version="1.0" encoding="UTF-8"?>
<proxy xmlns="http://ws.apache.org/ns/synapse"
name="TestLoadBalance"
transports="https,http"
statistics="disable"
trace="disable"
startOnLoad="true">
<target>
<endpoint>
<loadbalance algorithm="org.apache.synapse.endpoints.algorithms.RoundRobin">
<endpoint>
<address uri="http://localhost:9000/services/SimpleStockQuoteService/"/>
</endpoint>
<endpoint>
<address uri="http://localhost:9001/services/SimpleStockQuoteService/"/>
</endpoint>
<endpoint>
<address uri="http://localhost:9002/services/SimpleStockQuoteService/"/>
</endpoint>
</loadbalance>
</endpoint>
</target>
<description/>
</proxy>

关于algorithm - 为 WSO2 ESB 编写负载均衡算法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20169600/

24 4 0
文章推荐: java - 数字总和问题
文章推荐: php - get_headers 不一致
文章推荐: PHP解析关联数组
文章推荐: java - KMP DFA前缀函数
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com