Uploaded image for project: 'Apache Drill'
  1. Apache Drill
  2. DRILL-7044

drill kudu query dose not support range + hash multilevel partition

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Critical
    • Resolution: Unresolved
    • 1.13.0, 1.14.0, 1.15.0
    • None
    • Storage - Other
    • drill : 1.13.0

      kudu : 1.8.0

    • Important

    Description

      drill kudu query dose not support range + hash multilevel partition

      kudu table :

      CREATE TABLE test1 (
      id int ,
      name string,
      value string,
      prmary key(id, name)
      ),
      PARTITION BY HASH (name) PARTITIONS 8,
      PARTITION BY RANGE (id) (
      PARTITION 0 <= VALUES < 10000,
      PARTITION 10000 <= VALUES < 20000,
      PARTITION 20000 <= VALUES < 30000,
      PARTITION 30000 <= VALUES < 40000
      );

      and then insert 20002 rows into test1, but query not support.
      query sql : select count(1) kudu.table_name, result : `No result found.`

      Attachments

        1. 002.png
          39 kB
          fireapp
        2. 003.png
          41 kB
          fireapp

        Activity

          People

            dzamo James Turton
            fireapp fireapp
            Votes:
            1 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated: