Uploaded image for project: 'IMPALA'
  1. IMPALA
  2. IMPALA-1869

JDBC driver can't cancel query with predicate which include function

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • Impala 2.1.1
    • None
    • Clients

    Description

      Impala JDBC driver 2.5.16

      JDBC driver can't cancel query with predicate which include function.

      For example:

      select ClusterID, count(distinct userID)
      from dwh.DimUser
      where to_date(RegTime) = '2015-01-01'
      group by ClusterID
      

      When invoke driver's Statement.cancel() API Impala query still running.

      But this query gets cancelled successfully:

      select ClusterID, count(distinct userID)
      from dwh.DimUser
      where RegTime = '2015-01-01'
      group by ClusterID
      

      Attachments

        Activity

          People

            shashmi Syed A. Hashmi
            ukrzilla_impala_606d Denys Lamanov
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: