OpenCrawling is an enterprise data integration and ingestion platform modeled after Apache ManifoldCF. It leverages modern Java 25 features (such as Structured Concurrency and Virtual Threads), Spring Boot, and vector search infrastructure to orchestrate data flows from various repository connectors to vector search outputs.
The diagram below shows the high-level architecture of OpenCrawling:
graph TD
subgraph UI
UI_App[Admin React UI - oc-admin-ui]
end
subgraph Platform Runtime [OpenCrawling JVM Runtime]
Core[Core Ingestion Engine - oc-core]
Runtime[Bootstrap - oc-runtime]
FS_Conn[Filesystem Repository - oc-filesystem-repository-connector]
Vec_Conn[Vector Output - oc-vector-output-connector]
Kafka_Cons[Ingestion Consumer - IngestionConsumer]
Runtime --> Core
Core --> FS_Conn
Core -->|Publish IngestionMessage| Kafka[(Kafka Topic: opencrawling-documents)]
Kafka -->|Consume Reference| Kafka_Cons
Kafka_Cons -->|Resolve Content & Process| Vec_Conn
end
subgraph Infrastructure [Docker Containers]
PG[(PostgreSQL + pgvector)]
Redis[(Redis Cache & Session)]
Ollama[Ollama AI Embeddings]
Kafka_Broker[Apache Kafka Broker]
end
UI_App -->|REST API| Runtime
Vec_Conn -->|Vectors| PG
Runtime -->|Job Cache| Redis
Vec_Conn -->|Generates Embeddings| Ollama
Kafka --> Kafka_Broker
- Java 25 Preview Features: Structured Concurrency, Virtual Threads, and Pattern Matching.
- Spring Boot & Spring AI: High-performance backend orchestrating ingestion jobs.
- Apache Kafka: Decoupled, event-driven document processing using the Claim Check Pattern.
- pgvector: High-dimensional vector similarity search in PostgreSQL.
- Redis Stack: Lightweight caching and session management.
- Ollama: Local AI embedding generation via open-source LLM models.
- Vite + React + TailwindCSS: Modern frontend administration dashboard.
Ensure you have the following installed on your machine:
- JDK 25 (Ensure
JAVA_HOMEpoints to your JDK 25 directory) - Maven 3.9+
- Docker & Docker Compose
- Node.js 18+ & npm (for the UI)
Spin up the database, cache, message broker, and AI engine. Run from the project root:
docker compose up -dServices started:
- PostgreSQL (Port 5432): For job metadata, schema migrations, and pgvector storage.
- Redis (Port 6379 / Insight Port 8001): For caching and session management.
- Ollama (Port 11434): For local embeddings.
- Apache Kafka (Port 9092): KRaft-mode broker for decoupled, event-driven document processing.
The platform is configured to use the mxbai-embed-large model for embeddings.
Currently the model should be pulled automagically but if you have issues, you have to pull it once by yourself:
docker exec -it ollama ollama pull mxbai-embed-large(You can exit the prompt with Ctrl+D once the download starts; Ollama will keep downloading in the background).
Compile all modules using Java 25. Since we utilize advanced features, preview features must be enabled:
mvn clean installStart the Spring Boot runtime application:
mvn spring-boot:run -pl oc-runtime -Dspring-boot.run.profiles=devBy default, the automatic startup crawl is disabled to prevent unnecessary scans. To trigger a demo crawl job on startup, pass the configuration properties:
mvn spring-boot:run -pl oc-runtime -Dspring-boot.run.profiles=dev \
-Dspring-boot.run.arguments="--spring.opencrawling.crawl-on-startup=true --spring.opencrawling.scan-path=/your/local/directory/to/scan"To launch the administration dashboard:
cd oc-admin-ui
npm install
npm run devOpen http://localhost:5173 in your browser.
OpenCrawling is designed for high-throughput, horizontal scalability. Since the ingestion pipeline is decoupled using Apache Kafka and the Claim Check Pattern, you can scale components independently.
Vector indexing and embedding generation is typically the primary performance bottleneck because of deep learning model inference (Ollama) and database indexing (pgvector).
- Kafka Consumer Group Partitioning: The
opencrawling-documentstopic is consumed by theIngestionConsumerinside theoc-runtimeservice. By configuring the topic with multiple partitions, Kafka will distribute documents among active consumers. - Horizontal Scaling of Runtime Instances: You can run multiple instances of the
oc-runtimeapplication sharing the samespring.application.nameand consumer group (opencrawling-vector-group). Kafka automatically distributes partitions and load-balances the messages. - Ollama Load Balancing: Scale out embedding generation by pointing
spring.ai.ollama.base-urlto a load balancer (e.g., NGINX, HAProxy) backed by a cluster of Ollama instances running on GPU-enabled nodes.
The scanning/crawling phase can be distributed by splitting large target sources:
- Partitioned Scans: Run separate bootstrap crawl jobs targeting different sub-directories or repository prefixes.
- Distributed File Shares / Shared Storage: In a multi-node setup, ensure the
IngestionConsumerinstances have access to the same shared filesystem (e.g., NFS, S3/MinIO bucket, SMB) as the repository crawlers, so the Claim Check reference (path/URI) can be successfully resolved by the consumer node.
To ensure the messaging system remains fast and responsive:
- The Repository Connector crawls data, but instead of publishing the entire document content (which could be megabytes of binary data) to Kafka, it saves/references the file on a shared storage medium.
- It publishes a lightweight
IngestionMessage(Claim Check record) to the Kafka topic containing the metadata (URI, file path, version). - The Consumer Workers pull the reference, read the file directly from storage, run splitting/chunking, request embeddings, and save the resulting vectors in pgvector.
- Database: Access PostgreSQL at
localhost:5432(User:opencrawling, DB:opencrawling). - Redis Dashboard: Open http://localhost:8001 in your browser to view the Redis Stack Insight dashboard.
- Logs: Monitor console output for the Virtual Thread Executor and Structured Concurrency task logs.
- Java Version Check: Run
java -versionto confirm you are using Java 25. - Preview Features: If your IDE fails to compile structured concurrency code, verify that the
--enable-previewJVM argument is configured for compiler and runtime settings. (It is already pre-configured inpom.xml).
