A simple FastAPI example of three endpoints to create, read and append data to a delta table.
Note: This example uses Azurite Emulator as Storage Account.
docker-compose up -d --build- Using Microsoft Azure Storage Explorer connect to Storage Accounts / Emulator.
- Create a container: sandbox
curl -X POST http://127.0.0.1:8000/create \
-H 'Content-Type: application/json' \
-d '{ "x": 1, "y": 1 }'curl -X POST http://127.0.0.1:8000/append \
-H 'Content-Type: application/json' \
-d '{ "x": 2, "y": 2 }'curl http://127.0.0.1:8000/read