mirror of
https://github.com/docling-project/docling-serve.git
synced 2025-11-29 08:33:50 +00:00
docs: add openshift replicasets examples (#209)
Signed-off-by: Rui-Dias-Gomes <rui.dias.gomes@ibm.com> Co-authored-by: Rui-Dias-Gomes <rui.dias.gomes@ibm.com>
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -444,3 +444,5 @@ pip-selfcheck.json
|
|||||||
# Makefile
|
# Makefile
|
||||||
.action-lint
|
.action-lint
|
||||||
.markdown-lint
|
.markdown-lint
|
||||||
|
|
||||||
|
cookies.txt
|
||||||
@@ -0,0 +1,76 @@
|
|||||||
|
# This example deployment configures Docling Serve with a Route + Sticky sessions, a Service and cpu image
|
||||||
|
---
|
||||||
|
kind: Route
|
||||||
|
apiVersion: route.openshift.io/v1
|
||||||
|
metadata:
|
||||||
|
name: docling-serve
|
||||||
|
labels:
|
||||||
|
app: docling-serve
|
||||||
|
component: docling-serve-api
|
||||||
|
annotations:
|
||||||
|
haproxy.router.openshift.io/disable_cookies: "false" # this annotation enables the sticky sessions
|
||||||
|
spec:
|
||||||
|
path: /
|
||||||
|
to:
|
||||||
|
kind: Service
|
||||||
|
name: docling-serve
|
||||||
|
port:
|
||||||
|
targetPort: http
|
||||||
|
tls:
|
||||||
|
termination: edge
|
||||||
|
insecureEdgeTerminationPolicy: Redirect
|
||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: docling-serve
|
||||||
|
labels:
|
||||||
|
app: docling-serve
|
||||||
|
component: docling-serve-api
|
||||||
|
spec:
|
||||||
|
ports:
|
||||||
|
- name: http
|
||||||
|
port: 5001
|
||||||
|
targetPort: http
|
||||||
|
selector:
|
||||||
|
app: docling-serve
|
||||||
|
component: docling-serve-api
|
||||||
|
---
|
||||||
|
kind: Deployment
|
||||||
|
apiVersion: apps/v1
|
||||||
|
metadata:
|
||||||
|
name: docling-serve
|
||||||
|
labels:
|
||||||
|
app: docling-serve
|
||||||
|
component: docling-serve-api
|
||||||
|
spec:
|
||||||
|
replicas: 3
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: docling-serve
|
||||||
|
component: docling-serve-api
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: docling-serve
|
||||||
|
component: docling-serve-api
|
||||||
|
spec:
|
||||||
|
restartPolicy: Always
|
||||||
|
containers:
|
||||||
|
- name: api
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
cpu: 500m
|
||||||
|
memory: 2Gi
|
||||||
|
requests:
|
||||||
|
cpu: 250m
|
||||||
|
memory: 1Gi
|
||||||
|
env:
|
||||||
|
- name: DOCLING_SERVE_ENABLE_UI
|
||||||
|
value: 'true'
|
||||||
|
ports:
|
||||||
|
- name: http
|
||||||
|
containerPort: 5001
|
||||||
|
protocol: TCP
|
||||||
|
imagePullPolicy: Always
|
||||||
|
image: 'ghcr.io/docling-project/docling-serve'
|
||||||
@@ -192,3 +192,45 @@ curl -X 'POST' \
|
|||||||
"http_sources": [{"url": "https://arxiv.org/pdf/2501.17887"}]
|
"http_sources": [{"url": "https://arxiv.org/pdf/2501.17887"}]
|
||||||
}'
|
}'
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### ReplicaSets with `sticky sessions`
|
||||||
|
|
||||||
|
Manifest example: [docling-serve-replicas-w-sticky-sessions.yaml](./deploy-examples/docling-serve-replicas-w-sticky-sessions.yaml)
|
||||||
|
|
||||||
|
This deployment has the following features:
|
||||||
|
|
||||||
|
- Deployment configuration with 3 replicas
|
||||||
|
- Service configuration
|
||||||
|
- Expose the service using a OpenShift `Route` and enables sticky sessions
|
||||||
|
|
||||||
|
Install the app with:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
oc apply -f docs/deploy-examples/docling-serve-replicas-w-sticky-sessions.yaml
|
||||||
|
```
|
||||||
|
|
||||||
|
For using the API:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
# Retrieve the endpoint
|
||||||
|
DOCLING_NAME=docling-serve
|
||||||
|
DOCLING_ROUTE="https://$(oc get routes $DOCLING_NAME --template={{.spec.host}})"
|
||||||
|
|
||||||
|
# Make a test query, store the cookie and taskid
|
||||||
|
task_id=$(curl -s -X 'POST' \
|
||||||
|
"${DOCLING_ROUTE}/v1alpha/convert/source/async" \
|
||||||
|
-H "accept: application/json" \
|
||||||
|
-H "Content-Type: application/json" \
|
||||||
|
-d '{
|
||||||
|
"http_sources": [{"url": "https://arxiv.org/pdf/2501.17887"}]
|
||||||
|
}' \
|
||||||
|
-c cookies.txt | grep -oP '"task_id":"\K[^"]+')
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh
|
||||||
|
# Grab the taskid and cookie to check the task status
|
||||||
|
curl -v -X 'GET' \
|
||||||
|
"${DOCLING_ROUTE}/v1alpha/status/poll/$task_id?wait=0" \
|
||||||
|
-H "accept: application/json" \
|
||||||
|
-b "cookies.txt"
|
||||||
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user