2 Answers
So yes, the value can be anything between the values however, what it does is takes a sum of all of the records and then split it accordingly.
For example:
Record A – 5
Record B – 10
Twice as much traffic will be sent to record B than A.
Record A – 69
Record B – 138
Twice as much traffic will be sent to record B than A.
- Side note: If any of the values are 0 they are not taken into consideration, or if they all are 0 the traffic is distributed evenly.
https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/resource-record-sets-values-weighted.html
GetCertifyHere offers you excellent study material for the certification exam with a 100% guarantee to help you pass the exam efficiently.
Visit This Link For Information: https://www.getcertifyhere.com/
If there are only two records to direct traffic to the same site, we don’t need to specify B.
Excerpt from AWS documentatoin states that..
For example, if you want to send a tiny portion of your traffic to one resource and the rest to another resource, you might specify weights of 1 and 255. The resource with a weight of 1 gets 1/256th of the traffic (1/(1+255)), and the other resource gets 255/256ths (255/(1+255)). You can gradually change the balance by changing the weights. If you want to stop sending traffic to a resource, you can change the weight for that record to 0.
How does the routing the "other" instance work in that case ?