Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | begin building runtime convenience library (does not build!) | Rainer Gerhards | 2008-04-15 | 1 | -205/+0 |
| | |||||
* | Merge branch 'beta' | Rainer Gerhards | 2008-04-15 | 1 | -7/+8 |
|\ | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/ommail.html queue.c | ||||
| * | changed some files to grant LGPLv3 extended persmissions on top of GPLv3 | Rainer Gerhards | 2008-04-15 | 1 | -7/+8 |
| | | | | | | | | | | this also is the first sign of something that will evolve into a well-defined "rsyslog runtime library" | ||||
* | | added the capability to specify a processing (actually dequeue) timeframe | Rainer Gerhards | 2008-04-03 | 1 | -1/+1 |
| | | | | | | | | with queues - so things can be configured to be done at off-peak hours | ||||
* | | new property access functions | Rainer Gerhards | 2008-04-03 | 1 | -0/+2 |
| | | |||||
* | | begun working on time-window based dequeueing (and rate limiting in | Rainer Gerhards | 2008-04-02 | 1 | -1/+12 |
|/ | | | | general) | ||||
* | added advanced flow control for congestion cases (mode depending on message | Rainer Gerhards | 2008-03-14 | 1 | -1/+5 |
| | | | | source and its capablity to be delayed without bad side effects) | ||||
* | some more 32 bit fun ;) | Rainer Gerhards | 2008-01-31 | 1 | -1/+1 |
| | |||||
* | bugfix: having fun with 32/64 bit portability - after 15 years, I finally | Rainer Gerhards | 2008-01-31 | 1 | -4/+4 |
| | | | | | was trapped again ;) -- now fixed, sizes > 2GB supported on 32bit platforms | ||||
* | - implemented limiting disk space allocated to queues | Rainer Gerhards | 2008-01-30 | 1 | -0/+4 |
| | | | | | - addded $MainMsgQueueMaxDiskSpace config directive - addded $ActionQueueMaxDiskSpace config directive | ||||
* | - implemented simple output rate limiting | Rainer Gerhards | 2008-01-30 | 1 | -0/+4 |
| | | | | | | - addded $ActionQueueDequeueSlowdown config directive - addded $MainMsgQueueDequeueSlowdown config directive - bugfix: MsgDup() did not work with new base object data structure | ||||
* | added ability to re-enqueue objects into the queue when a worker thread is | Rainer Gerhards | 2008-01-29 | 1 | -0/+6 |
| | | | | cancelled | ||||
* | - implemented the $ActionResumeRetryCount config directive | Rainer Gerhards | 2008-01-28 | 1 | -2/+9 |
| | | | | | | | | | | | | | | | | | | | | | - added queue between main queue and action executor (currently works in "direct" mode only, else crashes) - added $ActionQueueFilename config directive - added $ActionQueueSize config directive - added $ActionQueueHighWaterMark config directive - added $ActionQueueLowWaterMark config directive - added $ActionQueueDiscardMark config directive - added $ActionQueueDiscardSeverity config directive - added $ActionQueueCheckpointInterval config directive - added $ActionQueueType config directive - added $ActionQueueWorkerThreads config directive - added $ActionQueueTimeoutshutdown config directive - added $ActionQueueTimeoutActionCompletion config directive - added $ActionQueueTimeoutenQueue config directive - added $ActionQueueTimeoutworkerThreadShutdown config directive - added $ActionQueueWorkerThreadMinimumMessages config directive - added $ActionQueueMaxFileSize config directive - added $ActionQueueSaveonShutdown config directive | ||||
* | cleanup to prepare for release | Rainer Gerhards | 2008-01-28 | 1 | -1/+0 |
| | |||||
* | some more testing and cleanup with the queue class (pretty stable now) | Rainer Gerhards | 2008-01-28 | 1 | -9/+1 |
| | |||||
* | fixed a bug when shutting down DA queue | Rainer Gerhards | 2008-01-27 | 1 | -3/+3 |
| | |||||
* | fixed the situation where message processing could be stalled for some | Rainer Gerhards | 2008-01-27 | 1 | -2/+4 |
| | | | | period after DA mode turn off | ||||
* | partially fixed bug that caused rsyslogd to stall processing enqueued | Rainer Gerhards | 2008-01-26 | 1 | -0/+1 |
| | | | | | | messages after turning off DA mode and before any new message were arrived (if a new message arrived, everything went back to normal, so it was a temporary halt) | ||||
* | disk-assisted queue mode finally begins to look good ;) | Rainer Gerhards | 2008-01-25 | 1 | -2/+3 |
| | |||||
* | redesigned queue to utilize helper classes for threading support. This is | Rainer Gerhards | 2008-01-24 | 1 | -36/+4 |
| | | | | | | finally in a running state for regular (non disk-assisted) queues, with a minor nit at shutdown. So I can finally commit the work again to CVS... | ||||
* | some further cleanup on the mutexes | Rainer Gerhards | 2008-01-19 | 1 | -1/+1 |
| | |||||
* | seperated mutex for queue size management from those for queue thread | Rainer Gerhards | 2008-01-19 | 1 | -1/+2 |
| | | | | management | ||||
* | saving state | Rainer Gerhards | 2008-01-18 | 1 | -0/+2 |
| | |||||
* | - created an in-depth description of DA assisted queue mode | Rainer Gerhards | 2008-01-18 | 1 | -0/+1 |
| | | | | | - snapshot of new thread coding - DA mode still does not work, but need to save | ||||
* | fixed sync issue on shutdown process if need to persist pure memory queue | Rainer Gerhards | 2008-01-17 | 1 | -0/+3 |
| | | | | to disk | ||||
* | worked on threading | Rainer Gerhards | 2008-01-17 | 1 | -6/+26 |
| | |||||
* | implemented dynamic startup and shutdown of worker threads based on current | Rainer Gerhards | 2008-01-16 | 1 | -8/+13 |
| | | | | activity | ||||
* | queue is now able to restore persisted state on startup (but still some | Rainer Gerhards | 2008-01-16 | 1 | -1/+3 |
| | | | | fine tuning to be done) | ||||
* | changed startup of disk assisted mode to allow for higher concurrency, most | Rainer Gerhards | 2008-01-15 | 1 | -4/+7 |
| | | | | | | importantly allow the input to continue enqueue msgs while the disk queue is initialized. This may help somewhat with UDP and other lossy sources | ||||
* | disk assisted queue works quite well, except for startup from disk queue | Rainer Gerhards | 2008-01-15 | 1 | -1/+4 |
| | |||||
* | some more work on disk assisted mode (still not complete) | Rainer Gerhards | 2008-01-14 | 1 | -0/+5 |
| | |||||
* | begin disk assisted queue memory queue modes (not fully implemented yet) | Rainer Gerhards | 2008-01-14 | 1 | -4/+9 |
| | |||||
* | - implemented config file handlers for | Rainer Gerhards | 2008-01-14 | 1 | -0/+8 |
| | | | | | | | | $MainMsgQueueHighWaterMark $MainMsgQueueLowWaterMark $MainMsgQueueDiscardMark $MainMsgQueueDiscardSeverity but did NOT yet implement the functionality behind these directives! | ||||
* | removed $MainMsgQueueImmediateShutdown config directive and handling, this | Rainer Gerhards | 2008-01-14 | 1 | -2/+0 |
| | | | | | has been superseeded by the Timeout params. Backward compatibility is no concern, no version with that directive was ever released. | ||||
* | - implemented $MainMsgQueueTimeoutActionCompletion config directive | Rainer Gerhards | 2008-01-14 | 1 | -0/+6 |
| | | | | | | - implemented $MainMsgQueueTimeoutEnqueue config directive - implemented $MainMsgQueueTimeoutShutdown config directive - some cleanup | ||||
* | worker shutdown sequence enhanced to try different ways to shut down and | Rainer Gerhards | 2008-01-14 | 1 | -0/+2 |
| | | | | | terminate workers if none helps (this protects against badly written output plugins which hold the queue for too long) | ||||
* | added $MainMsgQueuePersistUpdateCount config file directive | Rainer Gerhards | 2008-01-13 | 1 | -1/+3 |
| | |||||
* | support for reading back persistet queue information completed | Rainer Gerhards | 2008-01-13 | 1 | -0/+2 |
| | |||||
* | support for object property bags added | Rainer Gerhards | 2008-01-11 | 1 | -0/+2 |
| | |||||
* | file stream objects are now persistet on immediate queue shutdown (queue | Rainer Gerhards | 2008-01-11 | 1 | -1/+2 |
| | | | | itself is not yet fully persisted) | ||||
* | added $MainMsgQueueImmediateShutdown config directive | Rainer Gerhards | 2008-01-11 | 1 | -0/+1 |
| | |||||
* | - begun to permit queue to terminate without being drained | Rainer Gerhards | 2008-01-11 | 1 | -2/+1 |
| | | | | | | - fixed a starvation condition in queueWorker (pthread_yield() was needed) could not be seen with any previously released code, came up during new development | ||||
* | - some cleanup | Rainer Gerhards | 2008-01-10 | 1 | -1/+14 |
| | | | | | - implemented management function for worker thread 0 in order to change queue workers dynamically -- stage work | ||||
* | changed queue class to use stream class | Rainer Gerhards | 2008-01-09 | 1 | -2/+3 |
| | |||||
* | implemented $MainMsgQueueFilePrefix configuration directive | Rainer Gerhards | 2008-01-09 | 1 | -0/+1 |
| | |||||
* | implemented queue object method to set the file name prefix | Rainer Gerhards | 2008-01-09 | 1 | -6/+12 |
| | |||||
* | - implemented new GetSize() handler for config files | Rainer Gerhards | 2008-01-09 | 1 | -2/+3 |
| | | | | - implemented $MainMsgQueueMaxFileSize configuration directive | ||||
* | - first implementation of "disk" queue mode finished. It still needs some | Rainer Gerhards | 2008-01-08 | 1 | -0/+1 |
| | | | | | | | work and the deserializer needs also to be expanded, but the queue at least performs well now. - fixed a race condition that could occur when input modules were terminated | ||||
* | implemented queue disk reader to switch to multiple files | Rainer Gerhards | 2008-01-08 | 1 | -0/+1 |
| | |||||
* | - MsgSetProperty() implemented | Rainer Gerhards | 2008-01-07 | 1 | -1/+1 |
| | | | | | - defined a property class - implemented deserializer (needs some more work) |