mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-22 09:32:21 +00:00
9617d1f4a4
The pickling would get horrendously slow as total node count increased. This meant very long time to sync to disk for just one change out of 65,000. This strategy changes things to more selective and only do things for the dirty keys rather than everything. Large changes to small amounts of nodes will take more time (because more calls to dump pickle), but small changes to a small subset of nodes will take much less time.
32 lines
1.8 KiB
Plaintext
32 lines
1.8 KiB
Plaintext
-user can bog down all requests by hammering it with bad auth requests causing
|
|
the auth facility to get bogged down in PBKDF
|
|
Option:
|
|
-a multiprocessing pool to handle new authentications. The auth action
|
|
itself would be stalled out whilst an attack was underway, but once
|
|
in, the respective session layers will provide a caching session that
|
|
should accelerate things after the client gets in once
|
|
-penalizing a client clearly trying to break in
|
|
-expressionkeys never gets smaller - perf impact
|
|
-need event notification for config change- e.g. set attribute triggers consol
|
|
session object check to see if credentials changed
|
|
design is that calling code on init registers a callback for related node to
|
|
the in-context config manager object. callback shall be OO so no context
|
|
object parametr passed in. ipmi will use it for user/password/hardwaremanagement.manager
|
|
changes to console and command objects. console will use it to hook add/deletion
|
|
of nodes and/or indicating a different console.method or hardwaremanagement.method
|
|
-When the time comes to dole out configuration/discovery, take page from xCAT
|
|
'flexdiscover' command, if possible bring an ipmi device under management
|
|
by way of ipv6 to eliminate requirement for ip to be specified.
|
|
Requires the polling event support (which is required for security anyway)
|
|
|
|
-this stack trace (happened with method was set to ""):
|
|
Traceback (most recent call last):
|
|
File "/usr/lib/python2.6/site-packages/eventlet/wsgi.py", line 402, in handle_one_response
|
|
for data in result:
|
|
File "/home/jbjohnso/Development/confluent/confluent/httpapi.py", line 301, in resourcehandler
|
|
cfgmgr, querydict)
|
|
File "/home/jbjohnso/Development/confluent/confluent/pluginapi.py", line 273, in handle_path
|
|
passvalue = pluginmap[plugpath].__dict__[operation](
|
|
KeyError: ''
|
|
|