░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/gems/canvas_partman/lib
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: canvas_partman.rb
# frozen_string_literal: true # # Copyright (C) 2014 - present Instructure, Inc. # # This file is part of Canvas. # # Canvas is free software: you can redistribute it and/or modify it under # the terms of the GNU Affero General Public License as published by the Free # Software Foundation, version 3 of the License. # # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more # details. # # You should have received a copy of the GNU Affero General Public License along # with this program. If not, see <http://www.gnu.org/licenses/>. require "canvas_partman/partition_manager" require "canvas_partman/migration" require "canvas_partman/dynamic_relation" require "canvas_partman/concerns/partitioned" module CanvasPartman class << self # @property [String, "partitions"] migrations_scope # The filename "scope" that identifies partition migrations. This is a key # that is separated from the name of the migration file and the "rb" # extension by dots. # # Example: "partitions" => "20141215000000_add_something.partitions.rb" # # @property [Lambda, ->{ 90 }] timeout_seconds # A callable block that returns the number of seconds to timeout # during partition table creation/deletion so that the behavior # when partition management is happening can be bounded to avoid # operational impacts from long running transactions attr_accessor :migrations_scope, :timeout_seconds, :after_create_callback def timeout_value timeout_seconds.call end end self.migrations_scope = "partitions" self.timeout_seconds = -> { 90 } self.after_create_callback = ->(parent_class, table) {} end
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📁 canvas_partman/
DIR
—
2023-09-24 03:39
📁 generators/
DIR
—
2023-09-24 03:36
📄 canvas_partman.rb
RB
1.8 KB
2023-09-24 03:39
EDIT