Skip to content

Latest commit

 

History

History
340 lines (281 loc) · 16.7 KB

README.md

File metadata and controls

340 lines (281 loc) · 16.7 KB

README

This directory (data) contains:

  • module test data
  • The dmr++ tools: scripts, source code, and production rules for tools that can be used to create and process hdf5/netcdf-4 data files to create portable dmr++ files whose binary data objects are held in a web object store like AWS S3.

Overview

We have developed an initial set of tools that enable a data provider to easily serve data stored in Amazon's S3 Web Object Store. In the current implementation, the data must be stored in HDF5 or NetCDF4 files. The data do not, however, have to be reformatted to be used with the Hyrax server. Furthermore, the data objects are subset 'in-place' from S3 instead of first transferring the object and then serving it, resulting in lower response latency than other solutions for S3 darta access such as those based on FUSE filesystems. For data users, access is seamless - there is no difference between access to data stored in S3 or on spinning disk.

We have conducted tests of this software and the Google Cloud Store and found that it works with that Web Object Store as well. In fact, reconfiguration to GCS is trivial.

dmr++

The dmr++ files are the control data used by the server to enable 'in-place' access and subsetting of data in S3.

self-contained and portable: The dmr++ files are self contained. They can be served by any Hyrax server (version 1.16.0 or higher) simply by placing them in the server's data file system.

size: The dmr++ files are typically very much smaller than their source hdf5/nectdf-4 files, by as much as 2 or even 3 orders of magnitude (YMMV).

dmr++ tools

There are three programs for building dmr++ files:

  • The program get_dmrpp builds a single dmr++ file from a single netcdf-4/hdf5 file.
  • The program ingest_filesystem builds a collection of dmr++ files from data held in the locally mounted filesystem.
  • The program ingest3bucket builds a collection of dmr++ files from data held in Amazon's S3 storage.

NOTE: Organizationally, this directory (data) and it's child directory dmrpp are arranged in this hierarchy in order to mimic the deployment structure resulting from running "make install". Most modules do not need to do this but since dmr++ files reference other files, and they do so using relative paths, the BES Catalog Root the mimicry is required.

NOTE: Examples can be run as shown from the bes/modules/dmrpp___module/data directory.

building the software

In order for these programs (shell scripts) to function correctly a localization step must take place. This happens when the parent software (the dmrpp_module) is built and installed as part of the BES. Once this is done the scripts will have been installed and should be in $prefix/bin and ready to use.

get_dmrpp - build a dmr++ file from an hdf5/nectdf-4 file.

The get_dmrpp shell script generates a single dmr++ file from a single netcdf-4/hdf5 file. It is used by both ingest_filesystem and ingest_s3bucket.

 Usage: get_dmrpp [options] <hdf5_file>

 Write the DMR++ for hdf5_file to stdout
 
 By default the BES Data Root directory is set to the CWD. This 
 utility will add an entry to the bes.log specified in the 
 configuration file. The DMR++ is built using the DMR as returned 
 by the HDF5 handler, using options as set in the bes 
 configuration file found here.
 
 -h: Show help
 -v: Verbose: Print the DMR too
 -V: Very Verbose: print the DMR, the command and the configuration
     file used to build the DMR
 -r: Just print the DMR that will be used to build the DMR++
 -u: The binary object URL for use in the DMR++ file
 -d: Data root directory for the BES.
 -o: The name of the file  to create.

 Limitations: 
 * The pathanme to the hdf5 file must be relative from the
   directory where this command was run; absolute paths will not work. 
 * The build_dmrpp command must be in the CWD. 
 * The bes conf template has to build by hand. jhrg 5/11/18

example 1

Creates a dmr++ file (foo.dmrpp) whose binary object URL is a file URL containing the fully qualifed path to the source data file as it's value.

get_dmrpp -v -d `pwd` -o foo.dmrpp -u file://`pwd`/dmrpp/chunked_shuffled_fourD.h5 dmrpp/chunked_shuffled_fourD.h5
-v
verbose mode
-d `pwd`
The data root directory to be used by the BES. In this example it is set to the current directory.
-o foo.dmrpp
The dmr++ content will be written to the file foo.dmrpp<
-u file://`pwd`/dmrpp/chunked_shuffled_fourD.h5
The dmr++ file will use this full qualified file URL as its binary data location.
dmrpp/chunked_shuffled_fourD.h5
The hdf5 file from which to build the dmr++ file.

example 2

Creates a dmr++ file (foo.dmrpp) whose binary object URL references an object in Amazon's S3.

get_dmrpp -v -d `pwd` -o foo.dmrpp -u https://s3.amazonaws.com/opendap.scratch/data/dmrpp/chunked_fourD.h5  dmrpp/chunked_shuffled_fourD.h5
-v
verbose mode
-d `pwd`
The data root directory to be used by the BES. In this example it is set to the current directory.
-o foo.dmrpp
The dmr++ content will be written to the file foo.dmrpp<
-u https://s3.amazonaws.com/opendap.scratch/data/dmrpp/chunked_fourD.h5
The dmr++ file will use this AWS S3 object URL as its binary data location..
dmrpp/chunked_shuffled_fourD.h5
The hdf5 file from which to build the dmr++ file.

ingest_filesystem - building dmr++ files from local files.

The shell script ingest_filesystem is used to crawl through a branch of the local filesystem, identifying files that match a regular expression (default or supplied), and then attempting to build a dmr++ file for each matching file using the get_dmrpp program.

 Usage: ingest_filesystem [options] 

 Crawl filesystem and make a DMR++ for every dataset matching the
 default or supplied regex.

 The DMR++ is built using the DMR as returned by the HDF5 handler,
 using options as set in the bes configuration file used by get_dmrpp.
 
 -h: Show help
 -v: Verbose: Print the DMR too
 -V: Very Verbose: Verbose plus so much more!
 -j: Just print the DMR that will be used to build the DMR++
 -u: The base endpoint URL for the DMRPP data objects. The assumption
     is that they will be organized the same way the source dataset 
     files below the "data_root" (see -d)
     (default: file://${data_root})
 -d: The local filesystem root from which the data are to be ingested. 
     The filesystem will be searched beginning at this point for files 
     whose names match the dataset match regex (see -r).
     (default: $CWD)
 -t: The target directory for the dmrpp files. Below this point
     the organization of the data files vis-a-vis their "/" path
     separator divided names will be replicated and dmr++ files placed 
     accordingly.
     (default: $CWD)
 -r: The dataset match regex used to screen the base filesystem 
     for datasets. 
     (default: "^.*\\.(h5|he5|nc4)(\\.bz2|\\.gz|\\.Z)?$")
 -f: Use "find" to list all regular files below the data root directory 
     and store the list in "${ALL_FILES}" The the dataset match regex is applied
     to each line in ${ALL_FILES} and the matching data files list is placed in
     "${DATA_FILES}". If this option is omitted the files named in "${DATA_FILES}"
      (if any) will be processed.
     (default: Not Set)

example 1

In its simplest invocation, ingest_filesystem's defaults will cause it check for the file ./data_files.txt. If found ingest_filesystem will treat every line in ./data_files.txt as a fully qualifed path to an hdf5/netcdf-4 file for which a dmr++ file is to be computed. By default the output tree will be placed in the current working directory. The base end point for the dmr++ binary object will be set to the current working directory.

ingest_filesystem 

example 2

In this invocation, ingest_filesystem crawls the local filesystem beginning with the CWD every file that matches the default regular expression (^.*\\.(h5|he5|nc4)(\\.bz2|\\.gz|\\.Z)?$) will be treated as an hdf5/netcdf-4 file for which a dmr++ file is to be computed. The output tree will be placed in a directory called scratch in the current working directory. The base URL for the dmr++ binary objects will be set to the current working directory.

ingest_filesystem -f -t scratch
-f
Use the `find` command along with the regular expression to traverse the filesystem and locate all of the matching files. These file names are placed, as fully qualified path names, in the file `./data_files.txt` to be reused or hand edited if needed.
-t scratch
Sets name of the directory to which the dmr++ output tree will be written to $CWD/scratch

example 3

In this invocation, ingest_filesystem crawls the local filesystem beginning at /usr/share/hyrax. Every file that matches the default regular expression (^.*\\.(h5|he5|nc4)(\\.bz2|\\.gz|\\.Z)?$) will be treated as an hdf5/netcdf-4 file for which a dmr++ file is to be computed. The output tree will be placed in /tmp/dmrpp. The base URL for the dmr++ binary objects will be set to the AWS S3 bucket URL https://s3.amazonaws.com/cloudydap .

ingest_filesystem -f -u https://s3.amazonaws.com/cloudydap -d /usr/share/hyrax -t /tmp/dmrpp
-f
Use the `find` command along with the regular expression to traverse the filesystem and locate all of the matching files. These file names are placed, as fully qualified path names, in the file `./data_files.txt` to be reused or hand edited if needed.
-u https://s3.amazonaws.com/cloudydap
Sets the base URL for the web accessible binary data files to the AWS S3 bucket URL https://s3.amazonaws.com/cloudydap File paths relative to the BES DataRoot will be appended to this URL to form the binary access URL for each dmr++ file.
-d /usr/share/hyrax
Sets the BES data root to /usr/share/hyrax for this invocataion. Since the -f option is also present the crawl of the file system will begin here.
-t /tmp/dmrpp
Sets the directory to which the dmr++ output tree will be written to: /tmp/dmrpp

ingest_s3bucket - building dmr++ files from files held in S3.

The shell script ingest_s3bucket utilizes the AWS CLI to list the contents of an S3 bucket. The name of each object in the bucket is checked against either the defaukt or user supplied regex. Each matching file is retrieved from S3 and then a dmr++ is built from the retrived data object. Once the dmr++ file is built the downloaded object is deleted unless otherwise instructed. The code relies on the AWS CLI being installed and configured using the aws configure command (or it's equivalent).

 Usage: ingest_s3bucket [options] 
 
 List an AWS S3 bucket and make a DMR++ for every dataset matching the
 default (or supplied) regex.

 The DMR++ is built using the DMR as returned by the HDF5 handler,
 using options as set in the bes configuration file used by get_dmrpp.
  
 -h: Show help
 -v: Verbose: Print the DMR too
 -V: Very Verbose: Verbose plus so much more. Your eyes will water from
     the scanning of it all.
 -j: Just print the DMR that will be used to build the DMR++
 -s: The endpoint URL for the S3 datastore. 
     (default: https://s3.amazonaws.com)
 -b: The S3 bucket name. 
     (default: cloudydap)
 -d: The "local" filesystem root for the downloaded data. 
     (default: ./s3_data/bucket_name})
 -t: The target directory for the dmrpp files. Below this point
     the structure of the bucket objects vis-a-vis their "/" path
     separator divided names will be replicted and dmr++ placed into
     it accordingly.
     (default: $CWD)
 -f: Retrieve object list from S3 bucket into the list file for the bucket,
     apply the dataset match regex to the object names to create
     the data files list. If this is omitted the files named in an 
     exisiting bucket list file (if any) will be processed.
     (default: Not Set)
 -r: The dataset match regex used to screen the filenames 
     for matching datasets. 
     (default: `^.*\\.(h5|he5|nc4)(\\.bz2|\\.gz|\\.Z)?$`)
 -k: Keep the downloaded datafiles after the dmr++ file has been 
     created. Be careful! S3 buckets can be quite large!

Dependencies:
This script requires that:
 - The bes installation directory is on the PATH.
 - The AWS Commandline Tools are installed and on the path.
 - The AWS Commandline Tools have been configured for this user with
   AWS access_key_id and aws_secret_access_key that have adequate permissions
   to access the target AWS S3 bucket.

example 1

ingest_s3bucket 

In its simplest invocation, ingest_s3bucket's defaults will cause it check for the file ./s3_cloudydap_data_files.txt. (It looks for this file because the default bucket name is cloudydap and the software caches bucket information in the files named in the patterns s3_BUCKETNAME_all_files.txt s3_BUCKETNAME_data_files.txt. Changing the bucket name will change the name of the file information files accordingly). If the file is found, ingest_s3bucket will treat the 4th column of every line in ./s3_cloudydap_data_files.txt as a relative path to an hdf5/netcdf-4 file in the default bucket (cloudydap) for which a dmr++ file is to be computed. By default the output tree will be placed in the current working directory. The base end point for the dmr++ binary object will be set the URL of the S3 binary file that was used to create the https://s3.amazonaws.comdmr++ file.

example 2

In this example we have ingest_s3bucket locate all the matching data files in the S3 bucket opendap.scratch, store the downloaded data files in /tmp/s3_scratch, and place the resulting dmr++ files in /usr/share/hyrax.

ingest_s3bucket -v -f -b opendap.scratch -d /tmp/s3_scratch -t /usr/share/hyrax 
-v
verbose mode
-f
Use the `find` command along with the regular expression to traverse the object names retrieved from S3 and locate all of the matching files. These file names saved in the file `./s3_BUCKETNAME_data_files.txt` to be reused or hand edited if needed.
-v
verbose mode
-b opendap.scratch
Sets the source S3 bucket name to opendap.scratch
-d /tmp/s3_scratch
Sets the target directory for the data files downloaded from the S3 bucket to /tmp/s3_scratch
-t /usr/share/hyrax
Sets the directory to which the dmr++ output tree will be written to: /usr/share/hyrax, the default data directry for Hyrax.

What To Do

  1. Determine the base URL of the hosting service (AWS S3, Google Cloud Store, Apache httpd, etc) you intend to utilize. For example in S3 you need to know the bucket name and the AWS S3 URL (https://s3.amazonaws.com)
  2. If you haven't already done so put your data into the hosting service space (And if you do have it locally don't remove it until the dmr++ process is completed!)
  3. Use the tools discussed below to make one or dmr++ files for your data (you'll need the bucket name and all that from previosuly)
  4. Place the dmr++ files, in any organization desired, into the BES.Catalog.catalog.RootDirectory tree.
  5. You can now access the remote data by navigating to the location of the dmr++ files and access them through the Data REquest Form or the DAP2 and DAP4 protocols.

Previously

ChangeLog

5/25/18

  • Added *.bescmd files for a number of new test files so that we can tell if the hdf5 handler can read these files. If it cannot, then it will be impossible to get a DMR file for input to build_dmrpp to build the DMR++ file for this code. The new test files were made using the mkChunkNewTypes.py script. jhrg

4/3/19

  • Renamed conf files to something less tedious, bes.hdf5.cf.conf(.in)
  • Removed bes.hdf5.cf.conf from git as it will now be built.
  • Created "check-local" and "clean-local" targets that cause the bes.hdf5.cf.conf gile to be built correctly for use with get_dmrpp.sh This all happens when running "make check"