2020-10-15 14:22:41 +00:00
|
|
|
class Invidious::Jobs::RefreshChannelsJob < Invidious::Jobs::BaseJob
|
|
|
|
private getter db : DB::Database
|
|
|
|
private getter logger : Invidious::LogHandler
|
|
|
|
private getter config : Config
|
|
|
|
|
|
|
|
def initialize(@db, @logger, @config)
|
|
|
|
end
|
|
|
|
|
|
|
|
def begin
|
2020-12-27 04:14:33 +00:00
|
|
|
max_fibers = config.channel_threads
|
|
|
|
lim_fibers = max_fibers
|
|
|
|
active_fibers = 0
|
2020-10-15 14:22:41 +00:00
|
|
|
active_channel = Channel(Bool).new
|
|
|
|
backoff = 1.seconds
|
|
|
|
|
|
|
|
loop do
|
2020-12-21 15:05:35 +00:00
|
|
|
logger.debug("RefreshChannelsJob: Refreshing all channels")
|
2020-10-15 14:22:41 +00:00
|
|
|
db.query("SELECT id FROM channels ORDER BY updated") do |rs|
|
|
|
|
rs.each do
|
|
|
|
id = rs.read(String)
|
|
|
|
|
2020-12-27 04:14:33 +00:00
|
|
|
if active_fibers >= lim_fibers
|
2020-12-27 04:20:33 +00:00
|
|
|
logger.trace("RefreshChannelsJob: Fiber limit reached, waiting...")
|
2020-10-15 14:22:41 +00:00
|
|
|
if active_channel.receive
|
2020-12-27 04:20:33 +00:00
|
|
|
logger.trace("RefreshChannelsJob: Fiber limit ok, continuing")
|
2020-12-27 04:14:33 +00:00
|
|
|
active_fibers -= 1
|
2020-10-15 14:22:41 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-12-27 04:20:33 +00:00
|
|
|
logger.trace("RefreshChannelsJob: #{id} : Spawning fiber")
|
2020-12-27 04:14:33 +00:00
|
|
|
active_fibers += 1
|
2020-10-15 14:22:41 +00:00
|
|
|
spawn do
|
|
|
|
begin
|
2020-12-27 04:20:33 +00:00
|
|
|
logger.trace("RefreshChannelsJob: #{id} fiber : Fetching channel")
|
|
|
|
channel = fetch_channel(id, db, logger, config.full_refresh)
|
2020-10-15 14:22:41 +00:00
|
|
|
|
2020-12-27 04:14:33 +00:00
|
|
|
lim_fibers = max_fibers
|
2020-12-27 04:20:33 +00:00
|
|
|
|
|
|
|
logger.trace("RefreshChannelsJob: #{id} fiber : Updating DB")
|
2020-10-15 14:22:41 +00:00
|
|
|
db.exec("UPDATE channels SET updated = $1, author = $2, deleted = false WHERE id = $3", Time.utc, channel.author, id)
|
|
|
|
rescue ex
|
2020-12-21 15:05:35 +00:00
|
|
|
logger.error("RefreshChannelsJob: #{id} : #{ex.message}")
|
2020-10-15 14:22:41 +00:00
|
|
|
if ex.message == "Deleted or invalid channel"
|
|
|
|
db.exec("UPDATE channels SET updated = $1, deleted = true WHERE id = $2", Time.utc, id)
|
|
|
|
else
|
2020-12-27 04:14:33 +00:00
|
|
|
lim_fibers = 1
|
2020-12-27 04:20:33 +00:00
|
|
|
logger.error("RefreshChannelsJob: #{id} fiber : backing off for #{backoff}s")
|
2020-10-15 14:22:41 +00:00
|
|
|
sleep backoff
|
|
|
|
if backoff < 1.days
|
|
|
|
backoff += backoff
|
|
|
|
else
|
|
|
|
backoff = 1.days
|
|
|
|
end
|
|
|
|
end
|
2020-12-27 04:20:33 +00:00
|
|
|
ensure
|
|
|
|
logger.trace("RefreshChannelsJob: #{id} fiber : Done")
|
|
|
|
active_channel.send(true)
|
2020-10-15 14:22:41 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-12-27 04:20:33 +00:00
|
|
|
logger.debug("RefreshChannelsJob: Done, sleeping for one minute")
|
2020-10-15 14:22:41 +00:00
|
|
|
sleep 1.minute
|
|
|
|
Fiber.yield
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|