JavaScript is required

HDFS giải quyết bài toán single-point-of-failure cho Namenode bằng cách nào:

A.

sử dụng thêm secondary namenode theo cơ chế active-active. Cả Namenode và Secondary Namenode cùng online trong hệ thống

B.

Sử dụng Secondary namenode theo cơ chế active-passive. Secondary namenode chỉ hoạt động khi có vấn đề với namenode

C.

Sử dụng Secondary namenode theo cơ chế active-passive. Secondary namenode chỉ hoạt động khi có vấn đề với namenode

Trả lời:

Đáp án đúng: C


The question tests knowledge of how HDFS (Hadoop Distributed File System) addresses the single point of failure for the NameNode. The NameNode is the most important component in HDFS, responsible for managing the metadata of the file system. If the NameNode fails, the entire HDFS system becomes inaccessible. Therefore, ensuring high availability for the NameNode is crucial. The Secondary NameNode periodically backs up the metadata from the NameNode, mitigating data loss but not providing automatic failover. Modern solutions like NameNode HA use active-passive failover.

Câu hỏi liên quan