and deletes the items with the corresponding id from ow_newsfeed_action
The timestamp and userid of different activity do not change through dozens of pages of records, please do not change your access details for cpanel, we'd like to take a look at the issue.
index newsfeed works good, it's only dashboard newsfeed.
For now I have removed dashboard newsfeed module.
Thank you
cron checks table ow_newsfeed_activity and it looks for items with the activityType - create and checks the corresponding activityID in the ow_newsfeed_action table, if for 3 month none of the activity with the activity type create had any comments or likes it is considered as expired and is deleted.
As to the same timestamp in the action_set table, those are cache table and those timestamps for cache are generated at the same time.
So we couldn't find any issue, besides your site dashboard and index pages being slow due to the query which need to be optimized and which is reported to the devs
Now, those expired records started to get deleted. There are 20 left, within next 5 minutes all expired activity should be deleted
SELECT DISTINCT cactivity.actionId FROM ow_newsfeed_activity cactivity
LEFT JOIN ow_newsfeed_activity activity
ON cactivity.actionId=activity.actionId AND activity.activityType NOT IN ("create", "subscribe")
WHERE activity.id IS NULL AND cactivity.activityType="create" AND cactivity.timeStamp < 1449569952