Hi everyone! Just trying out Airbyte for the first...
# announcements
m
Hi everyone! Just trying out Airbyte for the first time. I looks really promising, but I got stuck on the onboarding and can't find any way out of it. I added a postgres source, json destination, and then get an error in the final step. From there I'm unable to edit any settings, abort or skip the onboarding. I've tried deleting cookies, deleting docker images etc but not success. Any ideas?
c
Hiya!
So to reset you need to also delete the docker volumes associated with airbyte.
This is where data / stare is stored.
assuming that you did are running airbyte by running
docker-compose up
then what you need to do is: turn off airbyte completely:`docker-compose down -v` delete volumes:
docker volume rm $(docker volume ls -q | grep airbyte)
turn airbyte back on:
docker-compose up -V
that should handle you getting reset to the beginning.
i would be curious if we can see the logs associated with the failure you are seeing. I would say if after you reset you run into it again we can debug that.