[jira] [Created] (FLINK-19594) SubTasks start index don't unified and may confuse users

2020-10-12 Thread zlzhang0122 (Jira)
zlzhang0122 created FLINK-19594:
---

 Summary: SubTasks start index don't unified and may confuse users
 Key: FLINK-19594
 URL: https://issues.apache.org/jira/browse/FLINK-19594
 Project: Flink
  Issue Type: Improvement
Reporter: zlzhang0122
 Attachments: BackPresures.png, Checkpoints.png, SubTasks.png

In flink web ui page, subTasks index start from 0 in SubTasks tab while in 
BackPressure tag start from 1, at the same time the subTasks index start from 1 
in Checkpoints page.I think this may confuse users and does there have some 
design purpose ?



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


[jira] [Updated] (FLINK-14411) OrcTableSource read error

2019-10-16 Thread zlzhang0122 (Jira)


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

zlzhang0122 updated FLINK-14411:

Description: 
Hello, when I used BatchTableEnvironment to run a query on OrcTableSource, I 
got a Exception.can any one can help me?

Below is my program code:

 

ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment();
 BatchTableEnvironment tableEnvironment = BatchTableEnvironment.create(env);
 TypeDescription schema = 
TypeDescription.fromString("struct");
 OrcTableSource orcTs = 
OrcTableSource.builder().path("hdfs://localhost:9000/user/xxx/orc/test.orc")
 .forOrcSchema(schema).build();
 tableEnvironment.registerTableSource("OrcTable", orcTs);
 Table result = tableEnvironment.sqlQuery("select * from OrcTable");

DataSet rowDataSet = tableEnvironment.toDataSet(result, Row.class);
 rowDataSet.print();

 

The Exception is:

Caused by: org.apache.flink.runtime.rest.util.RestClientException: [Internal 
server error., (JobManagerRunner.java:152)

at 
org.apache.flink.runtime.dispatcher.DefaultJobManagerRunnerFactory.createJobManagerRunner(DefaultJobManagerRunnerFactory.java:83)

at 
org.apache.flink.runtime.dispatcher.Dispatcher.lambda$createJobManagerRunner$5(Dispatcher.java:375)

at 
org.apache.flink.util.function.CheckedSupplier.lambda$unchecked$0(CheckedSupplier.java:34)

... 7 more

Caused by: org.apache.flink.runtime.client.JobExecutionException: Cannot 
initialize task 'DataSource 
(OrcFile[path=hdfs://localhost:9000/user/xxx/orc/test.orc, 
schema=struct, filter=TRUE])': Loading the 
input/output formats failed: File Input 
([hdfs://localhost:9000/user/xxx/orc/test.orc])

at 
org.apache.flink.runtime.executiongraph.ExecutionGraphBuilder.buildGraph(ExecutionGraphBuilder.java:218)

at 
org.apache.flink.runtime.executiongraph.ExecutionGraphBuilder.buildGraph(ExecutionGraphBuilder.java:106)

at 
org.apache.flink.runtime.scheduler.LegacyScheduler.createExecutionGraph(LegacyScheduler.java:207)

at 
org.apache.flink.runtime.scheduler.LegacyScheduler.createAndRestoreExecutionGraph(LegacyScheduler.java:184)

at 
org.apache.flink.runtime.scheduler.LegacyScheduler.(LegacyScheduler.java:176)

at 
org.apache.flink.runtime.scheduler.LegacySchedulerFactory.createInstance(LegacySchedulerFactory.java:70)

at 
org.apache.flink.runtime.jobmaster.JobMaster.createScheduler(JobMaster.java:275)

at org.apache.flink.runtime.jobmaster.JobMaster.(JobMaster.java:265)

at 
org.apache.flink.runtime.jobmaster.factories.DefaultJobMasterServiceFactory.createJobMasterService(DefaultJobMasterServiceFactory.java:98)

at 
org.apache.flink.runtime.jobmaster.factories.DefaultJobMasterServiceFactory.createJobMasterService(DefaultJobMasterServiceFactory.java:40)

at 
org.apache.flink.runtime.jobmaster.JobManagerRunner.(JobManagerRunner.java:146)

... 10 more

Caused by: java.lang.Exception: Loading the input/output formats failed: File 
Input ([hdfs://localhost:9000/user/xxx/orc/test.orc])

at 
org.apache.flink.runtime.jobgraph.InputOutputFormatVertex.initInputOutputformatContainer(InputOutputFormatVertex.java:156)

at 
org.apache.flink.runtime.jobgraph.InputOutputFormatVertex.initializeOnMaster(InputOutputFormatVertex.java:60)

at 
org.apache.flink.runtime.executiongraph.ExecutionGraphBuilder.buildGraph(ExecutionGraphBuilder.java:214)

... 20 more

Caused by: java.lang.RuntimeException: Deserializing the input/output formats 
failed: unread block data

at 
org.apache.flink.runtime.jobgraph.InputOutputFormatContainer.(InputOutputFormatContainer.java:68)

at 
org.apache.flink.runtime.jobgraph.InputOutputFormatVertex.initInputOutputformatContainer(InputOutputFormatVertex.java:153)

... 22 more

Caused by: java.lang.IllegalStateException: unread block data

at 
java.io.ObjectInputStream$BlockDataInputStream.setBlockDataMode(ObjectInputStream.java:2773)

at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1599)

at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:2278)

at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:2202)

at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:2060)

at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1567)

at java.io.ObjectInputStream.readObject(ObjectInputStream.java:427)

at 
org.apache.flink.util.InstantiationUtil.deserializeObject(InstantiationUtil.java:576)

at 
org.apache.flink.util.InstantiationUtil.deserializeObject(InstantiationUtil.java:562)

at 
org.apache.flink.util.InstantiationUtil.deserializeObject(InstantiationUtil.java:550)

at 
org.apache.flink.util.InstantiationUtil.readObjectFromConfig(InstantiationUtil.java:511)

at 
org.apache.flink.runtime.operators.util.TaskConfig.getStubWrapper(TaskConfig.java:288)

at 
org.apache.flink.runtime.jobgraph.InputOutputFormatContainer.(InputOutputFormatContainer.java:66)

... 23 more

 

End of exception on server side>]

at org.apache.flink.runtime.rest.RestClien

[jira] [Created] (FLINK-14411) OrcTableSource read error

2019-10-16 Thread zlzhang0122 (Jira)
zlzhang0122 created FLINK-14411:
---

 Summary: OrcTableSource read error
 Key: FLINK-14411
 URL: https://issues.apache.org/jira/browse/FLINK-14411
 Project: Flink
  Issue Type: Bug
Affects Versions: 1.9.0
 Environment:  

Caused by: org.apache.flink.runtime.rest.util.RestClientException: [Internal 
server error., (JobManagerRunner.java:152)

 at 
org.apache.flink.runtime.dispatcher.DefaultJobManagerRunnerFactory.createJobManagerRunner(DefaultJobManagerRunnerFactory.java:83)

 at 
org.apache.flink.runtime.dispatcher.Dispatcher.lambda$createJobManagerRunner$5(Dispatcher.java:375)

 at 
org.apache.flink.util.function.CheckedSupplier.lambda$unchecked$0(CheckedSupplier.java:34)

 ... 7 more

Caused by: org.apache.flink.runtime.client.JobExecutionException: Cannot 
initialize task 'DataSource 
(OrcFile[path=hdfs://localhost:9000/user/xxx/orc/test.orc, 
schema=struct, filter=TRUE])': Loading the 
input/output formats failed: File Input 
([hdfs://localhost:9000/user/xxx/orc/test.orc])

 at 
org.apache.flink.runtime.executiongraph.ExecutionGraphBuilder.buildGraph(ExecutionGraphBuilder.java:218)

 at 
org.apache.flink.runtime.executiongraph.ExecutionGraphBuilder.buildGraph(ExecutionGraphBuilder.java:106)

 at 
org.apache.flink.runtime.scheduler.LegacyScheduler.createExecutionGraph(LegacyScheduler.java:207)

 at 
org.apache.flink.runtime.scheduler.LegacyScheduler.createAndRestoreExecutionGraph(LegacyScheduler.java:184)

 at 
org.apache.flink.runtime.scheduler.LegacyScheduler.(LegacyScheduler.java:176)

 at 
org.apache.flink.runtime.scheduler.LegacySchedulerFactory.createInstance(LegacySchedulerFactory.java:70)

 at 
org.apache.flink.runtime.jobmaster.JobMaster.createScheduler(JobMaster.java:275)

 at org.apache.flink.runtime.jobmaster.JobMaster.(JobMaster.java:265)

 at 
org.apache.flink.runtime.jobmaster.factories.DefaultJobMasterServiceFactory.createJobMasterService(DefaultJobMasterServiceFactory.java:98)

 at 
org.apache.flink.runtime.jobmaster.factories.DefaultJobMasterServiceFactory.createJobMasterService(DefaultJobMasterServiceFactory.java:40)

 at 
org.apache.flink.runtime.jobmaster.JobManagerRunner.(JobManagerRunner.java:146)

 ... 10 more

Caused by: java.lang.Exception: Loading the input/output formats failed: File 
Input ([hdfs://localhost:9000/user/xxx/orc/test.orc])

 at 
org.apache.flink.runtime.jobgraph.InputOutputFormatVertex.initInputOutputformatContainer(InputOutputFormatVertex.java:156)

 at 
org.apache.flink.runtime.jobgraph.InputOutputFormatVertex.initializeOnMaster(InputOutputFormatVertex.java:60)

 at 
org.apache.flink.runtime.executiongraph.ExecutionGraphBuilder.buildGraph(ExecutionGraphBuilder.java:214)

 ... 20 more

Caused by: java.lang.RuntimeException: Deserializing the input/output formats 
failed: unread block data

 at 
org.apache.flink.runtime.jobgraph.InputOutputFormatContainer.(InputOutputFormatContainer.java:68)

 at 
org.apache.flink.runtime.jobgraph.InputOutputFormatVertex.initInputOutputformatContainer(InputOutputFormatVertex.java:153)

 ... 22 more

Caused by: java.lang.IllegalStateException: unread block data

 at 
java.io.ObjectInputStream$BlockDataInputStream.setBlockDataMode(ObjectInputStream.java:2773)

 at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1599)

 at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:2278)

 at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:2202)

 at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:2060)

 at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1567)

 at java.io.ObjectInputStream.readObject(ObjectInputStream.java:427)

 at 
org.apache.flink.util.InstantiationUtil.deserializeObject(InstantiationUtil.java:576)

 at 
org.apache.flink.util.InstantiationUtil.deserializeObject(InstantiationUtil.java:562)

 at 
org.apache.flink.util.InstantiationUtil.deserializeObject(InstantiationUtil.java:550)

 at 
org.apache.flink.util.InstantiationUtil.readObjectFromConfig(InstantiationUtil.java:511)

 at 
org.apache.flink.runtime.operators.util.TaskConfig.getStubWrapper(TaskConfig.java:288)

 at 
org.apache.flink.runtime.jobgraph.InputOutputFormatContainer.(InputOutputFormatContainer.java:66)

 ... 23 more

 

End of exception on server side>]

 at org.apache.flink.runtime.rest.RestClient.parseResponse(RestClient.java:389)

 at 
org.apache.flink.runtime.rest.RestClient.lambda$submitRequest$3(RestClient.java:373)

 at 
java.util.concurrent.CompletableFuture.uniCompose(CompletableFuture.java:952)

 at 
java.util.concurrent.CompletableFuture$UniCompose.tryFire(CompletableFuture.java:926)

 ... 4 more
Reporter: zlzhang0122


Hello, when I used BatchTableEnvironment to run a query on OrcTableSource, I 
got a Exception.can any one can help me?

Below is my program code:

 

ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment();
BatchTab

<    1   2   3