8000 validate compatibility between connector type and row format · Issue #6984 · risingwavelabs/risingwave · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
validate compatibility between connector type and row format #6984
Closed
@lmatz

Description

@lmatz

For example:

create materialized source s1 (
    v1 int, 
    v2 float,
    primary key (v1)
) with (
    connector = 'datagen',
    fields.v1.kind = 'sequence',
    fields.v1.start = '1',
    fields.v1.end  = '10',
    fields.v2.kind = 'sequence',
    fields.v2.start = '11',
    fields.v2.end = '20',
    datagen.rows.per.second='15',
    datagen.split.num = '1'
) row format debezium_json;

The create source succeeds but warning for every row in the log.

Probably validating as early as possible is better?
Or the current approach is intentional?

It's a two-dimensional matrix, isn't it?
connector type X row format type.

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions

    0