Class: Pwrake::TaskWrapper

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/pwrake/task/task_wrapper.rb

Constant Summary collapse

@@current_id =
1
@@task_logger =
nil
@@instances =
[]

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(task, task_args = nil) ⇒ TaskWrapper

Returns a new instance of TaskWrapper.



14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/pwrake/task/task_wrapper.rb', line 14

def initialize(task,task_args=nil)
  @task = task
  @task_args = task_args
  @property = task.property
  @task_id = @@current_id
  @@current_id += 1
  @location = []
  @group = []
  @group_id = nil
  @suggest_location = nil
  @file_stat = nil
  @input_file_size = nil
  @input_file_mtime = nil
  @rank = nil
  @priority = nil
  @executed = false
  @assigned = []
  @exec_host = nil
  @exec_host_id = nil
  @tried_hosts = {}
  @n_retry = @property.retry || Rake.application.pwrake_options["RETRY"] || 1
  @@instances << self
end

Instance Attribute Details

#assignedObject (readonly)

Returns the value of attribute assigned.



43
44
45
# File 'lib/pwrake/task/task_wrapper.rb', line 43

def assigned
  @assigned
end

#exec_hostObject

Returns the value of attribute exec_host.



47
48
49
# File 'lib/pwrake/task/task_wrapper.rb', line 47

def exec_host
  @exec_host
end

#exec_host_idObject

Returns the value of attribute exec_host_id.



47
48
49
# File 'lib/pwrake/task/task_wrapper.rb', line 47

def exec_host_id
  @exec_host_id
end

#executedObject

Returns the value of attribute executed.



46
47
48
# File 'lib/pwrake/task/task_wrapper.rb', line 46

def executed
  @executed
end

#file_statObject (readonly)

Returns the value of attribute file_stat.



41
42
43
# File 'lib/pwrake/task/task_wrapper.rb', line 41

def file_stat
  @file_stat
end

#groupObject (readonly)

Returns the value of attribute group.



41
42
43
# File 'lib/pwrake/task/task_wrapper.rb', line 41

def group
  @group
end

#group_idObject (readonly)

Returns the value of attribute group_id.



41
42
43
# File 'lib/pwrake/task/task_wrapper.rb', line 41

def group_id
  @group_id
end

#locationObject

Returns the value of attribute location.



42
43
44
# File 'lib/pwrake/task/task_wrapper.rb', line 42

def location
  @location
end

#n_used_coresObject (readonly)

Returns the value of attribute n_used_cores.



45
46
47
# File 'lib/pwrake/task/task_wrapper.rb', line 45

def n_used_cores
  @n_used_cores
end

#shell_idObject

Returns the value of attribute shell_id.



48
49
50
# File 'lib/pwrake/task/task_wrapper.rb', line 48

def shell_id
  @shell_id
end

#statusObject

Returns the value of attribute status.



48
49
50
# File 'lib/pwrake/task/task_wrapper.rb', line 48

def status
  @status
end

#taskObject (readonly)

Returns the value of attribute task.



41
42
43
# File 'lib/pwrake/task/task_wrapper.rb', line 41

def task
  @task
end

#task_idObject (readonly)

Returns the value of attribute task_id.



41
42
43
# File 'lib/pwrake/task/task_wrapper.rb', line 41

def task_id
  @task_id
end

#tried_hostsObject (readonly)

Returns the value of attribute tried_hosts.



44
45
46
# File 'lib/pwrake/task/task_wrapper.rb', line 44

def tried_hosts
  @tried_hosts
end

Class Method Details

.clear_rankObject



70
71
72
73
# File 'lib/pwrake/task/task_wrapper.rb', line 70

def self.clear_rank
  Log.debug "#{self}.clear_rank"
  @@instances.each{|w| w.clear_rank}
end

.close_task_loggerObject



66
67
68
# File 'lib/pwrake/task/task_wrapper.rb', line 66

def self.close_task_logger
  @@task_logger.close if @@task_logger
end

.format_time(t) ⇒ Object



50
51
52
# File 'lib/pwrake/task/task_wrapper.rb', line 50

def self.format_time(t)
  t.strftime("%F %T.%L")
end

.init_task_logger(option) ⇒ Object



54
55
56
57
58
59
60
61
62
63
64
# File 'lib/pwrake/task/task_wrapper.rb', line 54

def self.init_task_logger(option)
  if dir = option['LOG_DIR']
    fn = File.join(dir,option['TASK_CSV_FILE'])
    @@task_logger = CSV.open(fn,'w')
    @@task_logger.puts %w[
      task_id task_name start_time end_time elap_time preq
      preq_host preq_loc exec_host shell_id has_action executed ncore
      file_size file_mtime file_host write_loc
    ]
  end
end

Instance Method Details

#acceptable_for(host_info) ⇒ Object



360
361
362
363
364
365
366
367
368
369
370
371
# File 'lib/pwrake/task/task_wrapper.rb', line 360

def acceptable_for(host_info)
  unless host_info
    return true
  end
  unless @property.accept_host(host_info)
    return false
  end
  if @property.reserve
    return true
  end
  host_info.accept_core(@property.use_cores(host_info.ncore))
end

#clear_rankObject



284
285
286
# File 'lib/pwrake/task/task_wrapper.rb', line 284

def clear_rank
  @rank = nil
end

#file_locality(nodes) ⇒ Object



193
194
195
196
197
198
199
200
201
202
# File 'lib/pwrake/task/task_wrapper.rb', line 193

def file_locality(nodes)
  if nodes.empty? || !@exec_host_id
    nil  # not available
  elsif nodes.any?{|node|
      HostMap.ipmatch_for_name(node).include?(@exec_host_id)}
    "L"  # Local
  else
    "R"  # Remote
  end
end

#file_mtimeObject



292
293
294
# File 'lib/pwrake/task/task_wrapper.rb', line 292

def file_mtime
  @file_stat ? @file_stat.mtime : Time.at(0)
end

#file_sizeObject



288
289
290
# File 'lib/pwrake/task/task_wrapper.rb', line 288

def file_size
  @file_stat ? @file_stat.size : 0
end

#has_action?Boolean

Returns:

  • (Boolean)


216
217
218
# File 'lib/pwrake/task/task_wrapper.rb', line 216

def has_action?
  !@task.actions.empty?
end

#has_input_file?Boolean

Returns:

  • (Boolean)


212
213
214
# File 'lib/pwrake/task/task_wrapper.rb', line 212

def has_input_file?
  is_file_task? && !prerequisites.empty?
end

#has_output_file?Boolean

Returns:

  • (Boolean)


208
209
210
# File 'lib/pwrake/task/task_wrapper.rb', line 208

def has_output_file?
  is_file_task? && !actions.empty?
end

#input_file_mtimeObject



306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
# File 'lib/pwrake/task/task_wrapper.rb', line 306

def input_file_mtime
  if has_input_file? && @input_file_mtime.nil?
    hash = Hash.new
    max_sz = 0
    prerequisites.each do |preq|
      t = Rake.application[preq].wrapper
      sz = t.file_size
      if sz > 0
        hash[t] = sz
        if sz > max_sz
          max_sz = sz
        end
      end
    end
    half_max_sz = max_sz / 2
    hash.each do |t,sz|
      if sz > half_max_sz
        time = t.file_mtime
        if @input_file_mtime.nil? || @input_file_mtime < time
          @input_file_mtime = time
        end
      end
    end
  end
  @input_file_mtime
end

#input_file_sizeObject



296
297
298
299
300
301
302
303
304
# File 'lib/pwrake/task/task_wrapper.rb', line 296

def input_file_size
  unless @input_file_size
    @input_file_size = 0
    prerequisites.each do |preq|
      @input_file_size += Rake.application[preq].wrapper.file_size
    end
  end
  @input_file_size
end

#is_file_task?Boolean

Returns:

  • (Boolean)


204
205
206
# File 'lib/pwrake/task/task_wrapper.rb', line 204

def is_file_task?
  @task.kind_of?(Rake::FileTask)
end

#log_taskObject



120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
# File 'lib/pwrake/task/task_wrapper.rb', line 120

def log_task
  @time_end = Time.now
  @clock_end = Pwrake.clock
  #
  sug_host = suggest_location()
  shell = Pwrake::Shell.current
  #
  if sug_host && !sug_host.empty? && shell && !actions.empty?
    Rake.application.count( sug_host, shell.host )
  end
  return if !@@task_logger
  #
  elap = @clock_end - @clock_start
  if has_output_file?
    RANK_STAT.add_sample(rank,elap)
  end
  #
  # locality check
  loc_na = true
  preq_loc = prerequisites.map do |preq|
    locs = Rake.application[preq].wrapper.location
    if loc = file_locality(locs)
      loc_na = false
      loc
    else
      "n"
    end
  end.join("")
  preq_loc = nil if loc_na
  write_loc = file_locality(@location)
  #
  if @file_stat
    fstat = [ @file_stat.size, @file_stat.mtime,
              self.location.join('|'), write_loc ]
  else
    fstat = [nil]*4
  end
  #
  # task_id task_name start_time end_time elap_time preq preq_host
  # preq_loc exec_host shell_id has_action executed ncore
  # file_size file_mtime file_host write_loc
  #
  row = [ @task_id, name, @time_start, @time_end, "%.6f"%elap,
          prerequisites, sug_host, preq_loc, @exec_host, @shell_id,
          (actions.empty?) ? 0 : 1,
          (@executed) ? 1 : 0,
          @n_used_cores,
        ] + fstat
  row.map!{|x|
    if x.kind_of?(Time)
      TaskWrapper.format_time(x)
    elsif x.kind_of?(Array)
      if x.empty?
        nil
      else
        x.join('|')
      end
    else
      x
    end
  }
  @@task_logger << row
  #
  clsname = @task.class.to_s.sub(/^(Rake|Pwrake)::/o,"")
  msg = '%s[%s] status=%s id=%d elap=%.6f exec_host=%s' %
    [clsname,name,@status,@task_id,elap,@exec_host]
  if @status=="end"
    Log.info msg
  else
    Log.error msg
  end
end

#no_more_retryObject



84
85
86
# File 'lib/pwrake/task/task_wrapper.rb', line 84

def no_more_retry
  @n_retry == 0
end

#postprocess(postproc) ⇒ Object



88
89
90
91
92
93
94
95
96
97
98
99
100
# File 'lib/pwrake/task/task_wrapper.rb', line 88

def postprocess(postproc)
  @executed = true if !@task.actions.empty?
  #tm_taskend = Pwrake.clock
  if is_file_task?
    #t = Pwrake.clock
    if File.exist?(name)
      @file_stat = File::Stat.new(name)
      @location = postproc.run(self)
    end
  end
  #Log.debug "postprocess time=#{Pwrake.clock-tm_taskend}"
  log_task
end

#preprocessObject



75
76
77
78
# File 'lib/pwrake/task/task_wrapper.rb', line 75

def preprocess
  @time_start = Time.now
  @clock_start = Pwrake.clock
end

#priorityObject



333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
# File 'lib/pwrake/task/task_wrapper.rb', line 333

def priority
  if has_input_file? && @priority.nil?
    sum_tm = 0
    sum_sz = 0
    prerequisites.each do |preq|
      pq = Rake.application[preq].wrapper
      sz = pq.file_size
      if sz > 0
        tm = pq.file_mtime - START_TIME
        sum_tm += tm * sz
        sum_sz += sz
      end
    end
    if sum_sz > 0
      @priority = sum_tm / sum_sz
    else
      @priority = 0
    end
    Log.debug "task_name=#{name} priority=#{@priority} sum_file_size=#{sum_sz}"
  end
  @priority || 0
end

#rankObject



260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
# File 'lib/pwrake/task/task_wrapper.rb', line 260

def rank
  if @rank.nil?
    if subsequents.nil? || subsequents.empty?
      @rank = 0
    else
      max_rank = 0
      subsequents.each do |subsq|
        r = subsq.wrapper.rank
        if max_rank < r
          max_rank = r
        end
      end
      if has_output_file?
        step = 1
      else
        step = 0
      end
      @rank = max_rank + step
    end
    Log.debug "Task[#{name}] rank=#{@rank.inspect}"
  end
  @rank
end

#retry?Boolean

Returns:

  • (Boolean)


80
81
82
# File 'lib/pwrake/task/task_wrapper.rb', line 80

def retry?
  @status != "end" && @n_retry > 0
end

#retry_or_subsequentObject



102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# File 'lib/pwrake/task/task_wrapper.rb', line 102

def retry_or_subsequent
  @tried_hosts[@exec_host] = true
  if @status=="end"
    @task.pw_enq_subsequents
  elsif @n_retry > 0
    @suggest_location = []
    s="retry task (retry_count=#{@n_retry}): #{name}"
    Log.warn(s)
    $stderr.puts(s)
    @n_retry -= 1
    Rake.application.task_queue.enq(self)
  else
    s="give up retry (retry_count=#{@n_retry}): #{name}"
    Log.error(s)
    $stderr.puts(s)
  end
end

#set_used_cores(ncore) ⇒ Object



356
357
358
# File 'lib/pwrake/task/task_wrapper.rb', line 356

def set_used_cores(ncore)
  @n_used_cores = ncore
end

#suggest_locationObject



232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
# File 'lib/pwrake/task/task_wrapper.rb', line 232

def suggest_location
  if has_input_file? && @suggest_location.nil?
    @suggest_location = []
    loc_fsz = Hash.new(0)
    prerequisites.each do |preq|
      t = Rake.application[preq].wrapper
      loc = t.location
      fsz = t.file_size
      if loc && fsz > 0
        loc.each do |h|
          loc_fsz[h] += fsz
        end
      end
    end
    #Log.debug "input=#{prerequisites.join('|')}"
    if !loc_fsz.empty?
      half_max_fsz = loc_fsz.values.max / 2
      Log.debug "loc_fsz=#{loc_fsz.inspect} half_max_fsz=#{half_max_fsz}"
      loc_fsz.each do |h,sz|
        if sz > half_max_fsz
          @suggest_location << h
        end
      end
    end
  end
  @suggest_location
end

#suggest_location=(a) ⇒ Object



228
229
230
# File 'lib/pwrake/task/task_wrapper.rb', line 228

def suggest_location=(a)
  @suggest_location = a
end

#tried_host?(host_info) ⇒ Boolean

Returns:

  • (Boolean)


373
374
375
# File 'lib/pwrake/task/task_wrapper.rb', line 373

def tried_host?(host_info)
  host_info && @tried_hosts[host_info.name]
end