Data Loader

The Data Loader is a built-in component that provides a reliable mechanism for loading data from JSON or YAML files into Harper tables as part of component deployment. This feature is particularly useful for ensuring specific records exist in your database when deploying components, such as seed data, configuration records, or initial application data.

Configuration

To use the Data Loader, first specify your data files in the config.yaml in your component directory:

dataLoader:
  files: 'data/*.json'

The Data Loader is an Extension and supports the standard files configuration option.

Data File Format

Data files can be structured as either JSON or YAML files containing the records you want to load. Each data file must specify records for a single table - if you need to load data into multiple tables, create separate data files for each table.

Basic Example

Create a data file in your component's data directory (one table per file):

{
  "database": "myapp",
  "table": "users",
  "records": [
    {
      "id": 1,
      "username": "admin",
      "email": "[email protected]",
      "role": "administrator"
    },
    {
      "id": 2,
      "username": "user1",
      "email": "[email protected]",
      "role": "standard"
    }
  ]
}

Multiple Tables

To load data into multiple tables, create separate data files for each table:

users.json:

{
  "database": "myapp",
  "table": "users",
  "records": [
    {
      "id": 1,
      "username": "admin",
      "email": "[email protected]"
    }
  ]
}

settings.yaml:

database: myapp
table: settings
records:
  - id: 1
    setting_name: app_name
    setting_value: My Application
  - id: 2
    setting_name: version
    setting_value: "1.0.0"

File Organization

You can organize your data files in various ways:

Single File Pattern

dataLoader:
  files: 'data/seed-data.json'

Multiple Files Pattern

dataLoader:
  files: 
    - 'data/users.json'
    - 'data/settings.yaml'
    - 'data/initial-products.json'

Glob Pattern

dataLoader:
  files: 'data/**/*.{json,yaml,yml}'

Loading Behavior

When Harper starts up with a component that includes the Data Loader:

  1. The Data Loader reads all specified data files (JSON or YAML)

  2. For each file, it validates that a single table is specified

  3. Records are inserted or updated based on timestamp comparison:

    • New records are inserted if they don't exist

    • Existing records are updated only if the data file's modification time is newer than the record's updated time

    • This ensures data files can be safely reloaded without overwriting newer changes

  4. If records with the same primary key already exist, updates occur only when the file is newer

Note: While the Data Loader can create tables automatically by inferring the schema from the provided records, it's recommended to define your table schemas explicitly using the graphqlSchema component for better control and type safety.

Best Practices

  1. Define Schemas First: While the Data Loader can infer schemas, it's strongly recommended to define your table schemas and relations explicitly using the graphqlSchema component before loading data. This ensures proper data types, constraints, and relationships between tables.

  2. One Table Per File: Remember that each data file can only load records into a single table. Organize your files accordingly.

  3. Idempotency: Design your data files to be idempotent - they should be safe to load multiple times without creating duplicate or conflicting data.

  4. Version Control: Include your data files in version control to ensure consistency across deployments.

  5. Environment-Specific Data: Consider using different data files for different environments (development, staging, production).

  6. Data Validation: Ensure your data files are valid JSON or YAML and match your table schemas before deployment.

  7. Sensitive Data: Avoid including sensitive data like passwords or API keys directly in data files. Use environment variables or secure configuration management instead.

Example Component Structure

my-component/
├── config.yaml
├── data/
│   ├── users.json
│   ├── roles.json
│   └── settings.json
├── schemas.graphql
└── roles.yaml

With this structure, your config.yaml might look like:

# Load environment variables first
loadEnv:
  files: '.env'

# Define schemas
graphqlSchema:
  files: 'schemas.graphql'

# Define roles
roles:
  files: 'roles.yaml'

# Load initial data
dataLoader:
  files: 'data/*.json'

# Enable REST endpoints
rest: true

Last updated