Class: Google::Apis::DataprocV1::ShuffleReadMetrics
- Inherits:
-
Object
- Object
- Google::Apis::DataprocV1::ShuffleReadMetrics
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataproc_v1/classes.rb,
lib/google/apis/dataproc_v1/representations.rb,
lib/google/apis/dataproc_v1/representations.rb
Overview
Shuffle data read by the task.
Instance Attribute Summary collapse
-
#fetch_wait_time_millis ⇒ Fixnum
Corresponds to the JSON property
fetchWaitTimeMillis
. -
#local_blocks_fetched ⇒ Fixnum
Corresponds to the JSON property
localBlocksFetched
. -
#local_bytes_read ⇒ Fixnum
Corresponds to the JSON property
localBytesRead
. -
#records_read ⇒ Fixnum
Corresponds to the JSON property
recordsRead
. -
#remote_blocks_fetched ⇒ Fixnum
Corresponds to the JSON property
remoteBlocksFetched
. -
#remote_bytes_read ⇒ Fixnum
Corresponds to the JSON property
remoteBytesRead
. -
#remote_bytes_read_to_disk ⇒ Fixnum
Corresponds to the JSON property
remoteBytesReadToDisk
. -
#remote_reqs_duration ⇒ Fixnum
Corresponds to the JSON property
remoteReqsDuration
. -
#shuffle_push_read_metrics ⇒ Google::Apis::DataprocV1::ShufflePushReadMetrics
Corresponds to the JSON property
shufflePushReadMetrics
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ShuffleReadMetrics
constructor
A new instance of ShuffleReadMetrics.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ShuffleReadMetrics
Returns a new instance of ShuffleReadMetrics.
7958 7959 7960 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7958 def initialize(**args) update!(**args) end |
Instance Attribute Details
#fetch_wait_time_millis ⇒ Fixnum
Corresponds to the JSON property fetchWaitTimeMillis
7916 7917 7918 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7916 def fetch_wait_time_millis @fetch_wait_time_millis end |
#local_blocks_fetched ⇒ Fixnum
Corresponds to the JSON property localBlocksFetched
7921 7922 7923 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7921 def local_blocks_fetched @local_blocks_fetched end |
#local_bytes_read ⇒ Fixnum
Corresponds to the JSON property localBytesRead
7926 7927 7928 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7926 def local_bytes_read @local_bytes_read end |
#records_read ⇒ Fixnum
Corresponds to the JSON property recordsRead
7931 7932 7933 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7931 def records_read @records_read end |
#remote_blocks_fetched ⇒ Fixnum
Corresponds to the JSON property remoteBlocksFetched
7936 7937 7938 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7936 def remote_blocks_fetched @remote_blocks_fetched end |
#remote_bytes_read ⇒ Fixnum
Corresponds to the JSON property remoteBytesRead
7941 7942 7943 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7941 def remote_bytes_read @remote_bytes_read end |
#remote_bytes_read_to_disk ⇒ Fixnum
Corresponds to the JSON property remoteBytesReadToDisk
7946 7947 7948 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7946 def remote_bytes_read_to_disk @remote_bytes_read_to_disk end |
#remote_reqs_duration ⇒ Fixnum
Corresponds to the JSON property remoteReqsDuration
7951 7952 7953 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7951 def remote_reqs_duration @remote_reqs_duration end |
#shuffle_push_read_metrics ⇒ Google::Apis::DataprocV1::ShufflePushReadMetrics
Corresponds to the JSON property shufflePushReadMetrics
7956 7957 7958 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7956 def shuffle_push_read_metrics @shuffle_push_read_metrics end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7963 def update!(**args) @fetch_wait_time_millis = args[:fetch_wait_time_millis] if args.key?(:fetch_wait_time_millis) @local_blocks_fetched = args[:local_blocks_fetched] if args.key?(:local_blocks_fetched) @local_bytes_read = args[:local_bytes_read] if args.key?(:local_bytes_read) @records_read = args[:records_read] if args.key?(:records_read) @remote_blocks_fetched = args[:remote_blocks_fetched] if args.key?(:remote_blocks_fetched) @remote_bytes_read = args[:remote_bytes_read] if args.key?(:remote_bytes_read) @remote_bytes_read_to_disk = args[:remote_bytes_read_to_disk] if args.key?(:remote_bytes_read_to_disk) @remote_reqs_duration = args[:remote_reqs_duration] if args.key?(:remote_reqs_duration) @shuffle_push_read_metrics = args[:shuffle_push_read_metrics] if args.key?(:shuffle_push_read_metrics) end |