Class: Google::Apis::DataprocV1::StageShuffleReadMetrics

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 for the stage.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ StageShuffleReadMetrics

Returns a new instance of StageShuffleReadMetrics.



10626
10627
10628
# File 'lib/google/apis/dataproc_v1/classes.rb', line 10626

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

Instance Attribute Details

#bytes_readFixnum

Corresponds to the JSON property bytesRead

Returns:

  • (Fixnum)


10579
10580
10581
# File 'lib/google/apis/dataproc_v1/classes.rb', line 10579

def bytes_read
  @bytes_read
end

#fetch_wait_time_millisFixnum

Corresponds to the JSON property fetchWaitTimeMillis

Returns:

  • (Fixnum)


10584
10585
10586
# File 'lib/google/apis/dataproc_v1/classes.rb', line 10584

def fetch_wait_time_millis
  @fetch_wait_time_millis
end

#local_blocks_fetchedFixnum

Corresponds to the JSON property localBlocksFetched

Returns:

  • (Fixnum)


10589
10590
10591
# File 'lib/google/apis/dataproc_v1/classes.rb', line 10589

def local_blocks_fetched
  @local_blocks_fetched
end

#local_bytes_readFixnum

Corresponds to the JSON property localBytesRead

Returns:

  • (Fixnum)


10594
10595
10596
# File 'lib/google/apis/dataproc_v1/classes.rb', line 10594

def local_bytes_read
  @local_bytes_read
end

#records_readFixnum

Corresponds to the JSON property recordsRead

Returns:

  • (Fixnum)


10599
10600
10601
# File 'lib/google/apis/dataproc_v1/classes.rb', line 10599

def records_read
  @records_read
end

#remote_blocks_fetchedFixnum

Corresponds to the JSON property remoteBlocksFetched

Returns:

  • (Fixnum)


10604
10605
10606
# File 'lib/google/apis/dataproc_v1/classes.rb', line 10604

def remote_blocks_fetched
  @remote_blocks_fetched
end

#remote_bytes_readFixnum

Corresponds to the JSON property remoteBytesRead

Returns:

  • (Fixnum)


10609
10610
10611
# File 'lib/google/apis/dataproc_v1/classes.rb', line 10609

def remote_bytes_read
  @remote_bytes_read
end

#remote_bytes_read_to_diskFixnum

Corresponds to the JSON property remoteBytesReadToDisk

Returns:

  • (Fixnum)


10614
10615
10616
# File 'lib/google/apis/dataproc_v1/classes.rb', line 10614

def remote_bytes_read_to_disk
  @remote_bytes_read_to_disk
end

#remote_reqs_durationFixnum

Corresponds to the JSON property remoteReqsDuration

Returns:

  • (Fixnum)


10619
10620
10621
# File 'lib/google/apis/dataproc_v1/classes.rb', line 10619

def remote_reqs_duration
  @remote_reqs_duration
end

#stage_shuffle_push_read_metricsGoogle::Apis::DataprocV1::StageShufflePushReadMetrics

Corresponds to the JSON property stageShufflePushReadMetrics



10624
10625
10626
# File 'lib/google/apis/dataproc_v1/classes.rb', line 10624

def stage_shuffle_push_read_metrics
  @stage_shuffle_push_read_metrics
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10631
10632
10633
10634
10635
10636
10637
10638
10639
10640
10641
10642
# File 'lib/google/apis/dataproc_v1/classes.rb', line 10631

def update!(**args)
  @bytes_read = args[:bytes_read] if args.key?(:bytes_read)
  @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)
  @stage_shuffle_push_read_metrics = args[:stage_shuffle_push_read_metrics] if args.key?(:stage_shuffle_push_read_metrics)
end