-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
DNS+SRV NameResolver #2109
Comments
👍 |
1 similar comment
👍 |
We've talked about doing SRV (and TXT). I know we didn't have a pressing need for it, but we were including it in the design. @zhangkun83, do you know the status of that stuff? |
I don't think anything has been done about it. What exactly would such a resolver do? Take |
I would return a list of IPs and ports associated to _etcd-server._tcp.example.com, i.e.:
So you know that you have 3 etcd servers you can use for load balancing:
|
I was concerned at first because I thought the NameResolver would also need to act as an etcd client. Now I guess it's not the case. If we changed the example to |
Ah yep sorry, I've used etcd because I'm working on it so it was the first example I had in mind. |
If there are no SRV records, then we should probably contact example.com. It may make sense to use |
I'm unsure about that as if you do not have any record it would mean you do not have any service registered (i.e. in a kubernetes cluster) or a configuration issue (i.e. in a standard environment) and that would indicate a problem. I would prefer to fail here and maybe have an optional retry strategy that would force a new resolution if no hosts are returned. |
Before we discuss too much more, I wanted to mention that this will probably need some agreement from the other languages. I was going for the recommendation in RFC2782:
But I admit it was written before SRV saw widespread use and also writes:
There are probably different users of grpc that would want each behavior. So we may need a way to distinguish between them. Looking at this more, since "service" in SRV is actually the same as /etc/services and the port, then we really don't need a different syntax: That host:service syntax is supported by applications using getaddrinfo (which allows things like I could understand concern for looking up SRV records all the time, thus I could understand having |
SRV example for myself: import javax.naming.directory.Attribute;
import javax.naming.directory.InitialDirContext;
public class Srv {
public static void main(String[] args) throws Exception {
InitialDirContext ctx = new InitialDirContext();
Attribute attr = ctx.getAttributes("dns:///_xmpp-server._tcp.google.com", new String[] {"SRV"})
.get("SRV");
for (int i = 0; i < attr.size(); i++) {
String s = (String) attr.get(i);
System.out.println(s);
}
}
} |
I'm quite fine with the syntax However I would like to support also the form of Make sense ? |
any progress on this ? |
@lburgazzoli no progress so far. This doesn't seem to be a high priority so we have been working on more urgent stuff. |
TXT (and maybe SRV) is needed for service config, so this should be a higher priority. |
Service config in DNS is proposed in grpc/proposal#5 |
This appears to have been done since DnsNameResolver.ResourceResolver has a resolveSrv method. |
I see that there is currently a dns name resolver and I'm wondering if a dns+srv resolver would make sense for the project:
So you would be able to resolve a target like:
The text was updated successfully, but these errors were encountered: