(doc) Fix wonky bullet lists

This commit is contained in:
Viktor Lofgren 2024-02-28 17:43:05 +01:00
parent 9993f265ca
commit 186a98cc99

View File

@ -25,23 +25,23 @@ service, and for monitoring the health of the system. It also offers a web inte
### Services ### Services
* [core services](services-core/) Most of these services are stateful, memory hungry, and doing heavy lifting. * [core services](services-core/) Most of these services are stateful, memory hungry, and doing heavy lifting.
* * [control](services-core/control-service) * [control](services-core/control-service)
* * [query](services-core/query-service) * [query](services-core/query-service)
* * * Exposes the [functions/link-graph](functions/link-graph) subsystem * Exposes the [functions/link-graph](functions/link-graph) subsystem
* * * Exposes the [functions/search-query](functions/search-query) subsystem * Exposes the [functions/search-query](functions/search-query) subsystem
* * [index](services-core/index-service) * [index](services-core/index-service)
* * * Exposes the [index](index) subsystem * Exposes the [index](index) subsystem
* * * Exposes the [functions/link-graph](functions/link-graph) subsystem * Exposes the [functions/link-graph](functions/link-graph) subsystem
* * [executor](services-core/executor-service) * [executor](services-core/executor-service)
* * * Exposes the [execution](execution) subsystem * Exposes the [execution](execution) subsystem
* * [assistant](services-core/assistant-service) * [assistant](services-core/assistant-service)
* * * Exposes the [functions/math](functions/math) subsystem * Exposes the [functions/math](functions/math) subsystem
* * * Exposes the [functions/domain-info](functions/domain-info) subsystem * Exposes the [functions/domain-info](functions/domain-info) subsystem
* [application services](services-application/) Mostly stateless gateways providing access to the core services. * [application services](services-application/) Mostly stateless gateways providing access to the core services.
* * [api](services-application/api-service) - public API gateway * [api](services-application/api-service) - public API gateway
* * [search](services-application/search-service) - marginalia search application * [search](services-application/search-service) - marginalia search application
* * [dating](services-application/dating-service) - [https://explore.marginalia.nu/](https://explore.marginalia.nu/) * [dating](services-application/dating-service) - [https://explore.marginalia.nu/](https://explore.marginalia.nu/)
* * [explorer](services-application/explorer-service) - [https://explore2.marginalia.nu/](https://explore2.marginalia.nu/) * [explorer](services-application/explorer-service) - [https://explore2.marginalia.nu/](https://explore2.marginalia.nu/)
The system uses a service registry to find the services. The service registry is based on zookeeper, 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 and is a separate service. The registry doesn't keep track of processes, but APIs. This means that
@ -60,10 +60,10 @@ Processes are batch jobs that deal with data retrieval, processing and loading.
the executor service, which is controlled by the control service. the executor service, which is controlled by the control service.
* [processes](processes/) * [processes](processes/)
* * [crawling-process](processes/crawling-process) * [crawling-process](processes/crawling-process)
* * [converting-process](processes/converting-process) * [converting-process](processes/converting-process)
* * [loading-process](processes/loading-process) * [loading-process](processes/loading-process)
* * [index-constructor-process](processes/index-constructor-process) * [index-constructor-process](processes/index-constructor-process)
### Features ### Features
@ -80,5 +80,5 @@ Libraries are stand-alone code that is independent of the domain logic.
* [common](common/) elements for creating a service, a client etc. * [common](common/) elements for creating a service, a client etc.
* [libraries](libraries/) containing non-search specific code. * [libraries](libraries/) containing non-search specific code.
* * [array](libraries/array/) - large memory mapped area library * [array](libraries/array/) - large memory mapped area library
* * [btree](libraries/btree/) - static btree library * [btree](libraries/btree/) - static btree library