String url = "jdbc:hive2://huge-agent02:10000/";
Class.forName(driverName);
conn =(Connection) DriverManager.getConnection(url, "hive", "hive");
when i replace url to zookeeper url (jdbc:hive2://huge-server:2181,huge-agent02:2181,huge-agent01:2181/;serviceDiscoveryMode=zooKeeper;zooKeeperNamespace=hiveserver2), it can not connected hive,why?