class Google::Apis::DataflowV1b3::HotKeyDetection

Proto describing a hot key detected on a given WorkItem.

Attributes

hot_key_age[RW]

The age of the hot key measured from when it was first detected. Corresponds to the JSON property `hotKeyAge` @return [String]

system_name[RW]

System-defined name of the step containing this hot key. Unique across the workflow. Corresponds to the JSON property `systemName` @return [String]

user_step_name[RW]

User-provided name of the step that contains this hot key. Corresponds to the JSON property `userStepName` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 1825
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dataflow_v1b3/classes.rb, line 1830
def update!(**args)
  @hot_key_age = args[:hot_key_age] if args.key?(:hot_key_age)
  @system_name = args[:system_name] if args.key?(:system_name)
  @user_step_name = args[:user_step_name] if args.key?(:user_step_name)
end