Replies: 1 comment 3 replies
-
This validation was added in #29502 and I guess for close CVE-2023-25696 |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I'm currently facing an issue when using the "apache-airflow-providers-apache-hive" basically it works well when I specify the host of my HiveServer2 the fact is that in my company we don't use HiveServer2 URL directly but we use Zookeeper to take advantage of the HA and make sure that we'll be routing to a HiveServer2 that is alive. Moreover we have several zookeeper instance that are in charge of our connection to our Hive instance and the URL string looks like this :
jdbc:hive2://zk1host:zk1port,zk2host:zk2port,zk3host:zk3port
But it seems that in the code there are some limitations and it doesn't allow user to add several host comma separated in the "Host" connection parameter.
Here the beeline validator that's used and that raised the exception :
Does anyone know if there is some limitation or reason for that ? If no do you think that I can do a PR to improve this ?
Thanks for your help
Beta Was this translation helpful? Give feedback.
All reactions