You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "Jark Wu (Jira)" <ji...@apache.org> on 2020/05/14 12:04:00 UTC

[jira] [Updated] (FLINK-17150) Introduce Canal format to support reading canal changelogs

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

Jark Wu updated FLINK-17150:
----------------------------
    Description: 
Introduce CanalFormatFactory and CanalRowDeserializationSchema to read [canal|https://github.com/alibaba/canal] changelogs.


{code:sql}
CREATE TABLE my_table (
  ...
) WITH (
 'connector'='...', -- e.g. 'kafka'
 'format'='canal-json',
 'canal-json.ignore-parse-errors'='true' -- default false
);
{code}


  was:
Introduce CanalFormatFactory and CanalRowDeserializationSchema to read [canal|https://github.com/alibaba/canal] changelogs.


{code:sql}
CREATE TABLE my_table (
  ...
) WITH (
 'connector'='...', -- e.g. 'kafka'
 'format'='canal-json',
 'format.ignore-parse-errors'='true' -- default false
);
{code}



> Introduce Canal format to support reading canal changelogs
> ----------------------------------------------------------
>
>                 Key: FLINK-17150
>                 URL: https://issues.apache.org/jira/browse/FLINK-17150
>             Project: Flink
>          Issue Type: Sub-task
>          Components: Formats (JSON, Avro, Parquet, ORC, SequenceFile), Table SQL / Ecosystem
>            Reporter: Jark Wu
>            Assignee: Jark Wu
>            Priority: Major
>             Fix For: 1.11.0
>
>
> Introduce CanalFormatFactory and CanalRowDeserializationSchema to read [canal|https://github.com/alibaba/canal] changelogs.
> {code:sql}
> CREATE TABLE my_table (
>   ...
> ) WITH (
>  'connector'='...', -- e.g. 'kafka'
>  'format'='canal-json',
>  'canal-json.ignore-parse-errors'='true' -- default false
> );
> {code}



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