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.
Hardware Requirements
Requirement | Recommended |
---|---|
CPU | 4-cores |
System Memory | 24GB |
Storage Capacity | 6TB (SSD preferred) |
Software Requirements
Requirement | Supported Versions | Notes |
---|---|---|
Operating System | RHEL 8, CentOS 8, AWS Linux 2 | |
PostgreSQL | 9.2-6, 10 | yum -y install \ |
IFI CLAIMS Repository | AWS Linux 2
Note: This installs EPEL and the PowerTools repositories |
Note | ||
---|---|---|
| ||
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. |
PostgreSQL Schema and Tools
In an effort to further streamline CLAIMS Direct PostgreSQL schema versioning, we are introducing a schema and tools package into the CLAIMS Direct yum
repository. The new package will offer the main CLAIMS Direct database schema as well as the supporting users
database to support deployment of on-site web services. The new package can be installed as follows:
AWS Linux 2 | sudo yum -y install alexandria-data-warehouse-pg11 |
CentOS/RHEL 8 | sudo yum -y install alexandria-schema-tools |
The package contains the SQL needed to create the database(s) supporting PostgreSQL versions 9.2 - 10.x, 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.
Code Block | ||
---|---|---|
| ||
echo "create role alexandria with superuser login;" \ | psql -Upostgres postgres gunzip -c /usr/share/alexandria-schema-tools/alexandria-dbs-10.x.gz \ | psql -Ualexandria -h <POSTGRESQL-HOST> postgres # There's also support for 9.x, # gunzip -c /usr/share/alexandria-schema-tools/alexandria-dbs-9.x.gz \ # | psql -Ualexandria -h <POSTGRESQL-HOST> 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.
Code Block | ||
---|---|---|
| ||
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 |
Panel | ||
---|---|---|
| ||
Once the data has been loaded, proceed to:
|