invidious-mod/src/invidious/jobs/refresh_channels_job.cr

67 行
2.2 KiB
Crystal
Raw 通常表示 履歴

2020-10-15 23:22:41 +09:00
class Invidious::Jobs::RefreshChannelsJob < Invidious::Jobs::BaseJob
private getter db : DB::Database
def initialize(@db)
2020-10-15 23:22:41 +09:00
end
def begin
max_fibers = CONFIG.channel_threads
lim_fibers = max_fibers
active_fibers = 0
2020-10-15 23:22:41 +09:00
active_channel = Channel(Bool).new
backoff = 2.minutes
2020-10-15 23:22:41 +09:00
loop do
LOGGER.debug("RefreshChannelsJob: Refreshing all channels")
2022-01-10 06:04:10 +09:00
PG_DB.query("SELECT id FROM channels ORDER BY updated") do |rs|
2020-10-15 23:22:41 +09:00
rs.each do
id = rs.read(String)
if active_fibers >= lim_fibers
LOGGER.trace("RefreshChannelsJob: Fiber limit reached, waiting...")
2020-10-15 23:22:41 +09:00
if active_channel.receive
LOGGER.trace("RefreshChannelsJob: Fiber limit ok, continuing")
active_fibers -= 1
2020-10-15 23:22:41 +09:00
end
end
LOGGER.debug("RefreshChannelsJob: #{id} : Spawning fiber")
active_fibers += 1
2020-10-15 23:22:41 +09:00
spawn do
begin
LOGGER.trace("RefreshChannelsJob: #{id} fiber : Fetching channel")
2022-01-22 12:27:50 +09:00
channel = fetch_channel(id, pull_all_videos: CONFIG.full_refresh)
2020-10-15 23:22:41 +09:00
lim_fibers = max_fibers
LOGGER.trace("RefreshChannelsJob: #{id} fiber : Updating DB")
Invidious::Database::Channels.update_author(id, channel.author)
2020-10-15 23:22:41 +09:00
rescue ex
LOGGER.error("RefreshChannelsJob: #{id} : #{ex.message}")
2020-10-15 23:22:41 +09:00
if ex.message == "Deleted or invalid channel"
Invidious::Database::Channels.update_mark_deleted(id)
2020-10-15 23:22:41 +09:00
else
lim_fibers = 1
LOGGER.error("RefreshChannelsJob: #{id} fiber : backing off for #{backoff}s")
2020-10-15 23:22:41 +09:00
sleep backoff
if backoff < 1.days
backoff += backoff
else
backoff = 1.days
end
end
ensure
LOGGER.debug("RefreshChannelsJob: #{id} fiber : Done")
active_channel.send(true)
2020-10-15 23:22:41 +09:00
end
end
end
end
LOGGER.debug("RefreshChannelsJob: Done, sleeping for #{CONFIG.channel_refresh_interval}")
sleep CONFIG.channel_refresh_interval
2020-10-15 23:22:41 +09:00
Fiber.yield
end
end
end