Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug] [Web] Cannot read properties of null (reading 'root-exception') #4131

Closed
3 tasks done
MactavishCui opened this issue Jan 8, 2025 · 1 comment · Fixed by #4132 or #4133
Closed
3 tasks done

[Bug] [Web] Cannot read properties of null (reading 'root-exception') #4131

MactavishCui opened this issue Jan 8, 2025 · 1 comment · Fixed by #4132 or #4133
Assignees
Labels
Bug Something isn't working Waiting for reply Waiting for reply

Comments

@MactavishCui
Copy link
Contributor

Search before asking

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

What happened

Page location: #/devops/job-detail
d6ebb66b69ed046f779a2b0b1854938

What you expected to happen

Bug fix

How to reproduce

Create a flink sql task

 --change
CREATE TABLE orderSourceNew (order_id BIGINT, order_name STRING)

WITH
  (
${datagen}
  );

CREATE TABLE skuSourceNew (sku_id BIGINT, sku_name STRING)
WITH
  (
${datagen}
  );

CREATE TABLE orderSinkNew (
  order_id BIGINT,
  order_copy BIGINT,
  order_name STRING
)
WITH
  ('connector' = 'blackhole');

CREATE TABLE skuSinkNew (sku_id BIGINT, sku_name STRING)
WITH
  ('connector' = 'blackhole');

create view temp as select * from orderSourceNew;

insert into
  orderSinkNew
select
  order_id,
  order_id as order_copy,
  order_name
from
  temp;

insert into
  skuSinkNew
select
  sku_id,
  sku_name
from
  skuSourceNew;

Submit and stop this task immediately, and then visit devops -> job detail -> log, this exception will happen

Anything else

No response

Version

dev

Are you willing to submit PR?

  • Yes I am willing to submit a PR!

Code of Conduct

@MactavishCui MactavishCui added Bug Something isn't working Waiting for reply Waiting for reply labels Jan 8, 2025
Copy link

github-actions bot commented Jan 8, 2025

Hello @MactavishCui, this issue is about web, so I assign it to @Zzm0809. If you have any questions, you can comment and reply.

你好 @MactavishCui, 这个 issue 是关于 web 的,所以我把它分配给了 @Zzm0809。如有任何问题,可以评论回复。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Something isn't working Waiting for reply Waiting for reply
Projects
None yet
2 participants