Class: DispatchPolicy::PoliciesController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- DispatchPolicy::PoliciesController
- Defined in:
- app/controllers/dispatch_policy/policies_controller.rb
Constant Summary collapse
- DRAIN_MAX_PER_REQUEST =
10_000
Instance Method Summary collapse
-
#drain ⇒ Object
Force-admits every staged job across every partition of the policy, bypassing all gates.
- #index ⇒ Object
- #pause ⇒ Object
- #resume ⇒ Object
- #show ⇒ Object
Instance Method Details
#drain ⇒ Object
Force-admits every staged job across every partition of the policy, bypassing all gates. Walks partitions in pending-DESC order so the busiest ones drain first. Bounded at DRAIN_MAX_PER_REQUEST per click.
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
# File 'app/controllers/dispatch_policy/policies_controller.rb', line 94 def drain drained = 0 Partition.for_policy(@policy_name) .where("pending_count > 0") .order(pending_count: :desc, id: :asc) .limit(500) .each do |partition| break if drained >= DRAIN_MAX_PER_REQUEST batch, _ = PartitionsController.drain_partition!(partition) drained += batch end remaining = Partition.for_policy(@policy_name).sum(:pending_count) notice = if remaining.positive? "Drained #{drained} job(s) across this policy; #{remaining} still pending — click drain again to continue." else "Drained #{drained} job(s); policy fully drained." end redirect_to policy_path(@policy_name), notice: notice end |
#index ⇒ Object
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'app/controllers/dispatch_policy/policies_controller.rb', line 9 def index registry_names = DispatchPolicy.registry.names db_names = Partition.distinct.pluck(:policy_name) names = (registry_names + db_names).uniq.sort in_flight_by_policy = InflightJob.where(policy_name: names).group(:policy_name).count @rows = names.map do |name| partitions = Partition.for_policy(name) { name: name, registered: registry_names.include?(name), pending: partitions.sum(:pending_count), in_flight: in_flight_by_policy[name] || 0, partitions: partitions.count, paused_count: partitions.paused.count } end end |
#pause ⇒ Object
81 82 83 84 |
# File 'app/controllers/dispatch_policy/policies_controller.rb', line 81 def pause Partition.for_policy(@policy_name).update_all(status: "paused", updated_at: Time.current) redirect_to policy_path(@policy_name), notice: "Policy paused." end |
#resume ⇒ Object
86 87 88 89 |
# File 'app/controllers/dispatch_policy/policies_controller.rb', line 86 def resume Partition.for_policy(@policy_name).update_all(status: "active", updated_at: Time.current) redirect_to policy_path(@policy_name), notice: "Policy resumed." end |
#show ⇒ Object
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 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 |
# File 'app/controllers/dispatch_policy/policies_controller.rb', line 29 def show @policy_object = DispatchPolicy.registry.fetch(@policy_name) @partitions = Partition.for_policy(@policy_name) .order(Arel.sql("pending_count DESC, last_admit_at DESC NULLS LAST")) .limit(100) @top_admitted = Partition.for_policy(@policy_name) .order(total_admitted: :desc) .limit(20) @totals = { pending: Partition.for_policy(@policy_name).sum(:pending_count), in_flight: InflightJob.where(policy_name: @policy_name).count, partitions: Partition.for_policy(@policy_name).count } now = Time.current @windows = { "1m" => Repository.tick_summary(policy_name: @policy_name, since: now - 60), "5m" => Repository.tick_summary(policy_name: @policy_name, since: now - 5 * 60), "15m" => Repository.tick_summary(policy_name: @policy_name, since: now - 15 * 60) } @denied_reasons = Repository.denied_reasons_summary(policy_name: @policy_name, since: now - 15 * 60) @round_trip = Repository.partition_round_trip_stats(policy_name: @policy_name) @sparkline = Repository.tick_samples_buckets(policy_name: @policy_name, since: now - 30 * 60, bucket_seconds: 60) @pending_trend = Repository.trend_direction(@sparkline.map { |b| b[:pending_total] }) cfg = DispatchPolicy.config @capacity = { admitted_per_minute: @windows["1m"][:jobs_admitted], adapter_target_jps: cfg.adapter_throughput_target, avg_tick_ms: @windows["1m"][:avg_duration_ms], max_tick_ms: @windows["1m"][:max_duration_ms], tick_max_duration_ms: cfg.tick_max_duration.to_i * 1000 } @hints = OperatorHints.for( tick_max_duration_ms: @capacity[:tick_max_duration_ms], avg_tick_ms: @capacity[:avg_tick_ms], max_tick_ms: @capacity[:max_tick_ms], pending_total: @totals[:pending], admitted_per_minute: @capacity[:admitted_per_minute], forward_failures: @windows["1m"][:forward_failures], jobs_admitted: @windows["1m"][:jobs_admitted], active_partitions: @round_trip[:active_partitions], never_checked: @round_trip[:never_checked], in_backoff: @round_trip[:in_backoff], total_partitions: @totals[:partitions], adapter_target_jps: @capacity[:adapter_target_jps], pending_trend: @pending_trend ) end |