Skip to content

Commit

Permalink
Fix header levels
Browse files Browse the repository at this point in the history
  • Loading branch information
seth-shaw-asu authored May 17, 2024
1 parent 1134d56 commit 91765ad
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions docs/installation/manual/installing-alpaca.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
- [Apache ActiveMQ](https://activemq.apache.org/), a messaging server that will be used to handle communication between Alpaca and other components
- [Islandora/Alpaca](https://github.com/Islandora/Alpaca), Java middleware that handle communication between various components of Islandora.

### Installing ActiveMQ
## Installing ActiveMQ

In our case, the default installation method for ActiveMQ via `apt-get` will suffice.

Expand All @@ -32,7 +32,7 @@ sudo apt-cache policy activemq

Write down the version listed under `Installed: `.

### Installing Alpaca
## Installing Alpaca

Install Java 11+ if you haven't already.

Expand All @@ -43,7 +43,7 @@ cd /opt/alpaca
curl -L https://repo1.maven.org/maven2/ca/islandora/alpaca/islandora-alpaca-app/2.2.0/islandora-alpaca-app-2.2.0-all.jar -o alpaca.jar
```

#### Configuration
### Configuration

Alpaca is made up of several services, each of these can be enabled or disabled individually.

Expand Down Expand Up @@ -84,7 +84,7 @@ jms.concurrent-consumers=1
```
This defines how many messages to process simultaneously.

##### islandora-indexing-fcrepo
#### islandora-indexing-fcrepo

This service manages a Drupal node into a corresponding Fedora resource.

Expand Down Expand Up @@ -126,7 +126,7 @@ fcrepo.indexer.async-consumer=true

This property allows the concurrent consumers to process concurrently; otherwise, the consumers will wait to the previous message has been processed before executing.

##### islandora-indexing-triplestore
#### islandora-indexing-triplestore

This service indexes the Drupal node into the configured triplestore

Expand Down Expand Up @@ -169,7 +169,7 @@ triplestore.indexer.async-consumer=true

This property allows the concurrent consumers to process concurrently; otherwise, the consumers will wait to the previous message has been processed before executing.

### islandora-connector-derivative
#### islandora-connector-derivative

This service is used to configure an external microservice. This service will deploy multiple copies of its routes
with different configured inputs and outputs based on properties.
Expand Down Expand Up @@ -232,7 +232,7 @@ derivative.fits.max-concurrent-consumers=2
derivative.fits.async-consumer=false
```

##### Customizing HTTP client timeouts
#### Customizing HTTP client timeouts

You can alter the HTTP client from the defaults for its request, connection and socket timeouts.
To do this you want to enable the request configurer.
Expand All @@ -251,7 +251,7 @@ socket.timeout=-1

The default for all three is `-1` which indicates no timeout.

##### Alter HTTP options
#### Alter HTTP options

By default, Alpaca uses two settings for the HTTP component, these are
* disableStreamCache=true
Expand All @@ -269,7 +269,7 @@ These will be added to ALL http endpoint requests.

**Note**: We are currently running Camel 3.7.6, some configuration parameters on the above linked page might not be supported.

#### Deploying/Running
### Deploying/Running

You can see the options by passing the `-h|--help` flag

Expand Down

0 comments on commit 91765ad

Please sign in to comment.