summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/MultiprocessingCore.py
Commit message (Collapse)AuthorAgeFilesLines
* MultiprocessingCore: fixed Cache importChris St. Pierre2013-08-091-1/+1
|
* Merge branch 'options-rewrite'Chris St. Pierre2013-08-081-16/+35
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/lib/Bcfg2/Client/Frame.py src/lib/Bcfg2/Options.py src/lib/Bcfg2/Server/Admin/Init.py src/lib/Bcfg2/Server/Admin/Xcmd.py src/lib/Bcfg2/Server/BuiltinCore.py src/lib/Bcfg2/Server/Core.py src/lib/Bcfg2/Server/MultiprocessingCore.py src/lib/Bcfg2/Server/Plugin/base.py src/lib/Bcfg2/Server/Plugin/helpers.py src/lib/Bcfg2/Server/Plugins/Cfg/__init__.py src/lib/Bcfg2/Server/Plugins/Packages/Yum.py src/lib/Bcfg2/Server/Plugins/Packages/__init__.py src/lib/Bcfg2/Server/SSLServer.py src/lib/Bcfg2/Utils.py src/lib/Bcfg2/settings.py src/sbin/bcfg2-crypt src/sbin/bcfg2-info src/sbin/bcfg2-lint src/sbin/bcfg2-test src/sbin/bcfg2-yum-helper tools/bcfg2-profile-templates.py
| * Options: migrated server core to new option parserChris St. Pierre2013-06-271-15/+21
| |
* | MultiprocessingCore: added a way to dispatch RMI calls to child processesChris St. Pierre2013-08-071-10/+66
| |
* | Plugin: added new Caching interfaceChris St. Pierre2013-08-071-8/+8
| | | | | | | | | | | | | | This gives a single unified interface for expiring caches, no matter the plugin. This will be particularly useful with the MultiprocessingCore, as certain calls must be dispatched to child processes to expire their caches.
* | MultiprocessingCore: log some messages as debug, not errorChris St. Pierre2013-08-061-2/+2
| |
* | Multiprocessing: fixed resolve_client callChris St. Pierre2013-08-051-1/+1
| |
* | Multiprocessing: proxy RecvProbeData callsChris St. Pierre2013-08-051-0/+15
| | | | | | | | | | | | | | | | This proxies RecvProbeData calls to child cores to expire the probe cache. The probe data itself is not relayed, just the fact that there was probe data received from a given client. Fixes #129.
* | MultiprocessingCore: greatly simplified parent-child RPC, removed ↵Chris St. Pierre2013-08-051-262/+145
| | | | | | | | non-thread-safe bits
* | MultiprocessingCore: added missing docstringChris St. Pierre2013-08-011-0/+6
| |
* | MultiprocessingCore: dispatch "bcfg2-admin perf" calls to childrenChris St. Pierre2013-07-311-3/+35
| |
* | MultiprocessingCore: timing out GetConfig() calls can cause memory issuesChris St. Pierre2013-07-311-6/+1
| |
* | MultiprocessingCore: added missing doc stringsChris St. Pierre2013-07-301-4/+14
| |
* | MultiprocessingCore: make multiprocessing children threaded for higher ↵Chris St. Pierre2013-07-301-139/+341
| | | | | | | | performance
* | MultiprocessingCore: rewrote parent-child RPC to be thread-safe (and less ↵Chris St. Pierre2013-07-231-67/+90
| | | | | | | | powerful)
* | MultiprocessingCore: Fixed return value from set_debugChris St. Pierre2013-07-221-1/+1
| |
* | MultiprocessingCore: removed unused importChris St. Pierre2013-07-221-1/+0
| |
* | MultiprocessingCore: Call Debuggable.__init__ on DispatchingCacheChris St. Pierre2013-07-221-2/+1
| |
* | MultiprocessingCore: Dispatch metadata cache expiration to childrenChris St. Pierre2013-07-221-10/+92
|/ | | | | | | | | | When the broker in a multiprocessing configuration expires its metadata cache (e.g., when probe data is received), it must dispatch that expiration call to its children. This also makes the protocol for communication between the broker and its children into a real RPC protocol, so we can do even more stuff in the future.
* Core: added more debugging on server shutdownChris St. Pierre2013-05-201-0/+1
|
* added multiprocessing server coreChris St. Pierre2013-05-201-0/+203