spring-cloud-dataflow-ui

Caused by: org.apache.http.conn.HttpHostConnectException: Connect to localhost:7577 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed:

你。 提交于 2020-05-28 08:34:20
问题 I am using Spring Cloud Data Flow with the Spring Batch by taking a reference from : https://codenotfound.com/spring-batch-admin-example.html. Now I've used latest version of Spring Boot v2.2.6.RELEASE . Error: org.springframework.web.client.ResourceAccessException: I/O error on GET request for "http://localhost:7577/api/release/list": Connect to localhost:7577 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused: connect; nested exception is org.apache.http.conn

Caused by: org.apache.http.conn.HttpHostConnectException: Connect to localhost:7577 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed:

杀马特。学长 韩版系。学妹 提交于 2020-05-28 08:33:27
问题 I am using Spring Cloud Data Flow with the Spring Batch by taking a reference from : https://codenotfound.com/spring-batch-admin-example.html. Now I've used latest version of Spring Boot v2.2.6.RELEASE . Error: org.springframework.web.client.ResourceAccessException: I/O error on GET request for "http://localhost:7577/api/release/list": Connect to localhost:7577 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused: connect; nested exception is org.apache.http.conn

A job instance already exists and is complete for parameters={-spring.cloud.task.executionid=2}. If you want to run this job again, change the parame

≡放荡痞女 提交于 2020-05-28 08:31:45
问题 I am working on Spring Cloud Data Flow and Spring Batch by taking a reference from https://github.com/spring-cloud/spring-cloud-task/tree/master/spring-cloud-task-samples. I'm executing the batch-job and when executed this example two times, on 2nd time I observed the error, however for the first time it worked fine. I started the spring-cloud-dataflow-server-local server using below commands and it created all metadata for me- highlighted in yellow. Error: exitCode=null, taskName='batch-job'

Caused by: org.flywaydb.core.api.FlywayException: Migration failed ! and Spring Cloud DataFlow

☆樱花仙子☆ 提交于 2020-05-26 09:34:43
问题 I'm working on Spring batch and Spring Cloud Data Flow example. In this example, I've developed spring-cloud-data-flow-server and MySQL DB instead of default H2 DB by taking reference from Database Configs for MySQL DB It looks like there is a issue with the Flyways and MySQL version as latest version of Flyways doesn't pickup the latest version of MySQL DB . Error: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'flywayInitializer' defined in class path

SCDF - Create Metadata tables in different schema and work the Batch Job with different schema

一曲冷凌霜 提交于 2020-05-12 08:53:34
问题 The bounty expires in 3 days . Answers to this question are eligible for a +50 reputation bounty. Jeff Cook is looking for an answer from a reputable source : Need proper guidance on this issue and need more clear sample example or response I'm using Spring Batch which loads data from Oracle and put it into the MongoDB . I'm looking to use the Spring Cloud Data Flow , but SCDF doesn't have support for the MongoDB . Is there any way if we can maintain the SCDF Metadata into the Postgres (as

Spring Cloud DataFlow and MySQL doesn't show the START_TIME and END_TIME of the Task

↘锁芯ラ 提交于 2020-05-08 05:53:12
问题 I'm working on Spring batch and SCDF example. In this example I am reading CSV file and loading all the data to MySQL . I was able to successfully load the data into MySQL DB, but but UI doesn't show me START_TIME and END_TIME , even db doesn't holds any records. I've uploaded my code here: https://github.com/JavaNeed/spring-cloud-dataflow-example1.git spring-cloud-data-flow-server SpringCloudDataFlowServerApplication.java @EnableDataFlowServer @SpringBootApplication(exclude = {

Spring Cloud DataFlow and MySQL doesn't show the START_TIME and END_TIME of the Task

南笙酒味 提交于 2020-05-08 05:53:12
问题 I'm working on Spring batch and SCDF example. In this example I am reading CSV file and loading all the data to MySQL . I was able to successfully load the data into MySQL DB, but but UI doesn't show me START_TIME and END_TIME , even db doesn't holds any records. I've uploaded my code here: https://github.com/JavaNeed/spring-cloud-dataflow-example1.git spring-cloud-data-flow-server SpringCloudDataFlowServerApplication.java @EnableDataFlowServer @SpringBootApplication(exclude = {

Spring cloud data flow custom application properties

社会主义新天地 提交于 2020-01-10 06:10:02
问题 I created a custom spring cloud data flow application. I would like to create a stream with it and put some application properties in it, as we can add for the provided application log (0/3 properties): I tried with application.yml file in resources folder : spring: application: toto: 'titi' but it didn't work. I also tried to create some Properties.class public class Properties { //public static final String PREFIX = "portin"; private String toto; public Properties(String toto) { this.toto =

Spring cloud data flow custom application properties

岁酱吖の 提交于 2020-01-10 06:09:57
问题 I created a custom spring cloud data flow application. I would like to create a stream with it and put some application properties in it, as we can add for the provided application log (0/3 properties): I tried with application.yml file in resources folder : spring: application: toto: 'titi' but it didn't work. I also tried to create some Properties.class public class Properties { //public static final String PREFIX = "portin"; private String toto; public Properties(String toto) { this.toto =

Spring cloud data flow custom application properties

给你一囗甜甜゛ 提交于 2020-01-10 06:09:09
问题 I created a custom spring cloud data flow application. I would like to create a stream with it and put some application properties in it, as we can add for the provided application log (0/3 properties): I tried with application.yml file in resources folder : spring: application: toto: 'titi' but it didn't work. I also tried to create some Properties.class public class Properties { //public static final String PREFIX = "portin"; private String toto; public Properties(String toto) { this.toto =