{% extends "base.html" %} {% block title %}Scheduler Status - Admin{% endblock %} {% block content %}

Orchid Record Scheduler

Back to Admin
{% if status.running %} {% else %} {% endif %}
Status

{% if status.running %} Running {% else %} Stopped {% endif %}

Updates

{{ status.update_count }}
Total cycles

Last Update

{% if status.last_update %} {{ status.last_update[:19] }} {% else %} Never {% endif %}

Next Update

{% if status.next_update %} {{ status.next_update[:19] }} {% else %} Unknown {% endif %}

Scheduled Tasks
Task Frequency Description Status
Orchid Record Update Every 15 minutes Runs scrapers, updates geographic data, refreshes metadata {% if status.running %} Active {% else %} Inactive {% endif %}
Metadata Refresh Every hour Updates view counts, validation statuses, featured orchids {% if status.running %} Active {% else %} Inactive {% endif %}
Maintenance Tasks Every 6 hours Database cleanup, statistics updates, view refresh {% if status.running %} Active {% else %} Inactive {% endif %}
Full Database Refresh Daily at 3:00 AM Complete scraper run, name expansion, cache refresh {% if status.running %} Active {% else %} Inactive {% endif %}
Automatic Updates: The scheduler automatically updates orchid records every 15 minutes, ensuring fresh data from international orchid databases and maintaining accurate geographic and taxonomic information.
{% endblock %}