Can multiple clients write into an HDFS file concurrently?

Free Online Certification Courses – Learn Today. Lead Tomorrow. Forums Apache Hadoop Can multiple clients write into an HDFS file concurrently?

Viewing 1 reply thread
  • Author
    Posts
    • #4860
      DataFlair TeamDataFlair Team
      Spectator

      Can multiple clients write into an HDFS file concurrently?

    • #4862
      DataFlair TeamDataFlair Team
      Spectator

      No, multiple clients cannot write into an HDFS file at same time.
      When one client is given permission by Name node to write data on data node block, the block gets locked till the write operations is completed. If some other client requests to write on the same block of a particular file in data node, it is not permitted to do so. It has to wait till the write lock is revoked on a particular data node. All the requests are in the queue and only one client is allowed to write at a time.

      Follow the link to learn more about Write Operation in HDFS

Viewing 1 reply thread
  • You must be logged in to reply to this topic.