Class: Naf::QueuedJob

Inherits:
NafBase show all
Defined in:
app/models/naf/queued_job.rb

Class Method Summary collapse

Methods inherited from NafBase

full_table_name_prefix

Class Method Details

.check_weight_sum(affinity_id, running_job_weight_count, machine_weight_count) ⇒ Object



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
# File 'app/models/naf/queued_job.rb', line 139

def self.check_weight_sum(affinity_id, running_job_weight_count, machine_weight_count)
  where("
    id IN (
      SELECT
        historical_job_id
      FROM
        #{::Naf.schema_name}.historical_job_affinity_tabs AS t
      WHERE EXISTS (
        SELECT
          1
        FROM
          #{::Naf.schema_name}.queued_jobs AS j
        WHERE
          t.historical_job_id = j.id
      ) AND EXISTS (
        SELECT
          1
        FROM
          #{::Naf.schema_name}.affinities AS a
        WHERE
          a.id = '#{affinity_id}' AND
            t.affinity_id = a.id
      ) AND COALESCE(affinity_parameter, 0) + #{running_job_weight_count} > #{machine_weight_count}
    )
  ")
end

.exclude_run_group_names(names) ⇒ Object



47
48
49
50
51
52
53
# File 'app/models/naf/queued_job.rb', line 47

def self.exclude_run_group_names(names)
  if names.present?
    where("application_run_group_name NOT IN (?)", names)
  else
    where({})
  end
end

.is_not_restricted_by_run_group(machine) ⇒ Object



55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# File 'app/models/naf/queued_job.rb', line 55

def self.is_not_restricted_by_run_group(machine)
  sql = <<-SQL
  (
    #{Naf.schema_name}.queued_jobs.application_run_group_name is null OR
    #{Naf.schema_name}.queued_jobs.application_run_group_limit is null OR
    #{Naf.schema_name}.application_run_group_restrictions.application_run_group_restriction_name = 'no limit' OR
    (
      #{Naf.schema_name}.application_run_group_restrictions.application_run_group_restriction_name = 'limited per machine' AND
      (select
        count(*) < #{Naf.schema_name}.queued_jobs.application_run_group_limit
       from
         #{Naf.schema_name}.running_jobs as rj
       where
         rj.application_run_group_name = #{Naf.schema_name}.queued_jobs.application_run_group_name and
         rj.started_on_machine_id = #{machine.id})
    ) OR
    (
      application_run_group_restrictions.application_run_group_restriction_name = 'limited per all machines' AND
      (select
        count(*) < #{Naf.schema_name}.queued_jobs.application_run_group_limit
       from
         #{Naf.schema_name}.running_jobs as rj
       where
         rj.application_run_group_name = #{Naf.schema_name}.queued_jobs.application_run_group_name)
    )
  )
  SQL

  return joins(:application_run_group_restriction).
    where(sql)
end

.order_by_priorityObject


*** Class Methods *** +++++++++++++++++++++++++



43
44
45
# File 'app/models/naf/queued_job.rb', line 43

def self.order_by_priority
  order("priority, created_at")
end

.prerequisites_finishedObject



102
103
104
105
106
107
108
109
110
111
112
113
114
115
# File 'app/models/naf/queued_job.rb', line 102

def self.prerequisites_finished
  where("NOT EXISTS (
    SELECT 1
    FROM #{::Naf.schema_name}.historical_job_prerequisites AS p
    WHERE p.historical_job_id = #{::Naf.schema_name}.queued_jobs.id AND
      EXISTS (
        SELECT 1
        FROM #{::Naf.schema_name}.historical_jobs AS j
        WHERE p.prerequisite_historical_job_id = j.id AND
          j.finished_at IS NULL
      )
    )"
  )
end

.runnable_by_machine(machine) ⇒ Object



87
88
89
90
91
92
93
94
95
96
97
98
99
100
# File 'app/models/naf/queued_job.rb', line 87

def self.runnable_by_machine(machine)
  where("NOT EXISTS (
    SELECT 1
    FROM #{::Naf.schema_name}.historical_job_affinity_tabs AS t
    WHERE t.historical_job_id = #{::Naf.schema_name}.queued_jobs.id AND
      NOT EXISTS (
        SELECT 1
        FROM #{::Naf.schema_name}.machine_affinity_slots AS s
        WHERE s.affinity_id = t.affinity_id AND
          s.machine_id = #{machine.id}
      )
    )"
  )
end

.weight_available_on_machine(machine) ⇒ Object



117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# File 'app/models/naf/queued_job.rb', line 117

def self.weight_available_on_machine(machine)
  machine_parameter_weights = {}
  machine.machine_affinity_slots.each do |slot|
    machine_parameter_weights[slot.affinity_id] = slot.affinity_parameter.to_f
  end

  running_job_weights = ::Naf::RunningJob.affinity_weights(machine)

  queued_jobs = []
  machine_parameter_weights.each do |affinity_id, parameter_weight|
    queued_jobs |= ::Naf::QueuedJob.
      check_weight_sum(affinity_id, running_job_weights[affinity_id], parameter_weight).
      map(&:id)
  end

  if queued_jobs.empty?
    where({})
  else
    where("#{::Naf.schema_name}.queued_jobs.id NOT IN (?)", queued_jobs)
  end
end