Configuration¶
Connecting to cantabular-metadata
¶
Cantabular’s extended API service can also integrate with cantabular-metadata
to merge reference metadata and translations into its outputs.
By default, however, it will not attempt to connect to cantabular-metadata
.
The environment variable CANTABULAR_METADATA_URL
can be used to specify the URL of a running metadata service to connect to,
for example:
CANTABULAR_METADATA_URL=http://localhost:8493
When cantabular-metadata
is not available at this URL,
this service will poll it regularly to detect when it becomes contactable.
When it is available it will continue to be polled
to detect any changes in the metadata content,
but by default at a lower frequency.
The polling frequencies for both up and down states can be customised using environment variables. See the command line help for this service for more information.
Authentication¶
The extended API service can be protected by an authentication mechanism to limit access to specific users. Two authentication mechanisms are available: credentials can be checked either against those supplied in a CSV file at startup or via integration with a LDAP server.
Access to the extended API can also be limited by giving the service an allowed list of IP subnets on startup.
Details of how to configure authentication and access control are available on the command line
by running cantabular-api-ext -?
.
Query result buffering¶
This service uses a set of memory buffers for storing output table cells
to allow data to be pulled from cantabular-server
as soon as possible
to minimise the time a query result occupies memory
that could be used for processing of new queries.
The environment variable CANTABULAR_MAX_TABLE_BUFFER_MEMORY
can be used to specify the maximum amount of memory
that should be allocated for this purpose,
for example:
CANTABULAR_MAX_TABLE_BUFFER_MEMORY=4G
This variable should usually be set. It should be set as high as is feasible having taken account of other memory demands of the system.