1

I have three spring cloud stream applications that are used to build data pipes.

Product Service: It creates product with name, price, etc... Discount Service: It decides discount for given product. Courier Service: It takes a product and dispatches the given product. The applications are in the Github GITHub

Software versions and applications are mentioned in README.md in GITHub page

1. Zookeeper log

2. Kafka Server log

3. Skipper Server log

4. Dataflow server log

5. Dataflow shell log

6. Product Service log

7. Discount Service log

8. Courier Service log

Stream Deployment Status enter image description here

Apps runtime status enter image description here

I am running all the instances on Microsoft Windows [Version 10.0.16299.1686] local machine without any dockers.

`Stream is created and deployed. It is always in DEPLOYING status even after few hours as shown in the picture.

I am not very sure what is wrong with it. Could anyone help here?`

Radhakrishna
  • 69
  • 1
  • 1
  • 7
  • You may want to update the post with where and how you're running SCDF/Skipper. If it is Docker Compose or Minikube, it is likely that your environment doesn't have enough memory/cpu capacity to deploy all the apps. There are many posts on this subject as to how to troubleshoot this situation. – Sabby Anandan Feb 28 '20 at 14:24
  • If it is not a resource constraint issue, you may want to check the logs of SCDF and Skipper. If the apps aren't deployed, there must be errors in the logs, which will indicate why they are failing. – Sabby Anandan Feb 28 '20 at 14:25
  • @Sabby Anandan, I have updated the post with apps runtime status and logs. I could not find any interesting messages. I am running all the instances on Microsoft Windows [Version 10.0.16299.1686] local machine without any dockers. – Radhakrishna Feb 28 '20 at 16:38
  • @Radhakrishna, did you solve this problem? I also have the same issue. – VSh Mar 18 '20 at 01:32
  • @VSh, i have not yet looked into debugging of the issue. I will update the post, if i would find a solution for it. – Radhakrishna Apr 10 '20 at 15:23
  • @VSh, What version of the data flow did you use? – Radhakrishna Apr 12 '20 at 09:53
  • Thanks @Radhakrishna. I've just posted an answer with the solution that helped me. – VSh Apr 13 '20 at 16:28

1 Answers1

2

For me, the solution was to add Actuator and Web Dependencies to the project. For more details, please see this post.

VSh
  • 438
  • 4
  • 13