Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

Class: Aws::DataSync::Types::HdfsNameNode

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb

Overview

The NameNode of the Hadoop Distributed File System (HDFS). The NameNode manages the file system's namespace. The NameNode performs operations such as opening, closing, and renaming files and directories. The NameNode contains the information to map blocks of data to the DataNodes.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#hostnameString

The hostname of the NameNode in the HDFS cluster. This value is the IP address or Domain Name Service (DNS) name of the NameNode. An agent that's installed on-premises uses this hostname to communicate with the NameNode in the network.

Returns:

  • (String)

3568
3569
3570
3571
3572
3573
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 3568

class HdfsNameNode < Struct.new(
  :hostname,
  :port)
  SENSITIVE = []
  include Aws::Structure
end

#portInteger

The port that the NameNode uses to listen to client requests.

Returns:

  • (Integer)

3568
3569
3570
3571
3572
3573
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 3568

class HdfsNameNode < Struct.new(
  :hostname,
  :port)
  SENSITIVE = []
  include Aws::Structure
end