Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add explanations for how to manage service dependencies #440

Merged
merged 13 commits into from
Aug 8, 2024
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/explanation/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
:titlesonly:
:maxdepth: 1

General model <general-model>
API and clients <api-and-clients>
General model <general-model>
Service dependencies <service-dependencies>
Service start order <service-start-order>
```
11 changes: 11 additions & 0 deletions docs/explanation/service-dependencies.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Service dependencies

Pebble can take service dependencies into account when managing services: this is done with the `requires` list in the [service definition](../reference/layer-specification.md).

Simply put, you can configure a list of other services in the `requires` section to indicate this service requires those other services to start correctly.

When Pebble starts a service, it also starts the services which that service depends on (configured with `requires`). Conversely, when stopping a service, Pebble also stops services which depend on that service.

For the start order of the services, see [Service start order](./service-start-order.md).

For example, if service `nginx` requires `logger`, `pebble start nginx` will start both `nginx` and `logger` (in an undefined order). Running `pebble stop logger` will stop both `nginx` and `logger`; however, running `pebble stop nginx` will only stop `nginx` (`nginx` depends on `logger`, not the other way around).
10 changes: 10 additions & 0 deletions docs/explanation/service-start-order.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Service start order

When multiple services need to be started together, they're started in order according to the `before` and `after` in the [layer configuration](../reference/layer-specification.md). Pebble waits 1 second after starting each service to ensure the command doesn't exit too quickly.

The `before` option is a list of services that this service must start before (it may or may not `requires` them, see [Service dependencies](./service-dependencies.md)). Or if it's easier to specify this ordering the other way around, `after` is a list of services that this service must start after.

```{note}
Currently, `before` and `after` are of limited usefulness, because Pebble only waits 1 second before moving on to start the next service, with no additional checks that the previous service is operating correctly.
If the configuration of `requires`, `before`, and `after` for a service results in a cycle or "loop", an error will be returned when attempting to start or stop the service.
```
4 changes: 3 additions & 1 deletion docs/how-to/service-dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,8 @@ In the layer configuration above, the `frontend` service is dependent on the
`backend` service, and the `backend` service is dependent on the `database`
service.

For more information on `requires`, see [Service dependencies](../explanation/service-dependencies.md).

### Specify start order for dependent services

To specify the order in which one or more dependent services must start
Expand Down Expand Up @@ -194,7 +196,7 @@ Currently, `before` and `after` are of limited usefulness, because Pebble only w
If the configuration of `requires`, `before`, and `after` for a service results in a cycle or "loop", an error will be returned when attempting to start or stop the service.
```

% Does it only check that the status is "Active"? So what does `requires` do?
For more information on `before` and `after`, see [Service start order](../explanation/service-start-order.md).

## Verify service dependencies

Expand Down
Loading