Skip to content

Commit bb08ecc

Browse files
committed
Small fixes
1 parent ce6c22b commit bb08ecc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

developer-tools/java/chapters/ch11-bigdata.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
*PURPOSE*: This chapter explains how to use Docker to create a Hadoop cluster and a Big Data application in Java. It highlights several concepts like service scale, dynamic port allocation, container links, integration tests, debugging, etc.
66

7-
Big Data applications usually involves distributed processing using tools like Hadoop or Spark. These services can be scaled up, running with several nodes to support more parallelism. Running tools like Hadoop and Spark on Docker makes it easy to scale them up and down. This is very useful to simulate a cluster on development time and also to run integration tests before taking your application to production.
7+
Big Data applications usually involve distributed processing using tools like Hadoop or Spark. These services can be scaled up, running with several nodes to support more parallelism. Running tools like Hadoop and Spark on Docker makes it easy to scale them up and down. This is very useful to simulate a cluster on development time and also to run integration tests before taking your application to production.
88

9-
The application on this example reads a file, count how many words are on that file using a MapReduce implemented on Hadoop and then saves the result on MongoDB. In order to do that, we will run a Hadoop cluster and a MongoDB server on Docker.
9+
The application on this example reads a file, count how many words are on that file using a MapReduce job implemented on Hadoop and then saves the result on a MongoDB database. In order to do that, we will run a Hadoop cluster and a MongoDB server on Docker.
1010

1111
[NOTE]
1212
====
@@ -49,7 +49,7 @@ See the logs and wait until everything is up:
4949
docker-compose logs -f
5050
----
5151

52-
In order to see if everything is up, open `http://localhost:8088/cluster`. You should see 1 active node when everything is up.
52+
In order to see if everything is up, open `http://localhost:8088/cluster`. You should see 1 active node when everything is up and running.
5353

5454
image::docker-bigdata-03.png[]
5555

0 commit comments

Comments
 (0)