-
Notifications
You must be signed in to change notification settings - Fork 51
Implement DnsAddressResolver and ResolveAsync for DNS Load Balanced clusters
#466
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
e4e9275
feature(DnsAddressResolver): implement round robind in DNS Addresses
lukas8219 f88981e
Merge branch 'rabbitmq:main' into dns-address-resolver
lukas8219 f23d48e
Fixing multiple lines linting issue
lukas8219 daa649b
formatting
Gsantomaggio d99be6c
add tag
Gsantomaggio File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| // This source code is dual-licensed under the Apache License, version | ||
| // 2.0, and the Mozilla Public License, version 2.0. | ||
| // Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries. | ||
|
|
||
| using System; | ||
| using System.Net; | ||
| using System.Threading.Tasks; | ||
|
|
||
| namespace RabbitMQ.Stream.Client | ||
| { | ||
| public class DnsAddressResolver : IAddressResolver | ||
| { | ||
| public DnsAddressResolver(DnsEndPoint endPoint) | ||
| { | ||
| EndPoint = endPoint; | ||
| Enabled = true; | ||
| } | ||
|
|
||
| public EndPoint EndPoint { get; set; } | ||
| public bool Enabled { get; set; } | ||
| [Obsolete("Deprecated. Use ResolveAsync instead.")] | ||
| public EndPoint Resolve(string address, int port) => ResolveAsync(address, port).GetAwaiter().GetResult(); | ||
| public async Task<EndPoint> ResolveAsync(string address, int port) | ||
| { | ||
| var entries = await Dns.GetHostEntryAsync(((DnsEndPoint)EndPoint).Host).ConfigureAwait(false); | ||
| var addressList = entries.AddressList; | ||
| var targetIp = addressList[Random.Shared.Next(addressList.Length)]; | ||
| return new IPEndPoint(targetIp, port); | ||
| } | ||
| } | ||
| } |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why did you add this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The idea is to have the load balanced implemented on client-side. Here you can see it iterates over the entries. So each call for
ResolveAsyncwould return a different entry.Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All calls to
Dns.GetHostEntryAsyncreturn the same list. The Endpoint being returned on the default approach using Reverse Proxies (where IP doesn't change or doesn't mean anything) it would be constantly hitting the same entry over and over.