Class: TencentCloud::Dlc::V20210125::StreamingStatistics
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dlc::V20210125::StreamingStatistics
- Defined in:
- lib/v20210125/models.rb
Overview
spark流任务统计信息
Instance Attribute Summary collapse
- #AverageInputRate ⇒ Object
- #AverageProcessingTime ⇒ Object
- #AverageSchedulingDelay ⇒ Object
- #AverageTotalDelay ⇒ Object
- #NumActiveBatches ⇒ Object
- #NumActiveReceivers ⇒ Object
- #NumInactiveReceivers ⇒ Object
- #NumRetainedCompletedBatches ⇒ Object
- #NumTotalCompletedBatches ⇒ Object
- #Receivers ⇒ Object
- #StartTime ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(starttime = nil, receivers = nil, numactivereceivers = nil, numinactivereceivers = nil, numactivebatches = nil, numretainedcompletedbatches = nil, numtotalcompletedbatches = nil, averageinputrate = nil, averageschedulingdelay = nil, averageprocessingtime = nil, averagetotaldelay = nil) ⇒ StreamingStatistics
constructor
A new instance of StreamingStatistics.
Constructor Details
#initialize(starttime = nil, receivers = nil, numactivereceivers = nil, numinactivereceivers = nil, numactivebatches = nil, numretainedcompletedbatches = nil, numtotalcompletedbatches = nil, averageinputrate = nil, averageschedulingdelay = nil, averageprocessingtime = nil, averagetotaldelay = nil) ⇒ StreamingStatistics
Returns a new instance of StreamingStatistics.
15055 15056 15057 15058 15059 15060 15061 15062 15063 15064 15065 15066 15067 |
# File 'lib/v20210125/models.rb', line 15055 def initialize(starttime=nil, receivers=nil, numactivereceivers=nil, numinactivereceivers=nil, numactivebatches=nil, numretainedcompletedbatches=nil, numtotalcompletedbatches=nil, averageinputrate=nil, averageschedulingdelay=nil, averageprocessingtime=nil, averagetotaldelay=nil) @StartTime = starttime @Receivers = receivers @NumActiveReceivers = numactivereceivers @NumInactiveReceivers = numinactivereceivers @NumActiveBatches = numactivebatches @NumRetainedCompletedBatches = numretainedcompletedbatches @NumTotalCompletedBatches = numtotalcompletedbatches @AverageInputRate = averageinputrate @AverageSchedulingDelay = averageschedulingdelay @AverageProcessingTime = averageprocessingtime @AverageTotalDelay = averagetotaldelay end |
Instance Attribute Details
#AverageInputRate ⇒ Object
15053 15054 15055 |
# File 'lib/v20210125/models.rb', line 15053 def AverageInputRate @AverageInputRate end |
#AverageProcessingTime ⇒ Object
15053 15054 15055 |
# File 'lib/v20210125/models.rb', line 15053 def AverageProcessingTime @AverageProcessingTime end |
#AverageSchedulingDelay ⇒ Object
15053 15054 15055 |
# File 'lib/v20210125/models.rb', line 15053 def AverageSchedulingDelay @AverageSchedulingDelay end |
#AverageTotalDelay ⇒ Object
15053 15054 15055 |
# File 'lib/v20210125/models.rb', line 15053 def AverageTotalDelay @AverageTotalDelay end |
#NumActiveBatches ⇒ Object
15053 15054 15055 |
# File 'lib/v20210125/models.rb', line 15053 def NumActiveBatches @NumActiveBatches end |
#NumActiveReceivers ⇒ Object
15053 15054 15055 |
# File 'lib/v20210125/models.rb', line 15053 def NumActiveReceivers @NumActiveReceivers end |
#NumInactiveReceivers ⇒ Object
15053 15054 15055 |
# File 'lib/v20210125/models.rb', line 15053 def NumInactiveReceivers @NumInactiveReceivers end |
#NumRetainedCompletedBatches ⇒ Object
15053 15054 15055 |
# File 'lib/v20210125/models.rb', line 15053 def NumRetainedCompletedBatches @NumRetainedCompletedBatches end |
#NumTotalCompletedBatches ⇒ Object
15053 15054 15055 |
# File 'lib/v20210125/models.rb', line 15053 def NumTotalCompletedBatches @NumTotalCompletedBatches end |
#Receivers ⇒ Object
15053 15054 15055 |
# File 'lib/v20210125/models.rb', line 15053 def Receivers @Receivers end |
#StartTime ⇒ Object
15053 15054 15055 |
# File 'lib/v20210125/models.rb', line 15053 def StartTime @StartTime end |
Instance Method Details
#deserialize(params) ⇒ Object
15069 15070 15071 15072 15073 15074 15075 15076 15077 15078 15079 15080 15081 |
# File 'lib/v20210125/models.rb', line 15069 def deserialize(params) @StartTime = params['StartTime'] @Receivers = params['Receivers'] @NumActiveReceivers = params['NumActiveReceivers'] @NumInactiveReceivers = params['NumInactiveReceivers'] @NumActiveBatches = params['NumActiveBatches'] @NumRetainedCompletedBatches = params['NumRetainedCompletedBatches'] @NumTotalCompletedBatches = params['NumTotalCompletedBatches'] @AverageInputRate = params['AverageInputRate'] @AverageSchedulingDelay = params['AverageSchedulingDelay'] @AverageProcessingTime = params['AverageProcessingTime'] @AverageTotalDelay = params['AverageTotalDelay'] end |