summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | conceptual description of disk-assisted queue addedRainer Gerhards2008-01-184-13/+32
| |
* | description of disk-assisted queue addedRainer Gerhards2008-01-182-1/+227
| |
* | fixed sync issue on shutdown process if need to persist pure memory queueRainer Gerhards2008-01-173-9/+36
| | | | | | | | to disk
* | worked on threadingRainer Gerhards2008-01-1711-112/+348
| |
* | some more cleanup and flagged places where we need to implementRainer Gerhards2008-01-161-35/+13
| | | | | | | | DA-input-only mode
* | some cleanup and fixesRainer Gerhards2008-01-161-26/+19
| |
* | implemented dynamic startup and shutdown of worker threads based on currentRainer Gerhards2008-01-164-125/+223
| | | | | | | | activity
* | cleaned up queue disk startupRainer Gerhards2008-01-161-28/+32
| |
* | queue is now able to restore persisted state on startup (but still someRainer Gerhards2008-01-163-44/+178
| | | | | | | | fine tuning to be done)
* | first shot at queue restore on startup, but could not finish before I needRainer Gerhards2008-01-151-1/+62
| | | | | | | | to leave ;)
* | improved shutdown processing - in-memory queue is now drained to diskRainer Gerhards2008-01-151-5/+31
| |
* | changed startup of disk assisted mode to allow for higher concurrency, mostRainer Gerhards2008-01-153-126/+163
| | | | | | | | | | | | 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 queueRainer Gerhards2008-01-153-36/+215
| |
* | some more work on disk assisted mode (still not complete)Rainer Gerhards2008-01-142-2/+53
| |
* | begin disk assisted queue memory queue modes (not fully implemented yet)Rainer Gerhards2008-01-146-58/+281
| |
* | - implemented $MainMsgQueueDiscardMark == 0 --> disable Discard logicRainer Gerhards2008-01-142-3/+7
| | | | | | | | - implemented $MainMsgQueueSize == 0 --> no limit on queue size
* | also implemented $MainMsgQueueDiscardMark logic on dequeue, changedRainer Gerhards2008-01-142-11/+21
| | | | | | | | defaults
* | implemented $MainMsgQueueDiscardMar and $MainMsgQueueDiscardSeverity (butRainer Gerhards2008-01-143-2/+35
| | | | | | | | serverity needs to be specified numerically for the time being)
* | optimized codeRainer Gerhards2008-01-141-3/+4
| |
* | - implemented config file handlers forRainer Gerhards2008-01-145-2/+38
| | | | | | | | | | | | | | | | $MainMsgQueueHighWaterMark $MainMsgQueueLowWaterMark $MainMsgQueueDiscardMark $MainMsgQueueDiscardSeverity but did NOT yet implement the functionality behind these directives!
* | bumped version numberRainer Gerhards2008-01-142-1/+5
| |
* | fixed broken fix ;)Rainer Gerhards2008-01-141-1/+1
| |
* | fixed a bug with standard template definitions - thanks to varmojfekoj forRainer Gerhards2008-01-141-1/+1
| | | | | | | | spotting it
* | fixed typov3-10-2av3-10-2Rainer Gerhards2008-01-141-1/+1
| |
* | preparing for 3.10.2Rainer Gerhards2008-01-143-8/+12
| |
* | removed $MainMsgQueueImmediateShutdown config directive and handling, thisRainer Gerhards2008-01-142-3/+0
| | | | | | | | | | has been superseeded by the Timeout params. Backward compatibility is no concern, no version with that directive was ever released.
* | - implemented $MainMsgQueueTimeoutActionCompletion config directiveRainer Gerhards2008-01-146-57/+152
| | | | | | | | | | | | - implemented $MainMsgQueueTimeoutEnqueue config directive - implemented $MainMsgQueueTimeoutShutdown config directive - some cleanup
* | worker shutdown sequence enhanced to try different ways to shut down andRainer Gerhards2008-01-144-32/+114
| | | | | | | | | | terminate workers if none helps (this protects against badly written output plugins which hold the queue for too long)
* | removed no longer needed "Initialized" logic and variableRainer Gerhards2008-01-141-47/+3
| |
* | changed queue shutdown procedure a bit - stage work for queue shutdownRainer Gerhards2008-01-132-9/+7
| | | | | | | | timeout setting
* | renamed $MainMsgQueuePersistUpdateCount config file directive toRainer Gerhards2008-01-133-3/+8
| | | | | | | | $MainMsgQueueCheckpointInterval
* | added $MainMsgQueuePersistUpdateCount config file directiveRainer Gerhards2008-01-134-7/+55
| |
* | added forgotten file - thx to Michael Biebl for pointing that outRainer Gerhards2008-01-131-0/+39
| |
* | support for reading back persistet queue information completedRainer Gerhards2008-01-139-111/+232
| |
* | partial ability to read a disk queue back in (not completed, but would likeRainer Gerhards2008-01-117-16/+158
| | | | | | | | to save source for the weekend)
* | support for de-serializing strm objects addedRainer Gerhards2008-01-115-4/+69
| |
* | added function to de-serialize a property bag (untested as other code isRainer Gerhards2008-01-115-23/+84
| | | | | | | | yet missing)
* | queue can now persist disk queue information on immediate shutdownRainer Gerhards2008-01-113-6/+17
| |
* | support for object property bags addedRainer Gerhards2008-01-116-15/+63
| |
* | file stream objects are now persistet on immediate queue shutdown (queueRainer Gerhards2008-01-117-28/+161
| | | | | | | | itself is not yet fully persisted)
* | added $MainMsgQueueImmediateShutdown config directiveRainer Gerhards2008-01-115-13/+16
| |
* | - begun to permit queue to terminate without being drainedRainer Gerhards2008-01-114-63/+91
| | | | | | | | | | | | - 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 cleanupRainer Gerhards2008-01-106-52/+111
| | | | | | | | | | - implemented management function for worker thread 0 in order to change queue workers dynamically -- stage work
* | some cleanupRainer Gerhards2008-01-104-8/+8
| |
* | - implemented strm object serializer (untested as the code required forRainer Gerhards2008-01-104-17/+53
| | | | | | | | test is not yet present - hen/egg problem...)
* | - fixed a bug that caused a segfault on startup when no $WorkDir directivev3-10-1aRainer Gerhards2008-01-1013-55/+36
| | | | | | | | | | | | was specified in rsyslog.conf - fixed a bug that caused a segfault on queues with types other than "disk" - removed the now longer needed thread TermSyncTool
* | preparing for 3.10.1v3-10-1Rainer Gerhards2008-01-102-9/+12
| |
* | changed some config parameters and some cleanupRainer Gerhards2008-01-106-19/+18
| |
* | changed some config file directivesRainer Gerhards2008-01-101-2/+2
| |
* | prepared for 3.10.1 releaseRainer Gerhards2008-01-101-1/+7
| |