The PostgreSQL component is the heart of CLAIMS Direct. It contains the XML for the entire data warehouse collection, processes updates from the primary, and functions as data source for the optional Solr index.
Requirement | Recommended |
---|---|
CPU | 4-cores |
System Memory | 24GB |
Storage Capacity | 6TB (SSD required) |
Requirement | Supported Versions | Notes |
---|---|---|
Operating System | RHEL/Rocky 8, Amazon Linux 2 | We do not support Ubuntu or any operating system not explicitly listed. |
PostgreSQL | 10 - 14 | # RHEL/CentOS 7 |
IFI CLAIMS Repository | # Amazon Linux 2 |
Some CLAIMS Direct loading and maintenance code utilizes the PostgreSQL perl extension (plperl) as well as a heavy reliance on the libxml2 XML parsing library. IFI CLAIMS has produced a patched release of libxml2 as an RPM. It is highly recommended to update libxml2 from the IFI CLAIMS software repository. For additional distributions, please contact support@ificlaims.com. |
In an effort to streamline CLAIMS Direct PostgreSQL schema versioning, we offer a schema and tools package via the CLAIMS Direct yum
repository which is used to create the CLAIMS Direct database and initializes the XML schema.
sudo amazon-linux-extras install epel sudo amazon-linux-extras enable postgresql14 sudo yum clean all sudo yum -y install \ postgresql postgresql-contrib postgresql-plperl postgresql-server \ alexandria-schema-tools \ libxml2 |
sudo yum -y install epel-release sudo yum clean all # Note: this installs the default version 10. If you would like a higher version, # please see: https://www.postgresql.org/download/linux/redhat/ sudo dnf -y install \ postgresql postgresql-contrib postgresql-plperl postgresql-server \ alexandria-schema-tools \ libxml2 |
sudo dnf -y install epel-release # Rocky sudo dnf config-manager --set-enabled powertools # RHEL sudo subscription-manager repos --enable codeready-builder-for-rhel-8-x86_64-rpms sudo dnf clean all # Note: this installs the default version 10. If you would like a higher version, # please see: https://www.postgresql.org/download/linux/redhat/ sudo dnf -y install \ postgresql postgresql-contrib postgresql-plperl postgresql-server \ alexandria-schema-tools \ libxml2 |
The package contains the SQL needed to create the database supporting PostgreSQL versions 10 - 14, as well as tools to check installation, populate the tables, and perform extracts. To create the databases, simply load the SQL via psql
into the instance.
echo "create role alexandria with superuser login;" \ | psql -Upostgres postgres cat /usr/share/alexandria/alexandria-schema-xml/alexandria-schema-xml.sql \ | psql -Ualexandria postgres |
In addition to the schema, there is a collection of tools to help determine instance loading feasibility, populating, bulk extracting, counts and sizes of tables, and more. All tools accept the same parameters with reasonable defaults for a Type-1 CLAIMS Direct installation.
Usage: CD-TOOL OPTIONS Option Description Default -------------------------------------------------------- -H|--host specify host localhost -P|--port specify port 5432 -d|--database specify database alexandria -u|--user specify database user name alexandria -h|--help print this usage and exit |
Tool | Description | |
---|---|---|
cd-pre-flight-check.sh | Use this tool to test the viability of populating the newly created database. It runs a few simple checks.
| |
cd-load.sh | You can use this tool to populate the initial data delivery. After unpacking or otherwise making the initial data available,
Note: This tool expects there to be a | |
cd-count.sh | This tool counts the rows in all tables in the main schema (cdws, xml).
| |
cd-analyze-tables.sh | Analyze all tables in the main schema. | |
cd-table-size.sh | Calculate the on-disk size of each table in the main schema.
| |
cd-extract.sh | Extract all relevant table data to |
Once the data has been loaded, proceed to:
|