Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/martinrayenglish/Sitecore.Cleanup
The module consists of 3 agents that will monitor each the Event Queue, Publish Queue and History tables to ensure that they don't exceed a set threshold.
https://github.com/martinrayenglish/Sitecore.Cleanup
Last synced: 3 months ago
JSON representation
The module consists of 3 agents that will monitor each the Event Queue, Publish Queue and History tables to ensure that they don't exceed a set threshold.
- Host: GitHub
- URL: https://github.com/martinrayenglish/Sitecore.Cleanup
- Owner: martinrayenglish
- License: mit
- Created: 2017-01-22T14:26:00.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-22T18:17:57.000Z (almost 8 years ago)
- Last Synced: 2024-04-15T14:24:37.254Z (7 months ago)
- Language: C#
- Size: 1.58 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- Awesome-Sitecore - Sitecore.Cleanup - The module consists of 3 agents that will monitor each of the Event Queue, Publish Queue, and History tables to ensure that they don't exceed a set threshold. (Audit and performance)
README
# Sitecore Cleanup Monitor
The module consists of 3 agents that will monitor each the Event Queue, Publish Queue and History tables to ensure that they don't exceed a set threshold.### Why would you use it?
I many cases, Sitecore's default cleanup agents just aren't efficient enough in cleaning up these key Sitecore tables.This module allows you to be proactive instead of reactive, so that you don't have to log into your SQL instance to manually run queries to clean up your tables, usually after the $#*!,$h* has hit the fan.
### How does it work?
When due, the agent will check the row count of the target table in each database (core, master and web), and if the count is above the set threshold, it will remove the oldest rows, bringing the row count down to that threshold. It won't do anything to tables below the threshold.You can set how often you want each agent to run, and what you want your threshold / table row count to be. You also don't need to use all three agents. If you only want to monitor the Event Queue for example, simply comment or remove the other agents from the module's config file.
## Configuration
Defaults are set to run every 30 minutes and table threshold size is 900, making sure your instance is below the target 1000 rows (per Sitecore's Performance Tuning Guide)```
900
900
900
```
## Installation
The Sitecore package located in the Package folder called Sitecore Cleanup Monitor-1.0.zip contains:
* Binary (release build).
* Configuration file containing the 3 agents with default settings.Use the Sitecore Installation Wizard to install the package.
**After installation**:
* Configure the clean up agents run frequency and table threshold.