Created
November 29, 2020 05:02
-
-
Save madhur/8e84a839f9772b2e0ede429f6e0fa770 to your computer and use it in GitHub Desktop.
Taffic splitting algorithm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package trafficsplitter; | |
import java.util.ArrayList; | |
import java.util.List; | |
import java.util.Random; | |
public class Distributor implements IDistributor { | |
private int nextBucketIndex; | |
private char[] senderBuckets; | |
private Random r = new Random(); | |
private List<BucketInfo> bucketInfoList; | |
public Distributor(List<BucketInfo> bucketInfos) { | |
this.bucketInfoList = bucketInfos; | |
generate(); | |
} | |
private int getTotalWeights() { | |
int totalWeight = 0; | |
for(BucketInfo bucketInfo: bucketInfoList) { | |
totalWeight = totalWeight + bucketInfo.getWeight(); | |
} | |
return totalWeight; | |
} | |
private void generate() { | |
List<BucketInfo> flatBuckets = new ArrayList<>(); | |
int i=0; | |
for (BucketInfo bucketInfo : bucketInfoList) { | |
for (int j=0; j<bucketInfo.getWeight(); ++j) { | |
flatBuckets.add(i++, bucketInfo); | |
} | |
} | |
int totalWeights = getTotalWeights(); | |
this.senderBuckets = new char[totalWeights]; | |
i=0; | |
while (i < totalWeights) { | |
int index = r.nextInt(flatBuckets.size()); | |
senderBuckets[i++] = flatBuckets.remove(index).getBucketId(); | |
} | |
} | |
@Override | |
public char getNextBucket() { | |
this.nextBucketIndex++; | |
this.nextBucketIndex = (this.nextBucketIndex == this.senderBuckets.length)? 0: this.nextBucketIndex; | |
return senderBuckets[nextBucketIndex]; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment