top button
    TechnoConnect

What is DFS and who it's different form traditional file system?

0 votes
665 views
posted Nov 8, 2016 by Abhishek Maheshwari

Share this question
Facebook Share Button Twitter Share Button Google+ Share Button LinkedIn Share Button Multiple Social Share Button

1 Answer

+2 votes
 
Best answer

Distrubted File System is like a normal file system with different nodes where each node has the local file system to store the data. This multiple local file system will coordinate with some protocal to give the data to external clients.

The clients call this multiple machines with some protocal to get the data. Most of times communication protocal is tcp/ip. For accessing any information on Distirubute file system, you need client software.

Listing out the differences between Normal File System and Distrubted File System.

Normal File System:-

  1. Data is maintained in Single system. if machine is down, we can not able to get the data and failover chances are more.
    2.The time taken to read the data in this less as there are only read call to hardisk and the local processing time

Distributed File System:-

1.Data is replicated in different nodes. clients able to read the data, if any node is failed.Failover is less.
2.The time taken to read the data in this is more as we have network remote call and local data read to disc and coordiating the data from multiple systems

answer Nov 30, 2016 by Chetana Lobo
...