MarginaliaSearch/code
Viktor Lofgren 2ad0bfda1e (*) Fix boot orchestration for the services
This corrects an annoying bug that had the system crash and burn on first start-up due to a race condition in service initialization, where the services were attempting to access the database before it was properly migrated.

A fix was in principle already in place, but it was running too late and did not prevent attempts to access the as-yet uninitialized database.  Move the first boot check into the MainClass instead of the Service constructor.

The change also adds more appropriate docker dependencies to the services to fix rare errors resolving the hostname of the database.
2024-05-01 12:39:48 +02:00
..
common (*) Fix boot orchestration for the services 2024-05-01 12:39:48 +02:00
execution (single-service) Ensure single-service spawner can specify the node 2024-04-30 18:27:46 +02:00
features-convert (build) Java 22 and its consequences has been a disaster for Marginalia Search 2024-04-24 14:44:39 +02:00
features-crawl (build) Java 22 and its consequences has been a disaster for Marginalia Search 2024-04-24 14:44:39 +02:00
features-search (build) Java 22 and its consequences has been a disaster for Marginalia Search 2024-04-24 14:44:39 +02:00
functions (build) Java 22 and its consequences has been a disaster for Marginalia Search 2024-04-24 14:44:39 +02:00
index Merge branch 'master' into run-outside-docker 2024-04-25 18:53:26 +02:00
libraries (build) Java 22 and its consequences has been a disaster for Marginalia Search 2024-04-24 14:44:39 +02:00
process-models (build) Java 22 and its consequences has been a disaster for Marginalia Search 2024-04-24 14:44:39 +02:00
process-mqapi (build) Java 22 and its consequences has been a disaster for Marginalia Search 2024-04-24 14:44:39 +02:00
processes (converter) Do not suppress exceptions in the converter 2024-04-30 18:24:35 +02:00
services-application (*) Fix boot orchestration for the services 2024-05-01 12:39:48 +02:00
services-core (*) Fix boot orchestration for the services 2024-05-01 12:39:48 +02:00
tools (build) Java 22 and its consequences has been a disaster for Marginalia Search 2024-04-24 14:44:39 +02:00
readme.md (doc) Fix wonky bullet lists 2024-02-28 17:43:05 +01:00

Code

This is a pretty large and diverse project with many moving parts.

You'll find a short description in each module of what it does and how it relates to other modules. The modules each have names like "library" or "process" or "feature". These have specific meanings. See doc/module-taxonomy.md.

Overview

A map of the most important components and how they relate can be found below.

image

The core part of the search engine is the index service, which is responsible for storing and retrieving the document data. The index serive is partitioned, along with the executor service, which is responsible for executing processes. At least one instance of each service must be run, but more can be run alongside. Multiple partitions is desirable in production to distribute load across multiple physical drives, as well as reducing the impact of downtime.

Search queries are delegated via the query service, which is a proxy that fans out the query to all eligible index services. The control service is responsible for distributing commands to the executor service, and for monitoring the health of the system. It also offers a web interface for operating the system.

Services

The system uses a service registry to find the services. The service registry is based on zookeeper, and is a separate service. The registry doesn't keep track of processes, but APIs. This means that the system is flexible to reconfiguration. The same code can in principle be run as a micro-service mesh or as a monolith.

This is an unusual architecture, but it has the benefit that you don't need to think too much about the layout of the system. You can just request an API and talk to it. Because of this, several of the services have almost no code of their own. They merely import a library and expose it as a service.

Services that expose HTTP endpoints tend to have more code. They are marked with (G).

Processes

Processes are batch jobs that deal with data retrieval, processing and loading. These are spawned and orchestrated by the executor service, which is controlled by the control service.

Features

Features are relatively stand-alone components that serve some part of the domain. They aren't domain-independent, but isolated.

Libraries and primitives

Libraries are stand-alone code that is independent of the domain logic.

  • common elements for creating a service, a client etc.
  • libraries containing non-search specific code.
    • array - large memory mapped area library
    • btree - static btree library