-
Notifications
You must be signed in to change notification settings - Fork 133
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
Allow receiver hostname definition #60
Comments
Thanks for your suggestion! I see how this makes sense. The problem is that we'd need to think about how often to resolve the hostname to an IP address. Doing this for every packet would be prohibitive, because many people use the samplicator at high packet rates, and they don't want to flood their nameservers (or even name caches) at these high rates. DNS has TTLs, which could be used to set the frequency of name resolutions to something more manageable—although the case of TTLs being zero or close to zero would have to be addressed. While this is all worthwhile, it is a bit hard to implement correctly: Firstly, you cannot just use |
Agreed that DNS lookup would add some overhead on a lot of systems. But most linux distributions have NSCD (Name services caching daemon) configured by default or at least available. This provides a local cache on box in memory that mitigates some of the issue you point out. There isn't any mention of using the DNS TTL in the config. It looks like it has it's own configurable TTL for each service type it caches, so controllable by the admin. And as far as I know the And this is probably unique to my use case, but we are using consul as service discovery. There is a consul agent running on every box. And that consul agent provides a DNS lookup of services. Since the DNS lookup is contained to just the samplicator host for the receiver address there isn't load on the enterprise DNS servers. I just don't know what the max lookup rate of consul is. Also another thing to consider is scale. In my case I am looking to resolve a receiver by name to leverage service discovery. I also have plans to to scale samplicator the same way. On my device I would set the "syslog" host to a service discovery hostname allowing me to scale samplicator horizontally and find an active samplicator node. Doing this would most likely mitigate the increase load of the DNS lookups on an individual host. I can simply add more samplicator hosts to handle higher packet rates. For me personally I would be willing to scale samplicator horizontally, and other necessary systems (DNS) to overcome any additional load created. For me the availability is probably more important that the cost in resources. |
Please add the ability to define the receiver by hostname and not just IP address. This would allow to forward to a cluster hostname using RR DNS or a service discovery hostname. This would increase the availability of the replicated packet.
Using just a VIP would require something like a hardware load balancer or managing an IP address with something like corosync. Being able to use modern techniques like service discover allows for an active-active load balance (although a harware LB ie. F5 would do this, I don't want to pay for one of those), which adds a scale out feature.
The text was updated successfully, but these errors were encountered: