Kyuubi Hive JDBC driver throws "Method Not Supported" on retrieving DATE data #5649
-
We have been using Kyuubi on the Kubernetes environment for the last 8months in production. We are testing the integration of Tableau Desktop - Kyuubi. The integration uses
This has been observed to be happening for ORC & Parquet formatted tables. Reproduction Steps:
When we preview the data from tableau using the jdbc driver, we run into the following exception on the Tableau Desktop:
Kyuubi driver log has the following exception:
_Have someone faced this issue before ? Are there any leads/workarounds available to this problem? _ |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
Thanks for reporting this issue. The error message is clear enough to identify the root cause, it's because Kyuubi does not implement the following JDBC methods. PS: it's common that JDBC driver vendors to only implement some of the JDBC interface methods, the caller(in this case, Tableau) usually takes care of
|
Beta Was this translation helpful? Give feedback.
-
@mahalingamagesthian I almost finish this feature, but I don't have a Tableau Desktop in hand. Could you plz do me a favour to test this feature? |
Beta Was this translation helpful? Give feedback.
Thanks for reporting this issue. The error message is clear enough to identify the root cause, it's because Kyuubi does not implement the following JDBC methods.
PS: it's common that JDBC driver vendors to only implement some of the JDBC interface methods, the caller(in this case, Tableau) usually takes care of
SQLFeatureNotSupportedException
and fallback to invoke another method, so I would not say this is a bug, but we can improve it in Kyuubi JDBC driver side to implement more methods.