Dear Team, I am using scala to connect to Hive after install Kylin docker 5.0, please kindly tell me the default HIVE user/password to fill to this code:
Thank you very much and best regards // JDBC URL to connect to Hive val jdbcURL = "jdbc:hive2://localhost:10000/your_database" // Hive connection properties val connectionProperties = new java.util.Properties() connectionProperties.setProperty("user", "your_username") connectionProperties.setProperty("password", "your_password") // JDBC driver name and database URL val driverName = "org.apache.hive.jdbc.HiveDriver"