archive server and cave display document

This commit is contained in:
Michael James 2017-10-25 13:50:29 -06:00 committed by mjames-upc
parent 510963c96b
commit 57e9c55649
5 changed files with 89 additions and 0 deletions

88
docs/edex/case-studies.md Normal file
View file

@ -0,0 +1,88 @@
# Case Study Server Configuration
This document covers what is necessary to install and run AWIPS EDEX as an archive and case study server (no purging or data).
## Quick Install
Follow the [EDEX Install Instrutions](../install-edex/) including iptables config and an SSD mount (for large data volumes)
groupadd fxalpha && useradd -G fxalpha awips
mkdir -p /awips2/data_store
wget -O /etc/yum.repos.d/awips2.repo http://www.unidata.ucar.edu/software/awips2/doc/awips2.repo
yum clean all
yum groupinstall awips2-server -y
## Disable Data Purging
The easiest way to disable data purging is to add an **<exclude>purge.*</exclude>** entry in **/awips2/edex/conf/modes/ingest-modes.xml** so that the purge plugin is not loaded when the EDEX JVMs are run:
vi /awips2/edex/conf/modes/ingest-modes.xml
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<edexModes>
<mode name="ingest">
<exclude>.*request.*</exclude>
<exclude>edex-security.xml</exclude>
<exclude>(taf|shef).*</exclude>
<exclude>purge.*</exclude>
</mode>
</edexModes>
## Start EDEX
without the LDM
edex start base
monitor services
edex
[edex status]
postgres :: running :: pid 43644
pypies :: running :: pid 3557
qpid :: running :: pid 43742
EDEXingest :: running :: pid 6564 44301 44597
EDEXgrib :: running :: pid 6565 44302 44598
EDEXrequest :: running :: pid 6566 44303 44599
ldmadmin :: not running
## Ingest Case Study Data
Raw data files of any type can be copied or moved into `/awips2/data_store/ingest/` to be picked up and decoded by EDEX. Most data types are recognized by regular expression matching of the WMO Header or filename.
Individual files can be ingested on the command line with the regex header/pattern supplied as the last argument:
qpidNotify.py /full/path/to/data.file <regex match>
for example
qpidNotify.py /home/awips/uniwisc_U5_132GOES-15_IMG10.7um_4km_20171024_1830.area.png uniwisc
qpidNotify.py /awips2/data_store/grid/NAM12/conduit/NAM_CONUS_12km_conduit_20171025_1200Z_F084_TMPK-7.000007.grib2 grib
qpidNotify.py /awips2/data_store/radar/FTG_N0Q_20171015_1815 Level3
# Viewing Archive Data in CAVE
Because we are installing and confiruging a standalone EDEX archive server with no real-time LDM data ingest, and with purge rules disabled, any archive data that is ingested will be the "latest available" to CAVE, and you will see CAVE product menu time fill in with the latest of all data ingested.
However, to display specific time-based data (in case you ingest more than one archive case study), there are two options:
## 1. Load Mode &gt; Inventory
In the top-left toolbar change **Valid time seq** to **Inventory**.
![](/images/load_mode_inventory1.png)
Now any data product selected from the menus or the Product Browser will prompt you to select the exact time.
![](/images/load_mode_inventory2.png)
## 2. Set Data Display Time in CAVE
At the bottom of the CAVE application, double-click the **Time:** entry to bring up a dialog window.
![](/images/cave_set_time.png)

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

View file

@ -54,6 +54,7 @@ pages:
- Purging and Retention: edex/data-purge.md - Purging and Retention: edex/data-purge.md
- Monitor Users: edex/edex-users.md - Monitor Users: edex/edex-users.md
- Data Plugins: edex/data-plugins.md - Data Plugins: edex/data-plugins.md
- Archive Case Studies: edex/case-studies.md
- Supported Data Types: - Supported Data Types:
- Gridded Model Display: cave/d2d-grids.md - Gridded Model Display: cave/d2d-grids.md
- Surface Obs: cave/d2d-pointdata-surface-obs.md - Surface Obs: cave/d2d-pointdata-surface-obs.md