You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Reduce the number of sub queries for tasks/executions
* Added CSVLoader and TaskExecutionQueryIT to test Performance improvement of thinexecutions.
* Added regression check on thin execution performance.
* Remove action that fails in CI-PR
* Improved manifest query.
Updated formatting and copyright dates.
Copy file name to clipboardExpand all lines: spring-cloud-dataflow-server-core/src/main/java/org/springframework/cloud/dataflow/server/batch/JdbcSearchableJobExecutionDao.java
privatestaticfinalStringGET_JOB_EXECUTIONS_BY_TASK_IDS = "SELECT JOB_EXECUTION_ID, TASK_EXECUTION_ID from %TASK_PREFIX%TASK_BATCH WHERE TASK_EXECUTION_ID in (?)";
Copy file name to clipboardExpand all lines: spring-cloud-dataflow-server-core/src/main/java/org/springframework/cloud/dataflow/server/batch/JobService.java
Copy file name to clipboardExpand all lines: spring-cloud-dataflow-server-core/src/main/java/org/springframework/cloud/dataflow/server/batch/SearchableJobExecutionDao.java
Copy file name to clipboardExpand all lines: spring-cloud-dataflow-server-core/src/main/java/org/springframework/cloud/dataflow/server/batch/SimpleJobService.java
+6
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,7 @@
25
25
importjava.util.Iterator;
26
26
importjava.util.LinkedHashSet;
27
27
importjava.util.List;
28
+
importjava.util.Map;
28
29
importjava.util.Objects;
29
30
importjava.util.Properties;
30
31
importjava.util.Set;
@@ -468,6 +469,11 @@ public Collection<JobExecutionWithStepCount> listJobExecutionsForJobWithStepCoun
Copy file name to clipboardExpand all lines: spring-cloud-dataflow-server-core/src/main/java/org/springframework/cloud/dataflow/server/batch/SimpleJobServiceFactoryBean.java
+6
Original file line number
Diff line number
Diff line change
@@ -73,6 +73,7 @@ public class SimpleJobServiceFactoryBean implements FactoryBean<JobService>, Ini
Copy file name to clipboardExpand all lines: spring-cloud-dataflow-server-core/src/main/java/org/springframework/cloud/dataflow/server/controller/TaskExecutionController.java
0 commit comments