[
https://issues.apache.org/jira/browse/FLINK-15404?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
hehuiyuan updated FLINK-15404:
------------------------------
Description:
I have a hive catalog :
{code:java}
catalog name : myhive
database : default
{code}
and the flink has a default catalog :
{code:java}
catalog name : default_catalog
database : default_database
{code}
For example :
I have a source table 'source_table' that's from kafka which is register to
default_catalog,
I want to insert hive table 'hive_table' that is from myhive catalog.
SQL:
insert into hive_table select * from source_table;
And if if the data of hive table has changed, flink is not found.
SQL:
tableEnv.sqlUpdate("insert into myhive.`default`.stafftest select * from
default_catalog.default_database.source_table");
was:
I have a hive catalog :
{code:java}
catalog name : myhive
database : default
{code}
and the flink has a default catalog :
{code:java}
catalog name : default_catalog
database : default_database
{code}
For example :
I have a source table 'source_table' that's from kafka which is register to
default_catalog,
I want to insert hive table 'hive_table' that is from myhive catalog.
SQL:
insert into hive_table select * from source_table;
And if if the data of hive table has changed, flink is not found.
> How to insert hive table in streaming mode and blink planner
> ------------------------------------------------------------
>
> Key: FLINK-15404
> URL: https://issues.apache.org/jira/browse/FLINK-15404
> Project: Flink
> Issue Type: Wish
> Components: Table SQL / Planner
> Reporter: hehuiyuan
> Priority: Major
>
> I have a hive catalog :
>
> {code:java}
> catalog name : myhive
> database : default
> {code}
>
> and the flink has a default catalog :
>
> {code:java}
> catalog name : default_catalog
> database : default_database
> {code}
>
> For example :
> I have a source table 'source_table' that's from kafka which is register to
> default_catalog,
> I want to insert hive table 'hive_table' that is from myhive catalog.
> SQL:
> insert into hive_table select * from source_table;
>
> And if if the data of hive table has changed, flink is not found.
> SQL:
> tableEnv.sqlUpdate("insert into myhive.`default`.stafftest select * from
> default_catalog.default_database.source_table");
--
This message was sent by Atlassian Jira
(v8.3.4#803005)