<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Failed to create table with kudu storage ( CDH 6.3 ) in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/Failed-to-create-table-with-kudu-storage-CDH-6-3/m-p/289602#M214363</link>
    <description>&lt;DIV class="p-rich_text_section"&gt;My current environment is CDH 6.3.2&lt;/DIV&gt;
&lt;UL&gt;
&lt;LI&gt;Impala v3.2.0-cdh6.3.2&lt;/LI&gt;
&lt;LI&gt;kudu 1.10.0-cdh6.3.2&lt;/LI&gt;
&lt;/UL&gt;
&lt;DIV class="p-rich_text_section"&gt;Somehow, creating table with kudu storage gives IllegalArgumentException. It was ok with kudu 1.7.0-cdh5.16.2&lt;/DIV&gt;
&lt;PRE&gt;CREATE TABLE test_mlee&lt;BR /&gt;(&lt;BR /&gt;  id BIGINT,&lt;BR /&gt;  name STRING,&lt;BR /&gt;  PRIMARY KEY(id)&lt;BR /&gt;)&lt;BR /&gt;PARTITION BY HASH PARTITIONS 16&lt;BR /&gt;STORED AS KUDU&lt;BR /&gt;ERROR: IllegalArgumentException: null&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;SPAN&gt;Any comment is appreciated &lt;/SPAN&gt;&lt;SPAN&gt;Thank you in advance.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 12 Feb 2020 10:24:12 GMT</pubDate>
    <dc:creator>thewayofthinkin</dc:creator>
    <dc:date>2020-02-12T10:24:12Z</dc:date>
    <item>
      <title>Failed to create table with kudu storage ( CDH 6.3 )</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Failed-to-create-table-with-kudu-storage-CDH-6-3/m-p/289602#M214363</link>
      <description>&lt;DIV class="p-rich_text_section"&gt;My current environment is CDH 6.3.2&lt;/DIV&gt;
&lt;UL&gt;
&lt;LI&gt;Impala v3.2.0-cdh6.3.2&lt;/LI&gt;
&lt;LI&gt;kudu 1.10.0-cdh6.3.2&lt;/LI&gt;
&lt;/UL&gt;
&lt;DIV class="p-rich_text_section"&gt;Somehow, creating table with kudu storage gives IllegalArgumentException. It was ok with kudu 1.7.0-cdh5.16.2&lt;/DIV&gt;
&lt;PRE&gt;CREATE TABLE test_mlee&lt;BR /&gt;(&lt;BR /&gt;  id BIGINT,&lt;BR /&gt;  name STRING,&lt;BR /&gt;  PRIMARY KEY(id)&lt;BR /&gt;)&lt;BR /&gt;PARTITION BY HASH PARTITIONS 16&lt;BR /&gt;STORED AS KUDU&lt;BR /&gt;ERROR: IllegalArgumentException: null&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;SPAN&gt;Any comment is appreciated &lt;/SPAN&gt;&lt;SPAN&gt;Thank you in advance.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Feb 2020 10:24:12 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Failed-to-create-table-with-kudu-storage-CDH-6-3/m-p/289602#M214363</guid>
      <dc:creator>thewayofthinkin</dc:creator>
      <dc:date>2020-02-12T10:24:12Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to create table with kudu storage ( CDH 6.3 )</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Failed-to-create-table-with-kudu-storage-CDH-6-3/m-p/289735#M214433</link>
      <description>&lt;P&gt;Hi, it seems you didn't specify what column to partition by. Maybe in previous version Impala was able to infer it in case, but I don't think this was ever an intended behavior, maybe a fortunate side effect of a bug that was fixed since. In any case, you need to write&lt;/P&gt;&lt;PRE&gt;PARTITION BY HASH(id)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Feb 2020 17:53:36 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Failed-to-create-table-with-kudu-storage-CDH-6-3/m-p/289735#M214433</guid>
      <dc:creator>attilabukor</dc:creator>
      <dc:date>2020-02-13T17:53:36Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to create table with kudu storage ( CDH 6.3 )</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Failed-to-create-table-with-kudu-storage-CDH-6-3/m-p/289757#M214444</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/13586"&gt;@attilabukor&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi, Thank you for your comment.&lt;/P&gt;&lt;P&gt;Yesterday, I got a comment from HaoHao about this issue.&lt;/P&gt;&lt;P&gt;The issue not being able to create KUDU table on CDH 6.3.2 is related to remote HMS configuration in hive-site.xml&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;KuduTable.java ( on CDH 6.3.2 ) has a logic validating if `hmsuris` is null or empty.&lt;/P&gt;&lt;P&gt;If `hmsuris` is empty or null, it raises exception and fails.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This has been fixed on master branch, but I'm not sure if this fix will be delivered with CDH 6.3.3&lt;/P&gt;&lt;P&gt;Can you confirm if the fix is shipped with CDH 6.3.3?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the bug report ticket.&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;A href="https://issues.apache.org/jira/browse/IMPALA-8974" target="_blank"&gt;https://issues.apache.org/jira/browse/IMPALA-8974&lt;/A&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Gatsby&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Feb 2020 22:08:34 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Failed-to-create-table-with-kudu-storage-CDH-6-3/m-p/289757#M214444</guid>
      <dc:creator>thewayofthinkin</dc:creator>
      <dc:date>2020-02-13T22:08:34Z</dc:date>
    </item>
  </channel>
</rss>

