I was following the official documentation to test run feast using docker compose for online serving only. In the basic experiment jupyter notebook, I was stuck at
- Ingest data into Feast for a feature set
client.ingest("customer_transactions", customer_features)
It always get timeout.
After hours of struggling, a colleague pointed out that the online-serving is not started. It is mentioned in the github main page as:
docker-compose -f docker-compose.yml -f docker-compose.online.yml up -d
but missing in the official documentation:
docker-compose up -d
I think it's better to add it to the documentation too in case others have the same issue.
I was following the official documentation to test run feast using docker compose for online serving only. In the basic experiment jupyter notebook, I was stuck at
It always get timeout.
After hours of struggling, a colleague pointed out that the online-serving is not started. It is mentioned in the github main page as:
docker-compose -f docker-compose.yml -f docker-compose.online.yml up -dbut missing in the official documentation:
docker-compose up -dI think it's better to add it to the documentation too in case others have the same issue.