1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
|
# Copyright (C) 2014-2015 MongoDB, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
require 'set'
module Mongo
class Cluster
# A manager that sends kill cursors operations at regular intervals to close
# cursors that have been garbage collected without being exhausted.
#
# @api private
#
# @since 2.3.0
class CursorReaper
include Retryable
# The default time interval for the cursor reaper to send pending kill cursors operations.
#
# @since 2.3.0
FREQUENCY = 1.freeze
# Create a cursor reaper.
#
# @example Create a CursorReaper.
# Mongo::Cluster::CursorReaper.new(cluster)
#
# @api private
#
# @since 2.3.0
def initialize
@to_kill = {}
@active_cursors = Set.new
@mutex = Mutex.new
end
# Schedule a kill cursors operation to be eventually executed.
#
# @example Schedule a kill cursors operation.
# cursor_reaper.schedule_kill_cursor(id, op_spec, server)
#
# @param [ Integer ] id The id of the cursor to kill.
# @param [ Hash ] op_spec The spec for the kill cursors op.
# @param [ Mongo::Server ] server The server to send the kill cursors operation to.
#
# @api private
#
# @since 2.3.0
def schedule_kill_cursor(id, op_spec, server)
@mutex.synchronize do
if @active_cursors.include?(id)
@to_kill[server] ||= Set.new
@to_kill[server] << op_spec
end
end
end
# Register a cursor id as active.
#
# @example Register a cursor as active.
# cursor_reaper.register_cursor(id)
#
# @param [ Integer ] id The id of the cursor to register as active.
#
# @api private
#
# @since 2.3.0
def register_cursor(id)
if id && id > 0
@mutex.synchronize do
@active_cursors << id
end
end
end
# Unregister a cursor id, indicating that it's no longer active.
#
# @example Unregister a cursor.
# cursor_reaper.unregister_cursor(id)
#
# @param [ Integer ] id The id of the cursor to unregister.
#
# @api private
#
# @since 2.3.0
def unregister_cursor(id)
@mutex.synchronize do
@active_cursors.delete(id)
end
end
# Execute all pending kill cursors operations.
#
# @example Execute pending kill cursors operations.
# cursor_reaper.kill_cursors
#
# @api private
#
# @since 2.3.0
def kill_cursors
to_kill_copy = {}
active_cursors_copy = []
@mutex.synchronize do
to_kill_copy = @to_kill.dup
active_cursors_copy = @active_cursors.dup
@to_kill = {}
end
to_kill_copy.each do |server, op_specs|
op_specs.each do |op_spec|
if server.features.find_command_enabled?
Cursor::Builder::KillCursorsCommand.update_cursors(op_spec, active_cursors_copy.to_a)
if Cursor::Builder::KillCursorsCommand.get_cursors_list(op_spec).size > 0
Operation::Commands::Command.new(op_spec).execute(server)
end
else
Cursor::Builder::OpKillCursors.update_cursors(op_spec, active_cursors_copy.to_a)
if Cursor::Builder::OpKillCursors.get_cursors_list(op_spec).size > 0
Operation::KillCursors.new(op_spec).execute(server)
end
end
end
end
end
alias :execute :kill_cursors
alias :flush :kill_cursors
end
end
end
|