-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
985 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
web: bundle exec puma -C config/puma.rb | ||
release: bundle exec rake db:migrate | ||
worker: bundle exec rake solid_queue:start |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
web: env RUBY_DEBUG_OPEN=true bin/rails server | ||
vite: bin/vite dev --clobber | ||
worker: bundle exec rake solid_queue:start |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
class HelloWorldJob < ApplicationJob | ||
def perform(name:) | ||
greeting = "Hello, World!, #{name}" | ||
puts greeting | ||
greeting | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
default: &default | ||
dispatchers: | ||
- polling_interval: 1 | ||
batch_size: 500 | ||
workers: | ||
- queues: "*" | ||
threads: 5 | ||
processes: 1 | ||
polling_interval: 0.1 | ||
|
||
development: | ||
<<: *default | ||
|
||
test: | ||
<<: *default | ||
|
||
production: | ||
<<: *default |
101 changes: 101 additions & 0 deletions
101
db/migrate/20240419132659_create_solid_queue_tables.solid_queue.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
# This migration comes from solid_queue (originally 20231211200639) | ||
class CreateSolidQueueTables < ActiveRecord::Migration[7.0] | ||
def change | ||
create_table :solid_queue_jobs do |t| | ||
t.string :queue_name, null: false | ||
t.string :class_name, null: false, index: true | ||
t.text :arguments | ||
t.integer :priority, default: 0, null: false | ||
t.string :active_job_id, index: true | ||
t.datetime :scheduled_at | ||
t.datetime :finished_at, index: true | ||
t.string :concurrency_key | ||
|
||
t.timestamps | ||
|
||
t.index [:queue_name, :finished_at], name: "index_solid_queue_jobs_for_filtering" | ||
t.index [:scheduled_at, :finished_at], name: "index_solid_queue_jobs_for_alerting" | ||
end | ||
|
||
create_table :solid_queue_scheduled_executions do |t| | ||
t.references :job, index: {unique: true}, null: false | ||
t.string :queue_name, null: false | ||
t.integer :priority, default: 0, null: false | ||
t.datetime :scheduled_at, null: false | ||
|
||
t.datetime :created_at, null: false | ||
|
||
t.index [:scheduled_at, :priority, :job_id], name: "index_solid_queue_dispatch_all" | ||
end | ||
|
||
create_table :solid_queue_ready_executions do |t| | ||
t.references :job, index: {unique: true}, null: false | ||
t.string :queue_name, null: false | ||
t.integer :priority, default: 0, null: false | ||
|
||
t.datetime :created_at, null: false | ||
|
||
t.index [:priority, :job_id], name: "index_solid_queue_poll_all" | ||
t.index [:queue_name, :priority, :job_id], name: "index_solid_queue_poll_by_queue" | ||
end | ||
|
||
create_table :solid_queue_claimed_executions do |t| | ||
t.references :job, index: {unique: true}, null: false | ||
t.bigint :process_id | ||
t.datetime :created_at, null: false | ||
|
||
t.index [:process_id, :job_id] | ||
end | ||
|
||
create_table :solid_queue_blocked_executions do |t| | ||
t.references :job, index: {unique: true}, null: false | ||
t.string :queue_name, null: false | ||
t.integer :priority, default: 0, null: false | ||
t.string :concurrency_key, null: false | ||
t.datetime :expires_at, null: false | ||
|
||
t.datetime :created_at, null: false | ||
|
||
t.index [:expires_at, :concurrency_key], name: "index_solid_queue_blocked_executions_for_maintenance" | ||
end | ||
|
||
create_table :solid_queue_failed_executions do |t| | ||
t.references :job, index: {unique: true}, null: false | ||
t.text :error | ||
t.datetime :created_at, null: false | ||
end | ||
|
||
create_table :solid_queue_pauses do |t| | ||
t.string :queue_name, null: false, index: {unique: true} | ||
t.datetime :created_at, null: false | ||
end | ||
|
||
create_table :solid_queue_processes do |t| | ||
t.string :kind, null: false | ||
t.datetime :last_heartbeat_at, null: false, index: true | ||
t.bigint :supervisor_id, index: true | ||
|
||
t.integer :pid, null: false | ||
t.string :hostname | ||
t.text :metadata | ||
|
||
t.datetime :created_at, null: false | ||
end | ||
|
||
create_table :solid_queue_semaphores do |t| | ||
t.string :key, null: false, index: {unique: true} | ||
t.integer :value, default: 1, null: false | ||
t.datetime :expires_at, null: false, index: true | ||
|
||
t.timestamps | ||
|
||
t.index [:key, :value], name: "index_solid_queue_semaphores_on_key_and_value" | ||
end | ||
|
||
add_foreign_key :solid_queue_blocked_executions, :solid_queue_jobs, column: :job_id, on_delete: :cascade | ||
add_foreign_key :solid_queue_claimed_executions, :solid_queue_jobs, column: :job_id, on_delete: :cascade | ||
add_foreign_key :solid_queue_failed_executions, :solid_queue_jobs, column: :job_id, on_delete: :cascade | ||
add_foreign_key :solid_queue_ready_executions, :solid_queue_jobs, column: :job_id, on_delete: :cascade | ||
add_foreign_key :solid_queue_scheduled_executions, :solid_queue_jobs, column: :job_id, on_delete: :cascade | ||
end | ||
end |
6 changes: 6 additions & 0 deletions
6
db/migrate/20240419132660_add_missing_index_to_blocked_executions.solid_queue.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# This migration comes from solid_queue (originally 20240110143450) | ||
class AddMissingIndexToBlockedExecutions < ActiveRecord::Migration[7.1] | ||
def change | ||
add_index :solid_queue_blocked_executions, [ :concurrency_key, :priority, :job_id ], name: "index_solid_queue_blocked_executions_for_release" | ||
end | ||
end |
15 changes: 15 additions & 0 deletions
15
db/migrate/20240419132661_create_recurring_executions.solid_queue.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# This migration comes from solid_queue (originally 20240218110712) | ||
class CreateRecurringExecutions < ActiveRecord::Migration[7.1] | ||
def change | ||
create_table :solid_queue_recurring_executions do |t| | ||
t.references :job, index: {unique: true}, null: false | ||
t.string :task_key, null: false | ||
t.datetime :run_at, null: false | ||
t.datetime :created_at, null: false | ||
|
||
t.index [:task_key, :run_at], unique: true | ||
end | ||
|
||
add_foreign_key :solid_queue_recurring_executions, :solid_queue_jobs, column: :job_id, on_delete: :cascade | ||
end | ||
end |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.