Class: Google::Apis::DataprocV1::ShuffleReadMetrics

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ShuffleReadMetrics

Returns a new instance of ShuffleReadMetrics.



8398
8399
8400
# File 'lib/google/apis/dataproc_v1/classes.rb', line 8398

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#fetch_wait_time_millisFixnum

Corresponds to the JSON property fetchWaitTimeMillis

Returns:

  • (Fixnum)


8356
8357
8358
# File 'lib/google/apis/dataproc_v1/classes.rb', line 8356

def fetch_wait_time_millis
  @fetch_wait_time_millis
end

#local_blocks_fetchedFixnum

Corresponds to the JSON property localBlocksFetched

Returns:

  • (Fixnum)


8361
8362
8363
# File 'lib/google/apis/dataproc_v1/classes.rb', line 8361

def local_blocks_fetched
  @local_blocks_fetched
end

#local_bytes_readFixnum

Corresponds to the JSON property localBytesRead

Returns:

  • (Fixnum)


8366
8367
8368
# File 'lib/google/apis/dataproc_v1/classes.rb', line 8366

def local_bytes_read
  @local_bytes_read
end

#records_readFixnum

Corresponds to the JSON property recordsRead

Returns:

  • (Fixnum)


8371
8372
8373
# File 'lib/google/apis/dataproc_v1/classes.rb', line 8371

def records_read
  @records_read
end

#remote_blocks_fetchedFixnum

Corresponds to the JSON property remoteBlocksFetched

Returns:

  • (Fixnum)


8376
8377
8378
# File 'lib/google/apis/dataproc_v1/classes.rb', line 8376

def remote_blocks_fetched
  @remote_blocks_fetched
end

#remote_bytes_readFixnum

Corresponds to the JSON property remoteBytesRead

Returns:

  • (Fixnum)


8381
8382
8383
# File 'lib/google/apis/dataproc_v1/classes.rb', line 8381

def remote_bytes_read
  @remote_bytes_read
end

#remote_bytes_read_to_diskFixnum

Corresponds to the JSON property remoteBytesReadToDisk

Returns:

  • (Fixnum)


8386
8387
8388
# File 'lib/google/apis/dataproc_v1/classes.rb', line 8386

def remote_bytes_read_to_disk
  @remote_bytes_read_to_disk
end

#remote_reqs_durationFixnum

Corresponds to the JSON property remoteReqsDuration

Returns:

  • (Fixnum)


8391
8392
8393
# File 'lib/google/apis/dataproc_v1/classes.rb', line 8391

def remote_reqs_duration
  @remote_reqs_duration
end

#shuffle_push_read_metricsGoogle::Apis::DataprocV1::ShufflePushReadMetrics

Corresponds to the JSON property shufflePushReadMetrics



8396
8397
8398
# File 'lib/google/apis/dataproc_v1/classes.rb', line 8396

def shuffle_push_read_metrics
  @shuffle_push_read_metrics
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8403
8404
8405
8406
8407
8408
8409
8410
8411
8412
8413
# File 'lib/google/apis/dataproc_v1/classes.rb', line 8403

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