qwang6 opened a new pull request #505: Add JDBC retrieve Hive Metadata
URL: https://github.com/apache/griffin/pull/505
 
 
   Add an implementation to HiveMetaStoreService using JDBC to retrieve Hive 
Metadata, and added Qualifier annotation on who use this object.
   However, once added this new implementation, existed unit tests 
HiveMetaStoreControllerTest and HiveMetaStoreServiceImplTest are not working 
because before didn't consider about this.
   The other problem is once added hive-jdbc dependency, it has conflict with 
Tomcat in Spring Boot. Although I have excluded the servlet-api, this problem 
still existed.
   `<dependency>
               <groupId>org.apache.hive</groupId>
               <artifactId>hive-jdbc</artifactId>
               <version>${hive.version}</version>
               <exclusions>
                   <exclusion>
                       <groupId>org.eclipse.jetty.aggregate</groupId>
                       <artifactId>*</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>javax.servlet</groupId>
                       <artifactId>servlet-api</artifactId>
                   </exclusion>
               </exclusions>
           </dependency>`

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to