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
{{ message }}
This repository was archived by the owner on May 14, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: spring-cloud-dataflow-docs/src/main/asciidoc/getting-started.adoc
+197-2Lines changed: 197 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,6 @@ We then build an introductory Spring Cloud Data Flow application, discussing som
10
10
--
11
11
12
12
13
-
14
13
[[getting-started-system-requirements]]
15
14
== System Requirements
16
15
@@ -26,8 +25,204 @@ For the deployed streams applications communicate, either link:http://www.rabbit
26
25
If you would like to have the feature of upgrading and rolling back applications in Streams at runtime, you should install the Spring Cloud Skipper server.
As of Spring Cloud Data Flow 1.4, a Docker Compose file is provided to quickly bring up Spring Cloud Data Flow and its dependencies without having to obtain them manually.
32
+
When running, a composed system includes the latest GA release of Spring Cloud Data Flow Local Server using the Kafka binder for communication.
33
+
Docker Compose is required and it's recommended to use the link:https://docs.docker.com/compose/install/[latest version].
34
+
35
+
. Download the Spring Cloud Data Flow Local Server Docker Compose file:
And finally, modify the `app-import` service definition `command` attribute to replace `http://bit.ly/Celsius-SR1-stream-applications-kafka-10-maven` with `http://bit.ly/Celsius-SR1-stream-applications-rabbit-maven`.
195
+
196
+
197
+
. To enable analytics using redis as a backend, add the following configuration under the `services` section:
198
+
+
199
+
[source,yaml,subs=attributes]
200
+
----
201
+
redis:
202
+
image: redis:2.8
203
+
expose:
204
+
- "6379"
205
+
----
206
+
+
207
+
Update the `depends_on` attribute of the `dataflow-server` service definition to include:
208
+
+
209
+
[source,yaml,subs=attributes]
210
+
----
211
+
- redis
212
+
----
213
+
+
214
+
Then add the following entries to the `environment` block of the `dataflow-server` service definition:
Copy file name to clipboardExpand all lines: spring-cloud-dataflow-docs/src/main/asciidoc/index.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
= Spring Cloud Data Flow Reference Guide
2
-
Sabby Anandan; Marius Bogoevici; Eric Bottard; Mark Fisher; Ilayaperumal Gopinathan; Gunnar Hillert; Mark Pollack; Patrick Peralta; Glenn Renfro; Thomas Risberg; Dave Syer; David Turanski; Janne Valkealahti; Oleg Zhurakousky; Jay Bryant; Vinicius Carvalho
2
+
Sabby Anandan; Marius Bogoevici; Eric Bottard; Mark Fisher; Ilayaperumal Gopinathan; Gunnar Hillert; Mark Pollack; Patrick Peralta; Glenn Renfro; Thomas Risberg; Dave Syer; David Turanski; Janne Valkealahti; Oleg Zhurakousky; Jay Bryant; Vinicius Carvalho; Chris Schaefer
0 commit comments