-
Notifications
You must be signed in to change notification settings - Fork 28
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
does this go driver support connection load balancing #45
Comments
Hi @rajsameer |
Thanks. Any plans on adding the support. |
@rajsameer It is penciled in to the roadmap, but nobody is actively assigned to it. Being open source, you're encouraged to contribute features. If not, the dev team can look at prioritizing such a feature if the need is immediate. |
Is there any documentation around Vertica's load balancing protocol that could be used as a reference for work on this feature? |
@watercraft The implementation of vertica-python might be a good reference: https://github.com/vertica/vertica-python/blob/6df1abec10ca189331d9f61bc56e11e1dcf86b18/vertica_python/vertica/connection.py#L422 Load balancing happens between the initial establishment of the client connection and enabling SSL. LoadBalanceRequest MessageInt32 (value=8) | Length of message contents in bytes, including self. LoadBalanceResponse 'N' MessageByte1 (value='N') | Identifies the message as a LoadBalance response. The server rejects the client LoadBalance request. LoadBalanceResponse 'Y' MessageByte1 (value='Y') | Identifies the message as a LoadBalance response. The server accepts the client LoadBalance request. |
Below was my first attempt to translate the Python code before I read your reply.
|
@watercraft Thanks for doing that. For BELoadBalanceMsg, you might have to define two different message types, like BELoadBalanceSuccessMsg and BELoadBalanceFailMsg. It looks fine to include BELoadBalanceFailMsg case into |
I've coded the two message in my fork (watercraft/vertica-sql-go), however, I'm confused by the behavior when the sever has load balancing enabled but the client is configured to not do load balancing. The connection succeeds, however, the first command I make comes back with EOF. Do I need to always issue the load balancing exchange to deal with this and perhaps ignore the response or must the client and server configurations be in sync? |
@watercraft My guess is that in that case Vertica returns some kind of error that is not currently being handled by the driver, similar to #51. I could be wrong though. |
@watercraft If the client side disables load balancing, then following communications will use the initial connection, no LoadBalanceRequest Message will send to the server. Could you please write down the log of message communications? So that I can see why it returned a EOF. |
Hi,
Does this driver in the current phase support connection load balancing.
The text was updated successfully, but these errors were encountered: