[ 
https://issues.apache.org/jira/browse/SPARK-32563?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

yx91490 updated SPARK-32563:
----------------------------
    Description: 
spark-sql doesn't support insert into mixed static & dynamic partition, for 
example:

source table :
{code:java}
CREATE TABLE `id_name`(`id` int, `name` string)
PARTITIONED BY (`dt` string)
{code}
dest table:
{code:java}
CREATE TABLE `id_name_dt1_dt2`(`id` int, `name` string)
PARTITIONED BY (`dt1` string, `dt2` string)
{code}
insert sql:
{code:java}
insert into table tmp.id_name_dt1_dt2 partition(dt1='beijing',dt2) select * 
from tmp.id_name;
{code}
result:

data not inserted, dest table partition not added.

and there are two warns:
{code:java}
20/08/07 14:32:28 WARN warehouse: Cannot create partition spec from 
hdfs://nameservice/; missing keys [dt1]
20/08/07 14:32:28 WARN FileOperations: Ignoring invalid DP directory 
hdfs://nameservice/user/hive/warehouse/tmp.db/id_name_dt1_dt2/.hive-staging_hive_2020-08-07_14-32-02_538_7897451753303149223-1/-ext-10000/dt2=2002
{code}
source code maybe in there :

[Warehouse.java|https://github.com/hortonworks/hive-release/blob/HDP-3.1.4.0-315-tag/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/Warehouse.java]

[Utilities.java|https://github.com/hortonworks/hive-release/blob/HDP-3.1.4.0-315-tag/ql/src/java/org/apache/hadoop/hive/ql/exec/Utilities.java]

  was:
spark-sql doesn't support insert into mixed static & dynamic partition, for 
example:

source table :
{code:java}
CREATE TABLE `id_name`(`id` int, `name` string)
PARTITIONED BY (`dt` string)
{code}
dest table:
{code:java}
CREATE TABLE `id_name_dt1_dt2`(`id` int, `name` string)
PARTITIONED BY (`dt1` string, `dt2` string)
{code}
insert sql:
{code:java}
insert into table tmp.id_name_dt1_dt2 partition(dt1='beijing',dt2) select * 
from tmp.id_name;
{code}
result:

data not inserted, dest table partition not added.

and there are two warns:
{code:java}
20/08/07 14:32:28 WARN warehouse: Cannot create partition spec from 
hdfs://nameservice/; missing keys [dt1]
20/08/07 14:32:28 WARN FileOperations: Ignoring invalid DP directory 
hdfs://nameservice/user/hive/warehouse/tmp.db/id_name_dt1_dt2/.hive-staging_hive_2020-08-07_14-32-02_538_7897451753303149223-1/-ext-10000/dt2=2002
{code}


> spark-sql doesn't support insert into mixed static & dynamic partition 
> -----------------------------------------------------------------------
>
>                 Key: SPARK-32563
>                 URL: https://issues.apache.org/jira/browse/SPARK-32563
>             Project: Spark
>          Issue Type: Bug
>          Components: SQL
>    Affects Versions: 2.3.2
>         Environment: HDP version 2.3.2.3.1.4.0-315
>            Reporter: yx91490
>            Priority: Major
>         Attachments: SPARK-32563.log
>
>
> spark-sql doesn't support insert into mixed static & dynamic partition, for 
> example:
> source table :
> {code:java}
> CREATE TABLE `id_name`(`id` int, `name` string)
> PARTITIONED BY (`dt` string)
> {code}
> dest table:
> {code:java}
> CREATE TABLE `id_name_dt1_dt2`(`id` int, `name` string)
> PARTITIONED BY (`dt1` string, `dt2` string)
> {code}
> insert sql:
> {code:java}
> insert into table tmp.id_name_dt1_dt2 partition(dt1='beijing',dt2) select * 
> from tmp.id_name;
> {code}
> result:
> data not inserted, dest table partition not added.
> and there are two warns:
> {code:java}
> 20/08/07 14:32:28 WARN warehouse: Cannot create partition spec from 
> hdfs://nameservice/; missing keys [dt1]
> 20/08/07 14:32:28 WARN FileOperations: Ignoring invalid DP directory 
> hdfs://nameservice/user/hive/warehouse/tmp.db/id_name_dt1_dt2/.hive-staging_hive_2020-08-07_14-32-02_538_7897451753303149223-1/-ext-10000/dt2=2002
> {code}
> source code maybe in there :
> [Warehouse.java|https://github.com/hortonworks/hive-release/blob/HDP-3.1.4.0-315-tag/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/Warehouse.java]
> [Utilities.java|https://github.com/hortonworks/hive-release/blob/HDP-3.1.4.0-315-tag/ql/src/java/org/apache/hadoop/hive/ql/exec/Utilities.java]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org

Reply via email to