dinky icon indicating copy to clipboard operation
dinky copied to clipboard

[Bug] when execute a simple datagen example got an error

Open nikshe opened this issue 3 years ago • 3 comments

Search before asking

  • [X] I had searched in the issues and found no similar issues.

What happened

Update the latest dev branch code, create a simple flindsql example like this : CREATE TABLE Orders ( order_number BIGINT, price DECIMAL(32,2), buyer ROW<first_name STRING, last_name STRING>, ts TIMESTAMP(3) ) WITH ( 'connector' = 'datagen', 'rows-per-second' = '100000', 'fields.order_number.kind'='random' , 'fields.order_number.min'='1000000', 'fields.order_number.max'='9900000' );

select order_number,price,ts from Orders

env: image

image

What you expected to happen

should be show the results of the table.

How to reproduce

1.create a flindsql type file with : CREATE TABLE Orders ( order_number BIGINT, price DECIMAL(32,2), buyer ROW<first_name STRING, last_name STRING>, ts TIMESTAMP(3) ) WITH ( 'connector' = 'datagen', 'rows-per-second' = '100000', 'fields.order_number.kind'='random' , 'fields.order_number.min'='1000000', 'fields.order_number.max'='9900000' );

select order_number,price,ts from Orders 2.config the env like this: image 3. run the job: image

Anything else

No response

Version

dev

Are you willing to submit PR?

  • [ ] Yes I am willing to submit a PR!

Code of Conduct

nikshe avatar May 30 '22 03:05 nikshe

Please check whether there is any error in the log.

aiwenmo avatar May 30 '22 03:05 aiwenmo

Thanks for quick reply! There is no error in server side, maybe it's frontside error.

nikshe avatar May 30 '22 07:05 nikshe

I'm sorry, I can't to reproduce it, and please view the returned result of the request through F12.

aiwenmo avatar May 30 '22 15:05 aiwenmo