Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge branch 'v7-devel'master | Rainer Gerhards | 2013-11-29 | 1 | -44/+44 |
|\ | |||||
| * | another round of const qualifiers... | Rainer Gerhards | 2013-11-29 | 1 | -44/+44 |
| | | |||||
| * | nit: apply const qualifier to some functions | Rainer Gerhards | 2013-11-29 | 1 | -15/+15 |
| | | |||||
* | | nit: apply const qualifier to some functions | Rainer Gerhards | 2013-11-29 | 1 | -15/+15 |
| | | |||||
* | | Merge branch 'v7-devel' into tmp | Rainer Gerhards | 2013-11-29 | 5 | -46/+88 |
|\| | | | | | | | | | Conflicts: action.c | ||||
| * | actions now report if they suspend and resume themselves | Rainer Gerhards | 2013-11-29 | 1 | -0/+4 |
| | | |||||
| * | nit: update copyright dates | Rainer Gerhards | 2013-11-29 | 3 | -3/+3 |
| | | |||||
| * | introduce new function to emit warning and other non-error messages | Rainer Gerhards | 2013-11-29 | 4 | -42/+80 |
| | | | | | | | | also refactor the error message subsystem a bit | ||||
| * | use const keyword at (some) appropriate places | Rainer Gerhards | 2013-11-29 | 4 | -8/+8 |
| | | |||||
| * | regression fix: action queues with default settings did not start worker threadv7.5.7 | Rainer Gerhards | 2013-11-25 | 1 | -5/+3 |
| | | |||||
* | | Merge branch 'v7-devel' | Rainer Gerhards | 2013-11-21 | 1 | -12/+59 |
|\| | | | | | | | | | Conflicts: runtime/queue.c | ||||
| * | queue: dynamic default for discardMark, emit warning if set very low | Rainer Gerhards | 2013-11-21 | 1 | -4/+29 |
| | | |||||
| * | queue: guard various config param defaults against very low queue sizes | Rainer Gerhards | 2013-11-21 | 1 | -8/+27 |
| | | |||||
* | | Merge branch 'v7-devel' | Rainer Gerhards | 2013-11-21 | 1 | -8/+42 |
|\| | |||||
| * | queue: add config parameter queue.spooldirectory | Rainer Gerhards | 2013-11-21 | 1 | -0/+12 |
| | | | | | | | | | | | | Conflicts: runtime/queue.c | ||||
| * | Merge branch 'v7-stable' into v7-devel | Rainer Gerhards | 2013-11-21 | 1 | -8/+30 |
| |\ | | | | | | | | | | | | | Conflicts: runtime/queue.c | ||||
| | * | queue: spool directory setting was not properly propagated to DA queue | Rainer Gerhards | 2013-11-21 | 1 | -1/+21 |
| | | | |||||
| | * | refactor queue spool directory config handling | Rainer Gerhards | 2013-11-21 | 1 | -7/+7 |
| | | | |||||
| | * | bugfix: legacy directive $ActionQueueWorkerThreads was not honored | Rainer Gerhards | 2013-11-19 | 2 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog runtime/queue.c | ||||
| | * | do not adjust batch size for disk queues | Rainer Gerhards | 2013-11-07 | 1 | -1/+1 |
| | | | |||||
| | * | do not complain for queue size on DA queues | Rainer Gerhards | 2013-11-07 | 1 | -1/+2 |
| | | | |||||
* | | | regression fix: prevent queue stall if ratelimiter is used | Rainer Gerhards | 2013-11-20 | 2 | -3/+11 |
| | | | | | | | | | | | | | | | Thanks to Pavel Levshin for alerting us. This regression was introduced roughly 2 hours ago and was never released. | ||||
* | | | Merge branch 'master' into master-alternate-queue-mutex | Rainer Gerhards | 2013-11-20 | 1 | -5/+3 |
|\ \ \ | |||||
| * | | | regression fix: action queues with default settings did not start workers | Rainer Gerhards | 2013-11-20 | 1 | -5/+3 |
| | | | | | | | | | | | | | | | | This was introduced yesterday and has not been part of any released version. | ||||
* | | | | queue workers: eliminate unnecessary queue mutex operations | Rainer Gerhards | 2013-11-20 | 1 | -12/+13 |
|/ / / | |||||
* | | | Merge branch 'v7-devel' | Rainer Gerhards | 2013-11-19 | 2 | -11/+42 |
|\| | | |||||
| * | | queue.workerThreadMinimumMessage set to queue.size / num workers | Rainer Gerhards | 2013-11-19 | 1 | -2/+18 |
| | | | |||||
| * | | bugfix: legacy directive $ActionQueueWorkerThreads was not honored | Rainer Gerhards | 2013-11-19 | 2 | -0/+3 |
| | | | |||||
| * | | queue: auto-adjust watermarks | Rainer Gerhards | 2013-11-19 | 1 | -10/+14 |
| | | | |||||
| * | | queue: warn if high watermark is set too low | Rainer Gerhards | 2013-11-19 | 1 | -0/+8 |
| | | | |||||
* | | | bugfix: STOP/discard(~) was mostly NOT honored | Rainer Gerhards | 2013-11-18 | 1 | -26/+49 |
| | | | | | | | | | | | | This lead to execution of config code that was not meant to be executed. | ||||
* | | | bugfix: memory leak on worker thread termination | Rainer Gerhards | 2013-11-18 | 1 | -0/+4 |
| | | | |||||
* | | | fix: ruleset queues were activated too early | Rainer Gerhards | 2013-11-14 | 3 | -2/+30 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This does not cause issues in v7, but here we have the problem that the total number of actions, which now is required for wti sizing, is not available at that early stage. So we needed to delay queue startup until everything is processed (just as it should have been already!). Note the previously we could have a segfault on first message when ruleset queues were used. | ||||
* | | | regression fix: misadressing if worker thread was restarted | Rainer Gerhards | 2013-11-14 | 1 | -0/+1 |
| | | | |||||
* | | | Merge branch 'master-ruleeng' into master-ruleeng-simd | Rainer Gerhards | 2013-11-13 | 2 | -0/+16 |
|\ \ \ | |||||
| * | | | Merge branch 'master' into master-ruleeng | Rainer Gerhards | 2013-11-07 | 2 | -0/+16 |
| |\| | | |||||
| | * | | emit warning message if output module with msg passing mode runs asynchronously | Rainer Gerhards | 2013-11-07 | 2 | -0/+16 |
| | | | | |||||
* | | | | Merge branch 'master-ruleeng' into master-ruleeng-simd | Rainer Gerhards | 2013-11-07 | 6 | -23/+25 |
|\| | | | |||||
| * | | | Merge branch 'master' into master-ruleeng | Rainer Gerhards | 2013-11-07 | 6 | -23/+25 |
| |\| | | | | | | | | | | | | | | | | | | | | | | Conflicts: runtime/wti.c runtime/wti.h | ||||
| | * | | bugfix: regular workers are no longer started if DA worker is active | Pavel Levshin | 2013-11-07 | 1 | -8/+7 |
| | | | | | | | | | | | | | | | | | | | | form mail: Look, below, if it is time to activate DA worker, we call it explicitly. But in this case we do not advise regular workers. They are likely already running at this point, but it is not guaranteed. What if, for example, the system is set to start additional workers when the queue is going over high watermark? What if HighWatermark is set to 1? Regular workers will not be started, and DA worker may fail. Thus, it is reasonable to advise regular workers even if we are going DA. | ||||
| | * | | cleanup no longer needed code | Rainer Gerhards | 2013-11-07 | 4 | -8/+1 |
| | | | | |||||
| | * | | Merge branch 'master' into master-newwtipool | Rainer Gerhards | 2013-11-07 | 1 | -2/+3 |
| | |\ \ | |||||
| | | * | | do not adjust batch size for disk queues | Rainer Gerhards | 2013-11-07 | 1 | -1/+1 |
| | | | | | |||||
| | | * | | do not complain for queue size on DA queues | Rainer Gerhards | 2013-11-06 | 1 | -1/+2 |
| | | | | | |||||
| | * | | | improve worker thread pool handling | Pavel Levshin | 2013-11-06 | 4 | -6/+15 |
| | |/ / | | | | | | | | | | | | | | | | | among others, make possible that workers really timeout and the pool thus shrinks | ||||
* | | | | refactor iparams to use array | Rainer Gerhards | 2013-11-06 | 2 | -10/+16 |
| | | | | | | | | | | | | | | | | this is also prep work for a single doTransaction() output mode api | ||||
* | | | | refactor action disabling | Rainer Gerhards | 2013-11-06 | 2 | -6/+1 |
| | | | | |||||
* | | | | enforce that actions can no longer "do something" on action creation | Rainer Gerhards | 2013-11-06 | 1 | -3/+2 |
| | | | | | | | | | | | | | | | | | | | | This doesn't play well with config load/priv drop and was not strictly enforced in v7. | ||||
* | | | | make batches of 1 commit automatically after each action | Rainer Gerhards | 2013-11-06 | 2 | -0/+14 |
| | | | | | | | | | | | | | | | | | | | | This improves failover handling and makes it consistent with doc (precise handling for batches of one). | ||||
* | | | | re-enable bPrevWasSuspended handling | Rainer Gerhards | 2013-11-06 | 1 | -0/+3 |
| | | | |