Class: Google::Apis::DataflowV1b3::StragglerInfo
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::StragglerInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataflow_v1b3/classes.rb,
lib/google/apis/dataflow_v1b3/representations.rb,
lib/google/apis/dataflow_v1b3/representations.rb
Overview
Information useful for straggler identification and debugging.
Instance Attribute Summary collapse
-
#causes ⇒ Hash<String,Google::Apis::DataflowV1b3::StragglerDebuggingInfo>
The straggler causes, keyed by the string representation of the StragglerCause enum and contains specialized debugging information for each straggler cause.
-
#start_time ⇒ String
The time when the work item attempt became a straggler.
Instance Method Summary collapse
-
#initialize(**args) ⇒ StragglerInfo
constructor
A new instance of StragglerInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ StragglerInfo
Returns a new instance of StragglerInfo.
6075 6076 6077 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6075 def initialize(**args) update!(**args) end |
Instance Attribute Details
#causes ⇒ Hash<String,Google::Apis::DataflowV1b3::StragglerDebuggingInfo>
The straggler causes, keyed by the string representation of the StragglerCause
enum and contains specialized debugging information for each straggler cause.
Corresponds to the JSON property causes
6068 6069 6070 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6068 def causes @causes end |
#start_time ⇒ String
The time when the work item attempt became a straggler.
Corresponds to the JSON property startTime
6073 6074 6075 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6073 def start_time @start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6080 6081 6082 6083 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6080 def update!(**args) @causes = args[:causes] if args.key?(:causes) @start_time = args[:start_time] if args.key?(:start_time) end |