|
NEP 2.7.0
NetCDF Extension Pack
|
Demonstrates how LZ4 compression levels and the shuffle filter affect NetCDF-4 compression ratio and I/O throughput. More...
#include <netcdf.h>#include <netcdf_filter.h>#include <stdio.h>#include <stdlib.h>#include <string.h>#include <sys/stat.h>#include <sys/time.h>Macros | |
| #define | H5Z_FILTER_LZ4 32004 |
| #define | NZ 500 |
| #define | NY 180 |
| #define | NX 360 |
| #define | TMP_FILE "lz4_tmp.nc" |
| #define | CHUNK_Z 10 |
| #define | CHUNK_Y 45 |
| #define | CHUNK_X 90 |
| #define | NVALS ((size_t)NZ * NY * NX) |
| #define | UNCOMPRESSED_BYTES ((double)NVALS * sizeof(float)) |
| #define | ERRCODE 2 |
| #define | ERR(e) {printf("Error: %s\n", nc_strerror(e)); exit(ERRCODE);} |
| #define | MIN_LEVEL 1 |
| #define | MAX_LEVEL 9 |
Functions | |
| static double | get_time (void) |
| Return current wall-clock time in seconds. | |
| static int | run_one (float *data, int level, int shuffle) |
| Run one lz4/shuffle combination and print a CSV row. | |
| int | main (void) |
| Main entry point. | |
Demonstrates how LZ4 compression levels and the shuffle filter affect NetCDF-4 compression ratio and I/O throughput.
NetCDF-4/HDF5 supports LZ4 compression via the HDF5 LZ4 filter (ID 32004) using the generic nc_def_var_filter() API. LZ4 is a fast lossless compression algorithm focused on compression and decompression speed. LZ4 offers a level range (1–9) where higher levels achieve better compression ratios at the cost of compression speed. Decompression speed remains consistently fast across all levels.
The shuffle filter (shuffle = 1) reorders bytes before compression: for IEEE 754 floating-point data the most-significant bytes of adjacent values are grouped together, which typically increases the compression ratio by 3–5× at little additional cost. The shuffle filter is enabled by calling nc_def_var_deflate(ncid, varid, 1, 0, 0) (shuffle only, no deflate) before applying the LZ4 filter via nc_def_var_filter().
This program iterates LZ4 levels 1–9 × shuffle {off, on} (18 combinations total) over a 500×180×360 NC_FLOAT temperature dataset (~129 MB uncompressed) and reports:
Output: CSV printed to stdout with columns:
Typical workflow:
Learning Objectives:
Key Concepts:
Prerequisites:
Related Examples:
Key API functions:
| #define CHUNK_X 90 |
| #define CHUNK_Y 45 |
| #define CHUNK_Z 10 |
Chunk shape: matches all v1.10.0 performance examples for consistency.
| #define ERR | ( | e | ) | {printf("Error: %s\n", nc_strerror(e)); exit(ERRCODE);} |
| #define ERRCODE 2 |
| #define H5Z_FILTER_LZ4 32004 |
HDF5 LZ4 filter ID.
| #define MAX_LEVEL 9 |
| #define MIN_LEVEL 1 |
Minimum and maximum LZ4 levels.
| #define NX 360 |
Longitude dimension: 360 degrees.
| #define NY 180 |
Latitude dimension: 180 degrees.
| #define NZ 500 |
Time dimension: 500 time steps.
| #define TMP_FILE "lz4_tmp.nc" |
Temporary NetCDF file created and removed for each measurement.
| #define UNCOMPRESSED_BYTES ((double)NVALS * sizeof(float)) |
Uncompressed size in bytes.
|
static |
Return current wall-clock time in seconds.
| int main | ( | void | ) |
Main entry point.
Allocates a 500×180×360 NC_FLOAT buffer with synthetic temperature data, then iterates LZ4 levels 1–9 × shuffle {0, 1} (18 rows total), printing one CSV row per combination.
|
static |
Run one lz4/shuffle combination and print a CSV row.
Creates lz4_tmp.nc with the given lz4 level and shuffle setting, writes a 500×180×360 NC_FLOAT temperature variable, stats the file to obtain the compressed size, reads the variable back, then removes the file.
When shuffle is 1, nc_def_var_deflate() is called with shuffle=1 and deflate=0 to activate the byte-shuffle filter without zlib compression; nc_def_var_lz4() is then called to add lz4 on top.
| data | Pre-allocated buffer of NVALS floats (synthetic data). |
| level | LZ4 compression level (1 to 9). |
| shuffle | 1 to enable the shuffle filter, 0 to disable. |