Home › Forums › Calendar Products › Events Calendar PRO › Crons?
- This topic has 8 replies, 4 voices, and was last updated 9 years, 8 months ago by
Karen Newman.
-
AuthorPosts
-
July 19, 2016 at 12:20 pm #1141644
Karen Newman
ParticipantWhat crons does the events calendar and events calendar pro run? Every day at 1:50pm EST my database server is running at 100% CPU usage. I’m not saying it’s the events calendar, however I’m not saying it’s not. The other plugins I have running on the site, I have installed on others and there is no problem.
*NOTE: disabling other plugins and activating another theme is not an option as this is a production site, and it is only occurring on the production site.
July 19, 2016 at 12:47 pm #1141651Brook
ParticipantHowdy canalsideweb,
I would love to help you with this.
We have a number of CRONs we run, in particular Events Calendar Pro does. For example, when you create a recurring event with a distance end date or no end date, we have a lot of posts we have to create. Rather than making you wait for minutes upon save we start a cron script that will steadily create those events in the background.
Another example is we have a cron script that cleans up old recurring events in the background. We have a setting in the backend that dictates how long to keep around old recurring events for and how far into the future to spawn new ones. Once a day it will delete old ones and create new ones. This is very possibly the cause of your usage.
These tasks all have to be done, and it is best they get done in the background especially on servers that support true CRON tasks that way they won’t slow page loads down as much. But you might be interested in changing the time if 1:50pm is a period of high traffic for your site. Have you checked out any cron management plugins like WP Crontrol ? They allow you to manage and reschedule Cron tasks a decent amount. They main thing I think you could do here is move that daily script to a different time. You would not be able to change the schedule away from daily, but you should be able to alter the time.
Does that all make sense? Will that work for you? Please let me know.
Cheers!
– Brook
July 19, 2016 at 1:42 pm #1141673Karen Newman
ParticipantMakes sense and it looks like there are only two crons from your plugin running. I have my SQL logs on and there are a lot of read queries happening at this time. A lot of them are queries to posts from tribe events. For example here are a ton of queries that run all at the same time. Not saying all of these are by your plugin, but some seem like they are:
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT option_value FROM wp_options WHERE option_name = ‘itsec_message_queue’ LIMIT 1
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT option_value FROM wp_options WHERE option_name = ‘jetpack_active_modules’ LIMIT 1
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT option_value FROM wp_options WHERE option_name = ‘uninstall_plugins’ LIMIT 1
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT option_value FROM wp_options WHERE option_name = ‘bit51_bwps’ LIMIT 1
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT option_value FROM wp_options WHERE option_name = ‘ithemes-sync-twitter-accounts’ LIMIT 1
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT option_value FROM wp_options WHERE option_name = ‘ossdl_https’ LIMIT 1
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT option_value FROM wp_options WHERE option_name = ‘gzipcompression’ LIMIT 1
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECTlockout_hostFROMwp_itsec_lockoutsWHERElockout_active=1 ANDlockout_expire_gmt> ‘2016-07-19 17:55:27’ ANDlockout_host=’64.39.104.110′
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT option_value FROM wp_options WHERE option_name = ‘preload_cache_counter’ LIMIT 1
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT ID FROM wp_posts WHERE post_name=’paddle-and-peddle-boat-rentals’ AND post_type=’tribe_events’
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN (12105) ORDER BY meta_id ASC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT ID
FROM wp_posts p
INNER JOIN wp_postmeta m ON m.post_id=p.ID AND m.meta_key=’_EventStartDate’
WHERE p.post_parent=12105
AND p.post_type=’tribe_events’
AND LEFT( m.meta_value, 10 ) = ‘2016-08-01’
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT DISTINCT wp_posts.*, MIN(wp_postmeta.meta_value) as EventStartDate, MIN(tribe_event_end_date.meta_value) as EventEndDate FROM wp_posts INNER JOIN wp_postmeta ON ( wp_posts.ID = wp_postmeta.post_id ) LEFT JOIN wp_postmeta as tribe_event_end_date ON ( wp_posts.ID = tribe_event_end_date.post_id AND tribe_event_end_date.meta_key = ‘_EventEndDate’ ) WHERE 1=1 AND wp_posts.ID = 13757 AND (
wp_postmeta.meta_key = ‘_EventStartDate’
) AND wp_posts.post_type = ‘tribe_events’ GROUP BY wp_posts.ID ORDER BY EventStartDate DESC, wp_posts.post_date DESC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT t.*, tt.*, tr.object_id FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON tt.term_id = t.term_id INNER JOIN wp_term_relationships AS tr ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tt.taxonomy IN (‘post_tag’, ‘tribe_events_cat’) AND tr.object_id IN (13757) ORDER BY t.name ASC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN (13757) ORDER BY meta_id ASC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT * FROM wp_posts WHERE ID = 13606 LIMIT 1
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN (13606) ORDER BY meta_id ASC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT * FROM wp_posts WHERE ID = 12105 LIMIT 1
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT option_value FROM wp_options WHERE option_name = ‘_transient_timeout_geoloc_center_point_estimation’ LIMIT 1
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT FOUND_ROWS()
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT option_value FROM wp_options WHERE option_name = ‘_transient_geoloc_center_point_estimation’ LIMIT 1
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT t.*, tt.*, tr.object_id FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON tt.term_id = t.term_id INNER JOIN wp_term_relationships AS tr ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tt.taxonomy IN (‘post_tag’, ‘tribe_events_cat’) AND tr.object_id IN (10125, 10371, 11361, 13744) ORDER BY t.name ASC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT p.ID FROM wp_posts AS p WHERE p.post_date < ‘2016-06-22 15:03:39’ AND p.post_type = ‘tribe_events’ AND p.post_status = ‘publish’ ORDER BY p.post_date DESC LIMIT 1
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN (10125,10371,11361,13744) ORDER BY meta_id ASC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT * FROM wp_posts WHERE ID = 11449 LIMIT 1
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN (11449) ORDER BY meta_id ASC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT option_value FROM wp_options WHERE option_name = ‘_options_ttd_desktop_image’ LIMIT 1
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT * FROM wp_posts WHERE ID = 11374 LIMIT 1
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT option_value FROM wp_options WHERE option_name = ‘options_ttd_desktop_image’ LIMIT 1
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT p.ID FROM wp_posts AS p WHERE p.post_date > ‘2016-06-22 15:03:39’ AND p.post_type = ‘tribe_events’ AND p.post_status = ‘publish’ ORDER BY p.post_date ASC LIMIT 1
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT * FROM wp_posts WHERE ID = 9823 LIMIT 1
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT * FROM wp_posts WHERE ID = 12835 LIMIT 1
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN (9823) ORDER BY meta_id ASC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN (12835) ORDER BY meta_id ASC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT t.*, tt.* FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON t.term_id = tt.term_id WHERE t.slug = ‘desktop-menu’ AND tt.taxonomy = ‘nav_menu’ LIMIT 1
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT * FROM wp_posts WHERE ID = 6422 LIMIT 1
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT tr.object_id FROM wp_term_relationships AS tr INNER JOIN wp_term_taxonomy AS tt ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tt.taxonomy IN (‘nav_menu’) AND tt.term_id IN (’10’) ORDER BY tr.object_id ASC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN (6422) ORDER BY meta_id ASC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT wp_posts.* FROM wp_posts WHERE 1=1 AND wp_posts.ID IN (360,361,362,363,364,4276) AND wp_posts.post_type = ‘nav_menu_item’ AND ((wp_posts.post_status = ‘publish’)) ORDER BY wp_posts.menu_order ASC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 87 655433897 Query SELECT SQL_CALC_FOUND_ROWS DISTINCT wp_posts.*, MIN(wp_postmeta.meta_value) as EventStartDate, MIN(tribe_event_end_date.meta_value) as EventEndDate FROM wp_posts INNER JOIN wp_postmeta ON ( wp_posts.ID = wp_postmeta.post_id ) LEFT JOIN wp_postmeta as tribe_event_end_date ON ( wp_posts.ID = tribe_event_end_date.post_id AND tribe_event_end_date.meta_key = ‘_EventEndDate’ ) WHERE 1=1 AND (
wp_postmeta.meta_key = ‘_EventStartDate’
) AND wp_posts.post_type = ‘tribe_events’ AND (wp_posts.post_status = ‘publish’ OR wp_posts.post_status = ‘acf-disabled’) AND ((wp_postmeta.meta_value >= ‘2016-07-19 00:00:00’ AND wp_postmeta.meta_value <= ‘2016-07-20 00:00:00’) OR (tribe_event_end_date.meta_value >= ‘2016-07-19 00:00:00’ AND wp_postmeta.meta_value <= ‘2016-07-20 00:00:00’ ) OR (wp_postmeta.meta_value < ‘2016-07-19 00:00:00’ AND tribe_event_end_date.meta_value >= ‘2016-07-20 00:00:00’ )) GROUP BY wp_posts.ID ORDER BY EventStartDate ASC, wp_posts.post_date ASC LIMIT 0, 4
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN (364,363,362,361,4276,360) ORDER BY meta_id ASC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT wp_posts.* FROM wp_posts WHERE 1=1 AND wp_posts.ID IN (6,299,303,297,305) AND wp_posts.post_type = ‘page’ AND ((wp_posts.post_status = ‘publish’)) ORDER BY wp_posts.post_date DESC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN (305,303,299,297,6) ORDER BY meta_id ASC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT t.term_id FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON tt.term_id = t.term_id INNER JOIN wp_term_relationships AS tr ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tt.taxonomy IN (‘tribe_events_cat’) AND tr.object_id IN (12867) ORDER BY t.name ASC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT t.*, tt.* FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON t.term_id = tt.term_id WHERE t.slug = ‘mobile-menu’ AND tt.taxonomy = ‘nav_menu’ LIMIT 1
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT tr.object_id FROM wp_term_relationships AS tr INNER JOIN wp_term_taxonomy AS tt ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tt.taxonomy IN (‘nav_menu’) AND tt.term_id IN (’11’) ORDER BY tr.object_id ASC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT wp_posts.* FROM wp_posts WHERE 1=1 AND wp_posts.ID IN (367,369,370,371,372,373,374,378,2708,2710,9464,9465,9466,9467,9468,9469,9554,9555) AND wp_posts.post_type = ‘nav_menu_item’ AND ((wp_posts.post_status = ‘publish’)) ORDER BY wp_posts.menu_order ASC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN (378,367,369,9464,370,372,9465,9466,9467,371,9468,9469,374,2708,2710,9554,9555,373) ORDER BY meta_id ASC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT wp_posts.* FROM wp_posts WHERE 1=1 AND wp_posts.ID IN (6,293,2899,295,301,7339,297,4254,299,4267,3964,303,2653,2659,4523,4331,305) AND wp_posts.post_type = ‘page’ AND ((wp_posts.post_status = ‘publish’)) ORDER BY wp_posts.post_date DESC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN (7339,4523,4331,4267,4254,3964,2899,2653,2659,301,295,293) ORDER BY meta_id ASC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT t.term_id FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON tt.term_id = t.term_id INNER JOIN wp_term_relationships AS tr ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tt.taxonomy IN (‘tribe_events_cat’) AND tr.object_id IN (12867) ORDER BY t.name ASC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT * FROM wp_users WHERE ID = ‘5’
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT user_id, meta_key, meta_value FROM wp_usermeta WHERE user_id IN (5) ORDER BY umeta_id ASC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT wp_posts.* FROM wp_posts WHERE 1=1 AND wp_posts.ID IN (1570) AND wp_posts.post_type = ‘sponsors’ AND ((wp_posts.post_status <> ‘trash’ AND wp_posts.post_status <> ‘auto-draft’)) ORDER BY FIELD( wp_posts.ID, 1570 )
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN (1570) ORDER BY meta_id ASC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT * FROM wp_posts WHERE ID = 3601 LIMIT 1
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN (3601) ORDER BY meta_id ASC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT t.*, tt.* FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON t.term_id = tt.term_id WHERE t.slug = ‘footer-menu’ AND tt.taxonomy = ‘nav_menu’ LIMIT 1
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT tr.object_id FROM wp_term_relationships AS tr INNER JOIN wp_term_taxonomy AS tt ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tt.taxonomy IN (‘nav_menu’) AND tt.term_id IN (’12’) ORDER BY tr.object_id ASC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT wp_posts.* FROM wp_posts WHERE 1=1 AND wp_posts.ID IN (4008,4009,4010,4011) AND wp_posts.post_type = ‘nav_menu_item’ AND ((wp_posts.post_status = ‘publish’)) ORDER BY wp_posts.menu_order ASC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN (4008,4009,4010,4011) ORDER BY meta_id ASC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT wp_posts.* FROM wp_posts WHERE 1=1 AND wp_posts.ID IN (305) AND wp_posts.post_type = ‘page’ AND ((wp_posts.post_status = ‘publish’)) ORDER BY wp_posts.post_date DESC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT t.term_id FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON tt.term_id = t.term_id INNER JOIN wp_term_relationships AS tr ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tt.taxonomy IN (‘tribe_events_cat’) AND tr.object_id IN (12867) ORDER BY t.name ASC
2016-07-19 17:55:20 Canal_DB[Canal_DB] @ [172.30.3.98] 85 655433897 Query SELECT option_value FROM wp_options WHERE option_name = ‘tribe_events_pro_customizer’ LIMIT 1July 19, 2016 at 1:52 pm #1141676Karen Newman
ParticipantI should also mention that my site is cached using WP Super Cache, so the fact that my DB is macing out is strange.
July 20, 2016 at 7:10 am #1141877Brook
ParticipantFirst of all, bravo on logging things and actually monitoring the logs. Not enough people do that.
I have my SQL logs on and there are a lot of read queries happening at this time. A lot of them are queries to posts from tribe events.
The set of queries you shared looks like a single page load to me. The ones in there that are for events are querying for a single day and all the events in it, so this is probably just someone viewing Day view around the time of the cron job. Aside from those queries, which would be the main ones for the page content, it looks like you’ve got a couple menus, a number of plugins, and maybe a few widgets spawning the rest.
I should also mention that my site is cached using WP Super Cache, so the fact that my DB is macing out is strange.
Are page load times actually increasing around the time of the cron tasks or just utilization? 100% utilization is not necessarily a bad sign, at times on a properly configured server it can even be a good thing and lead to faster page load speeds.
In short, if you are just worried that your server shows the occasional spike, I would not be. That’s pretty normal and if it’s spawned by our plugin it’s actual a purposeful set of performance enhancements to keep from delaying page loads. If on the other hand you are noticing the site is running super slow at times, and it is coinciding with those cron tasks, that would be something you could optimize for. The best way to do that that I can think of is to use your analytics to figure out what time of day is low traffic for your website (commonly around 4 am local time), and reschedule your major cron tasks to run then.
Cheers!
– Brook
July 20, 2016 at 7:15 am #1141882Karen Newman
ParticipantThe web server and database server are separated. When the DB server is being maxed out, the web server is fine. I only showed you one small sample set of the queries going on in this 15 min window. there are thousands more. There is no way that the traffic on the site is generated all these queries. Like I said before, I’m not blaming your plugin, but a lot of the queries seem to be related to the events plugin. I’m just going to disable the wp crons right before this normally happens, and test my theory that it is the crons. I’m going to close this issue, since I feel that I will have to dig deeper into my site to see whats going on. Thanks for the help!
July 20, 2016 at 9:34 pm #1142270Brook
ParticipantFor sure. I will leave this open for a couple weeks anyways just in case you finish. Don’t want you to have to open a new topic needlessly.
You might checkout the plugin Query Monitor. It is very useful for getting an idea of what queries happen on a given page. Could be helpful for sorting through those logs. It could also be very useful for figuring out how effective your caching is, as it will tell you how many queries still happen with your cache on.
Let me know if you need anything else.
– Brook
August 11, 2016 at 9:35 am #1150603Support Droid
KeymasterThis topic has not been active for quite some time and will now be closed.
If you still need assistance please simply open a new topic (linking to this one if necessary)
and one of the team will be only too happy to help. -
AuthorPosts
- The topic ‘Crons?’ is closed to new replies.
