Reputation: 183
I have seen heard there are types of clusters: Single Node,Pseudo Distributed and MultiNode. I would like to know about clear differences among them. I am new to this field.So please explain clearly.
Upvotes: 0
Views: 723
Reputation: 3146
These are the components of a Hadoop cluster:
In a single node mode: All components lie on a single machine
In a multi node mode: All components are distributed on several machines.
In a pseudo distributed mode: The components run on local machine which simulates a small cluster. HDFS is still used instead of the local filesystem
Upvotes: 1