Spaces:
Running
on
A100
Running
on
A100
Stuck in Queue.. The Space Needs to be restarted
#12
by
xi0v
- opened
The space has been stuck in queue ever since yesterday.
I do not know who to ping for this issue, so if anyone from the arcee-ai org is reading this, Please restart the space.
hello @chargoddard - I apologize for the ping. do you mind restarting the space to fix this issue ๐๐ป
xi0v
changed discussion title from
The Space Needs to be started
to Stuck in Queue.. The Space Needs to be restarted
Been stuck for 2 days now, the space should implement an auto restart feature and timer honestly
@chargoddard
implement an auto restart feature in this space.
There is an implementation done in this space; https://huggingface.co/spaces/ggml-org/gguf-my-repo
Obviously edit this code to fit the space, it would also be good if you add a countdown for the space restart.
from huggingface_hub import HfApi
#you can switch factory reboot off
def restart_space():
HfApi().restart_space(repo_id="arcee-ai/mergekit-gui", token=HF_TOKEN, factory_reboot=True)
# restart every 6 hours
scheduler = BackgroundScheduler()
scheduler.add_job(restart_space, "interval", seconds=21600)
scheduler.start()
Seems still stuck in queue..