change how we iterate over accounts

This commit is contained in:
Andre Medeiros 2022-10-31 21:30:04 -04:00
parent f2b270a3de
commit d468a6e88b

View file

@ -456,7 +456,13 @@ func enqueueAccounts(ctx context.Context, logger *zap.Logger, statsd *statsd.Cli
now := time.Now() now := time.Now()
query := `SELECT reddit_account_id FROM accounts` query := `
SET work_mem TO '16MB';
SELECT DISTINCT reddit_account_id FROM accounts
INNER JOIN devices_accounts ON devices_accounts.account_id = accounts.id
INNER JOIN devices ON devices.id = devices_accounts.device_id
WHERE grace_period_expires_at >= NOW();
`
rows, err := pool.Query(ctx, query) rows, err := pool.Query(ctx, query)
if err != nil { if err != nil {
logger.Error("failed to fetch accounts", zap.Error(err)) logger.Error("failed to fetch accounts", zap.Error(err))