Skip to content

CDCgov/data-exchange-csv

Repository files navigation

CDC Data Exchange (DEX) CSV/TSV Structural Validator and Transformer

Overview

The CSV/TSV Validator and Transformer is a high-performance tool designed to validate and transform large CSV/TSV files in near real-time. Its currently in the proof-of-concept phase, and this repository reflects the initial development efforts.

Why

The intent behind providing these two features in DEX is to ensure CSV files are parseable by downstream big-data processing systems elsewhere in the CDC, such as those built on top of DataBricks. By checking structural validation of CSV files, DEX can rapidly (within seconds in many cases) respond to a sending organization with CSV validation errors and warnings. Doing so gives that sender rapid feedback about why their CSV file isn't parseable. Faster resolution of certain data quality issues related to the structure of the files being sent is ideal, as opposed to waiting hours or days for a batch processing job.

Key Features

  • CSV/TSV validation - The validator, which checks the files for their adherence to the rules set forth in RFC 4180. The CSV validator does not validate field content, header fields or data types at this point. Each validated row is assigned:

    • File UUID: Each processed file is assigned a unique uuid that is used to link rows to its originating file. This will enable downstream consumers to track back rows to its source file.
    • Row UUID: Each row is assigned unique uuid during validation. This ensure that every row can be uniquely referenced.
    • SHA-256 Row Hashing: The content of each row is hashed using SHA-256 algorithm to provide ability of detecting duplicates and ensure data integrity throughout the data pipeline.
  • CSV/TSV transformer - The transformer, which generates a JSON object for each row in the file. If the optional header is present, then the header specification is used to populate the JSON property names.

  • Encoding Detection - If encoding is not specified in the optional command line argument config.json , the tool will sample the file for up to 1024 bytes, and attempt to auto-detect the file's encoding (with best effort accuracy). Suppported encodings are:

    • UTF-8
    • UTF-8 with BOM
    • USASCII
    • ISO-8859-1
    • Windows1252
  • Delimiter Detection - If the delimiter is not provided in optional config.json command file flag, the tool will sample the file up to 1024 bytes of data, and will attempt to auto-detect delimiter. Supported delimiters include:

    • , (comma)
    • \t (tab)

Prerequisites

  • Go (1.22.0 or higher)

    Install Go following the instructions at golang.org

Installation

  1. Clone the repository:
    git clone https://github.com/CDCgov/data-exchange-csv.git
    cd data-exchange-csv
    cd cmd
    go build
    Note: If you want specify name of binary and path explicitly go build -o name.exe.

Usage

The DEX CSV Validator and Transformer accepts following command-line flags:

  • -fileURL: [Required] The path to the file that will be validated.

  • -destination: [Required] The path to the folder where validation/transformation results will be stored.

  • -debug: [Optional] If true, debug-level logs will be generated.

  • -log-file: [Optional] If true, logs will be written to logs/validation.json, default is stdout.

  • -transform: [Optional] If true, the valid rows will be transformed to a JSON object.

  • -config: [Optional] The path to the config.json. If provided, overrides auto-detection of encoding and separator.

    {
        "encoding": "UTF-8",
        "separator": ",",
        "hasHeader": true
    }

Examples:

Process the CSV/TSV file with required fields:

 .\validator.exe -fileURL="/file.csv" -destination="C:\destination"

Process the CSV/TSV file with optional fields:

 .\validator.exe -fileURL="/file.csv" -destination="C:\destination" -transform=true -log-file=true

Process the CSV/TSV file with optional config.json file:

 .\validator.exe -fileURL="/file.csv" -destination="C:\destination" -config="data/config.json"

Unit Tests

  1. Navigate to the project's root directory
  2. Run the following command
    go test ./...
    Note: If you want to see more detailed output you can add -v flag.

Future Enhancements

  • Non-blocking validation/transformation: Currently, the validation process is performed synchronously, which may introduce delays when processing large files. To address this, we are exploring the use of Go routines to parallelize the validation and transformation process. By leveraging concurrency, we aim to significantly improve performance and reduce processing time.

Public Domain Standard Notice

This repository constitutes a work of the United States Government and is not subject to domestic copyright protection under 17 USC § 105. This repository is in the public domain within the United States, and copyright and related rights in the work worldwide are waived through the CC0 1.0 Universal public domain dedication. All contributions to this repository will be released under the CC0 dedication. By submitting a pull request you are agreeing to comply with this waiver of copyright interest.

License Standard Notice

The repository utilizes code licensed under the terms of the Apache Software License and therefore is licensed under ASL v2 or later.

This source code in this repository is free: you can redistribute it and/or modify it under the terms of the Apache Software License version 2, or (at your option) any later version.

This source code in this repository is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the Apache Software License for more details.

You should have received a copy of the Apache Software License along with this program. If not, see http://www.apache.org/licenses/LICENSE-2.0.html

The source code forked from other open source projects will inherit its license.

Privacy Standard Notice

This repository contains only non-sensitive, publicly available data and information. All material and community participation is covered by the Disclaimer and Code of Conduct. For more information about CDC's privacy policy, please visit http://www.cdc.gov/other/privacy.html.

Contributing Standard Notice

Anyone is encouraged to contribute to the repository by forking and submitting a pull request. (If you are new to GitHub, you might start with a basic tutorial.) By contributing to this project, you grant a world-wide, royalty-free, perpetual, irrevocable, non-exclusive, transferable license to all users under the terms of the Apache Software License v2 or later.

All comments, messages, pull requests, and other submissions received through CDC including this GitHub page may be subject to applicable federal law, including but not limited to the Federal Records Act, and may be archived. Learn more at http://www.cdc.gov/other/privacy.html.

Records Management Standard Notice

This repository is not a source of government records, but is a copy to increase collaboration and collaborative potential. All government records will be published through the CDC web site.

Related documents

Additional Standard Notices

Please refer to CDC's Template Repository for more information about contributing to this repository, public domain notices and disclaimers, and code of conduct.

About

For Data Exchange in csv format

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages