Retail Catalogue is a very simple Quarkus application that persists data in a Postgresql database.
'commands' endpoint displays the content of the database model.
[
{
"id": 5,
"buyer": {
"id": 4,
"country": "Spain",
"email": "[email protected]",
"name": "Maria Rosario Frechilla",
"phone": "+34 666"
},
"products": [
{
"id": 1,
"code": "c123",
"name": "Skirt Party",
"price": 50,
"stock": 20
},
{
"id": 2,
"code": "c456",
"name": "Pants Party",
"price": 20,
"stock": 10
},
{
"id": 3,
"code": "c789",
"name": "Dress Party",
"price": 90,
"stock": 20
}
],
"promotion": true
}
]
Inmemory Catalogue creates two SQL Cache Stores with Infinispan on startup.
catalogue-table-store
is a table sql store persisted cache that maps to the RetailProduct tablesold-products-query-store
is a query sql store persisted cache that joins information across multiple tables.
Both caches use indexing.
The application exposes 3 endpoints:
catalogue
: Lists the catalogue content. Can filter by name, stock units and prices using query parameters.catalogue/{code}
: Displays the catalogue product by codesales
: Lists the products than have been sold. Filter can be done name of the product and country.
Additional resources and useful links:
- Infinispan Query and Indexing Guide
- Infinispan SQL Cache Storage Documentation
- Quarkus Infinispan Extension
- Install and start Minikube
minikube start --driver=virtualbox --cpus 4 --memory "8192mb"
- Create Kubernetes Secret
sqlstore-credentials
kubectl create secret generic sqlstore-credentials --from-literal=db-username=infinispan --from-literal=db-password=secret
- Deploy Postgresql
kubectl apply -f postgres.yaml
- Build and deploy Retail Catalogue
eval $(minikube -p minikube docker-env)
./mvnw clean package -Dquarkus.kubernetes.deploy=true -DskipTests=true
# Export the service URL
export RETAIL_CATALOGUE=$(minikube service --url retail-store-service)
# Check the commands endpoint
curl $RETAIL_CATALOGUE/commands
- Install the Infinispan Operator
curl -sL https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.19.1/install.sh | bash -s v0.19.1
kubectl create -f https://operatorhub.io/install/infinispan.yaml
kubectl get csv -n operators
You should see
NAME DISPLAY VERSION REPLACES PHASE
infinispan-operator.v2.2.1 Infinispan Operator 2.2.1 infinispan-operator.v2.2.0 Succeeded
- Create Infinispan identities secret
kubectl create secret generic --from-file=identities.yaml connect-secret
- Deploy infinispan server
kubectl apply -f infinispan.yaml
You should see something like the following list
minikube service list
15:17:03
|-------------|-----------------------|--------------|-----------------------------|
| NAMESPACE | NAME | TARGET PORT | URL |
|-------------|-----------------------|--------------|-----------------------------|
| default | infinispan | No node port |
| default | infinispan-admin | No node port |
| default | infinispan-external | 11222 | http://192.168.59.101:30000 |
| default | infinispan-ping | No node port |
| default | kubernetes | No node port |
| default | postgres | http/5432 | http://192.168.59.101:31684 |
| default | retail-store-service | http/80 | http://192.168.59.101:31056 |
| kube-system | kube-dns | No node port |
| olm | operatorhubio-catalog | No node port |
| olm | packageserver-service | No node port |
|-------------|-----------------------|--------------|-----------------------------|
- Create Infinispan Client Secret with the chosen user/password
kubectl create secret generic infinispan-client-credentials --from-literal=infinispan-username=admin --from-literal=infinispan-password=secret
- Build and deploy Inmemory Catalogue
eval $(minikube -p minikube docker-env)
./mvnw clean package -Dquarkus.kubernetes.deploy=true -DskipTests=true
# Export the service URL
export INMEMORY_CATALOGUE=$(minikube service --url inmemory-catalogue-service)
curl $INMEMORY_CATALOGUE