Copyright (C) 2016-2023 The Open Library Foundation
This software is distributed under the terms of the Apache License, Version 2.0. See the file "LICENSE" for more information.
FOLIO compatible inventory module.
Provides basic physical item inventory management, currently limited to basic representations of local instances and items, which can only be created via a MODS import.
Written in Java and uses Maven as its build system.
This readme is intended to get these modules up and running. For further information on what they do, see the guide.
- Java 11 JDK
- Maven 3.5.0
- Node 6.4.0 (for API linting and documentation generation)
- NPM 3.10.3 (for API linting and documentation generation)
- Python 3.6.0 (for deployment scripts and tests via okapi setup)
There are some common RAML definitions that are shared between FOLIO projects via Git submodules.
To initialise these please run git submodule init && git submodule update
in the root directory.
If these are not initialised, document generation and API linting operations may fail.
More information is available on the developer site.
If sdkman is installed, run source ./setup-environment.sh
to setup the shell with the appropriate versions of Gradle and Groovy.
run mvn compile
from the root directory.
In order to build an executable Jar (e.g. for Okapi to deploy), run mvn package
.
When running the jar file the module looks for the http.port
and port
system property variables in this order, and uses the default 9403 as fallback. Example:
java -Dhttp.port=8008 -jar target/mod-inventory.jar
The Docker container exposes port 9403.
Make sure that Okapi is running on its default port of 9130 (see the guide for instructions).
A script for building and running Okapi is provided. Run this module's start-okapi.sh
from the root of the Okapi source.
As this runs Okapi using Postgres storage, some database preparation is required. This can be achieved by running ./create-okapi-database.sh
from the root of this repository.
In order to activate the inventory module for a tenant, the dependencies described in the Module Descriptor need to be fulfilled.
The simplest way to fulfil these is to use the inventory storage module.
To register the module with deployment instructions and activate it for a demo tenant, run ./start-managed-demo.sh
from the root directory.
To deactivate and unregister the module, run ./stop-managed-demo.sh
from the root directory.
There are several properties that should be set for modules that interact with Kafka: KAFKA_HOST, KAFKA_PORT, OKAPI_URL, ENV(unique env ID). After setup, it is good to check logs in all related modules for errors.
Environment variables that can be adjusted for this module and default values:
- These variables are relevant from the Iris release. Module version from 16.3.0:
- "inventory.kafka.DataImportConsumerVerticle.instancesNumber": 5
- "inventory.kafka.MarcBibInstanceHridSetConsumerVerticle.instancesNumber": 5
- "inventory.kafka.DataImportConsumer.loadLimit": 5
- "inventory.kafka.DataImportConsumerVerticle.maxDistributionNumber": 100
- "inventory.kafka.MarcBibInstanceHridSetConsumer.loadLimit": 5
- These variables are relevant from the Iris release (module version from 16.3.0) to Kiwi release (module version from 18.0.0):
- "kafkacache.topic.number.partitions": 1
- "kafkacache.topic.replication.factor": 1
- "kafkacache.log.retention.ms": 18000000
- "kafkacache.topic": events_cache
- These variables are relevant from the XXXXX release. Module version from X.X.X:
- "inventory.kafka.MarcBibUpdateConsumerVerticle.instancesNumber": 3
- "inventory.kafka.MarcBibUpdateConsumer.loadLimit": 5
- "inventory.kafka.MarcBibUpdateConsumer.maxDistributionNumber": 100
- Variables for setting number of partitions of topics:
- DI_INVENTORY_INSTANCE_CREATED_PARTITIONS
- DI_INVENTORY_HOLDING_CREATED_PARTITIONS
- DI_INVENTORY_ITEM_CREATED_PARTITIONS
- DI_INVENTORY_INSTANCE_MATCHED_PARTITIONS
- DI_INVENTORY_HOLDING_MATCHED_PARTITIONS
- DI_INVENTORY_ITEM_MATCHED_PARTITIONS
- DI_SRS_MARC_BIB_RECORD_MATCHED_PARTITIONS
- DI_INVENTORY_INSTANCE_UPDATED_PARTITIONS
- DI_INVENTORY_HOLDING_UPDATED_PARTITIONS
- DI_INVENTORY_ITEM_UPDATED_PARTITIONS
- DI_INVENTORY_INSTANCE_NOT_MATCHED_PARTITIONS
- DI_INVENTORY_HOLDING_NOT_MATCHED_PARTITIONS
- DI_INVENTORY_ITEM_NOT_MATCHED_PARTITIONS
- DI_SRS_MARC_BIB_RECORD_NOT_MATCHED_PARTITIONS
- DI_INVENTORY_AUTHORITY_UPDATED_PARTITIONS
- DI_INVENTORY_HOLDINGS_CREATED_READY_FOR_POST_PROCESSING_PARTITIONS
- DI_INVENTORY_AUTHORITY_CREATED_READY_FOR_POST_PROCESSING_PARTITIONS
- DI_INVENTORY_AUTHORITY_UPDATED_READY_FOR_POST_PROCESSING_PARTITIONS
- DI_SRS_MARC_BIB_RECORD_MODIFIED_PARTITIONS
- INVENTORY_INSTANCE_INGRESS_PARTITIONS
Default value for all partitions is 1
AUTHORITY_EXTENDED
environment variable enables extended mapping for Authority to support advanced references classification in 5xx fields:
- broader terms (
$wg
tag) - narrower terms (
$wh
tag) - earlier headings (
$wa
tag) - later headings (
$wb
tag)
Default value for AUTHORITY_EXTENDED
is false
.
The mapping itself is implemented in data-import-processing-core.
These modules provide HTTP based APIs rather than any UI themselves.
As FOLIO is a multi-tenant system, many of the requests made to these modules are tenant aware (via the X-Okapi-Tenant header), which means most requests need to be made via a system which understands these headers (e.g. another module or UI built using Stripes).
Therefore, it is suggested that requests to the API are made via tools such as curl or postman, or via a browser plugin for adding headers, such as Requestly.
It is recommended that the modules are located via Okapi. Access via Okapi requires passing the X-Okapi-Tenant header (see the Okapi guide above for details).
http://localhost:9130/inventory
Most of the development for these modules, thus far, has been performed on OS X, with some on Ubuntu. Feedback for these, and particularly other operating systems is very welcome.
The GitHub Actions file .github/workflows/macos.yml for macOS demonstrates how to use Homebrew to setup the infrastructure, run the module, enable it for the diku
tenant and run a request.
The inventory.all permission set currently represents all of the permissions needed to use the inventory related parts of the system (e.g. the scan application and its configuration). This means that it contains additional permissions than those directly needed by the inventory module itself.
The guide and other documentation for this module.
Other modules.
Other FOLIO Developer documentation is at dev.folio.org
See project MODINV at the FOLIO issue tracker.
See the built target/ModuleDescriptor.json
for the interfaces that this module
requires and provides, the permissions, and the additional module metadata.
This module's API documentation.
The built artifacts for this module are available. See configuration for repository access, and the Docker image.
For the modules to communicate via Okapi Proxy, when running in Docker containers, the address for Okapi Proxy needs to be routable from inside the container.
This can be achieved by passing a parameter to the script used to start Okapi, as follows ../mod-inventory/start-okapi.sh http://192.168.X.X:9130
Where 192.168.X.X is a routable IP address for the host from container instances and both repository clones are at the same directory level on your machine.
Finding the appropriate IP address can be OS and Docker implementation dependent, so this is a very early guide rather than thorough treatment of the topic.
If these methods don't work for you, please do get in touch, so this section can be improved.
On Linux, ifconfig docker0 | grep 'inet addr:'
should give output similar to inet addr:192.168.X.X Bcast:0.0.0.0 Mask:255.255.0.0
, , the first IP address is usually routable from within containers.
On Mac OS X (using Docker Native), ifconfig en0 | grep 'inet '
should give output similar to inet 192.168.X.X netmask 0xffffff00 broadcast 192.168.X.X
, the first IP address is usually routable from within containers.