Skip to content

Conflict between iotdb-session and hive-jdbc #3884

Answered by qiaojialin
haowdev asked this question in Q&A
Discussion options

You must be logged in to vote

This is due to thrift dependency conflict between iotdb-session and hive.

Try to use mvn dependency:tree to see which dependency conflicts with iotdb-session.

Then, use to remove the dependency

<dependency>
            <groupId>org.apache.hive</groupId>
            <artifactId>hive-jdbc</artifactId>
            <version>1.1.0</version>
            <exclusions>
                <exclusion>
                    <groupId>org.apache.thrift</groupId>
                    <artifactId>libthrift</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by HTHou
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants