The spawn manager is capable of spawning Ruby on Rails or Rack application instances. It acts like a simple fascade for the rest of the spawn manager system.
Note: SpawnManager may only be started synchronously with AbstractServer#start_synchronously. Starting asynchronously has not been tested. Don‘t forget to call cleanup after the server‘s main loop has finished.
Ruby on Rails optimizations
Spawning a Ruby on Rails application is usually slow. But SpawnManager will preload and cache Ruby on Rails frameworks, as well as application code, so subsequent spawns will be very fast.
Internally, SpawnManager uses Railz::FrameworkSpawner to preload and cache Ruby on Rails frameworks. Railz::FrameworkSpawner, in turn, uses Railz::ApplicationSpawner to preload and cache application code.
In case you‘re wondering why the namespace is "Railz" and not "Rails": it‘s to work around an obscure bug in ActiveSupport‘s Dispatcher.
[ show source ]
# File lib/phusion_passenger/spawn_manager.rb, line 60 60: def initialize 61: super() 62: @spawners = AbstractServerCollection.new 63: define_message_handler(:spawn_application, :handle_spawn_application) 64: define_message_handler(:reload, :handle_reload) 65: define_signal_handler('SIGHUP', :reload) 66: 67: # Start garbage collector in order to free up some existing 68: # heap slots. This prevents the heap from growing unnecessarily 69: # during the startup phase. 70: GC.start 71: if GC.copy_on_write_friendly? 72: # Preload libraries for copy-on-write semantics. 73: require 'base64' 74: require 'phusion_passenger/application' 75: require 'phusion_passenger/railz/framework_spawner' 76: require 'phusion_passenger/railz/application_spawner' 77: require 'phusion_passenger/rack/application_spawner' 78: require 'phusion_passenger/html_template' 79: require 'phusion_passenger/platform_info' 80: require 'phusion_passenger/exceptions' 81: 82: # Commonly used libraries. 83: ['mysql', 'sqlite3'].each do |lib| 84: begin 85: require lib 86: rescue LoadError 87: # Do nothing; ignore if not present. 88: end 89: end 90: end 91: end
Cleanup resources. Should be called when this SpawnManager is no longer needed.
[ show source ]
# File lib/phusion_passenger/spawn_manager.rb, line 214 214: def cleanup 215: @spawners.cleanup 216: end
Remove the cached application instances at the given application root. If nil is specified as application root, then all cached application instances will be removed, no matter the application root.
Long description: Application code might be cached in memory. But once it a while, it will be necessary to reload the code for an application, such as after deploying a new version of the application. This method makes sure that any cached application code is removed, so that the next time an application instance is spawned, the application code will be freshly loaded into memory.
Raises AbstractServer::SpawnError if something went wrong.
[ show source ]
# File lib/phusion_passenger/spawn_manager.rb, line 187 187: def reload(app_root = nil) 188: @spawners.synchronize do 189: if app_root 190: # Delete associated ApplicationSpawner. 191: @spawners.delete("app:#{app_root}") 192: else 193: # Delete all ApplicationSpawners. 194: keys_to_delete = [] 195: @spawners.each_pair do |key, spawner| 196: if spawner.is_a?(Railz::ApplicationSpawner) 197: keys_to_delete << key 198: end 199: end 200: keys_to_delete.each do |key| 201: @spawners.delete(key) 202: end 203: end 204: @spawners.each do |spawner| 205: # Reload all FrameworkSpawners. 206: if spawner.respond_to?(:reload) 207: spawner.reload(app_root) 208: end 209: end 210: end 211: end
Spawn an application with the given spawn options. When successful, an Application object will be returned, which represents the spawned application. At least one option must be given: app_root. This is the application‘s root folder.
Other options are:
- ‘lower_privilege’, ‘lowest_user’, ‘environment’, ‘environment_variables’, ‘base_uri’ and ‘print_exceptions‘
- See Railz::ApplicationSpawner.new for an explanation of these options.
- ‘app_type‘
- What kind of application is being spawned. Either "rails" (default), "rack" or "wsgi".
- ‘spawn_method‘
- May be one of "smart", "smart-lv2" or
"conservative". When "smart" is specified, SpawnManager will internally cache the code of
Rails applications, in order to speed up future spawning attempts. This
implies that, if you‘ve changed the application‘s code, you
must do one of these things:
- Restart this SpawnManager by calling AbstractServer#stop, then AbstractServer#start.
- Reload the application by calling reload with the correct app_root argument.
"smart" caches the Rails framework code in a framework spawner server, and application code in an application spawner server. Sometimes it is desirable to skip the framework spawning and going directly for the application spawner instead. The "smart-lv2" method allows you to do that.
Caching however can be incompatible with some applications. The "conservative" spawning method does not involve any caching at all. Spawning will be slower, but is guaranteed to be compatible with all applications.
The default spawn method is "smart-lv2".
- ‘framework_spawner_timeout’ and ‘app_spawner_timeout‘
- These options allow you to specify the maximum idle timeout, in seconds, of
the framework spawner servers and application spawner servers that will be
started under the hood. These options are only used if app_type
equals "rails".
A timeout of 0 means that the spawner server should never idle timeout. A timeout of -1 means that the default timeout value should be used. The default value is -1.
Exceptions:
- InvalidPath: app_root doesn‘t appear to be a valid Ruby on Rails application root.
- VersionNotFound: The Ruby on Rails framework version that the given application requires is not installed.
- AbstractServer::ServerError: One of the server processes exited unexpectedly.
- FrameworkInitError: The Ruby on Rails framework that the application requires could not be loaded.
- AppInitError: The application raised an exception or called exit() during startup.
[ show source ]
# File lib/phusion_passenger/spawn_manager.rb, line 141 141: def spawn_application(options) 142: if !options["app_root"] 143: raise ArgumentError, "The 'app_root' option must be given." 144: end 145: options = sanitize_spawn_options(options) 146: 147: if options["app_type"] == "rails" 148: if !defined?(Railz::FrameworkSpawner) 149: require 'phusion_passenger/application' 150: require 'phusion_passenger/railz/framework_spawner' 151: require 'phusion_passenger/railz/application_spawner' 152: end 153: return spawn_rails_application(options) 154: elsif options["app_type"] == "rack" 155: if !defined?(Rack::ApplicationSpawner) 156: require 'phusion_passenger/rack/application_spawner' 157: end 158: return Rack::ApplicationSpawner.spawn_application( 159: options["app_root"], options 160: ) 161: elsif options["app_type"] == "wsgi" 162: require 'phusion_passenger/wsgi/application_spawner' 163: return WSGI::ApplicationSpawner.spawn_application( 164: options["app_root"], 165: options["lower_privilege"], 166: options["lowest_user"], 167: options["environment"] 168: ) 169: else 170: raise ArgumentError, "Unknown 'app_type' value '#{options["app_type"]}'." 171: end 172: end