8000 GitHub - githubocto/flat at 079aa8beb2d9c095a7764dfd9f93c1ede766eef6
[go: up one dir, main page]

Skip to content

githubocto/flat

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

Flat

Flat is a GitHub action which makes it easy to fetch data and commit it to your repository as flatfiles. The action is intended to be run on a schedule, retrieving data from any supported target and creating a commit if there is any change to the fetched data.

Just as materialized views make it easier and faster to work the results of a query, Flat makes it easy to materialize data from anywhere into your workspace.

✨ Best used in tandem with the Flat VS Code Extension.

Flat streamlines a pattern popularized by Simon Willison and Alex Gaynor. The pattern of pulling data into git is an interesting one that deserves a dead-simple developer experience. Flat is an experiment from GitHub's Office of the CTO to make it easier for anyone to employ this pattern.

Why would I want to use this?

Ultimately, Flat is about getting data into your repo with a minimum of fuss. These are some examples of what you can use it for, but this is by no means an exhaustive list.

  • Evergreen working sets of data, delivered to your repo. Big data is not usable in its raw form. Most of the time, we need to filter and aggregate in order to prepare a bite we can chew. You can do it manually, or you can have flat do it for you.
  • Self-updating test fixtures: How often have you shipped a bug to production because your tests' fixtures contained a snapshot of production data from seven months ago? That's definitely never happened to us. Ever.
  • Turn snapshots into histories: sometimes, the data you want is only available as a snapshot of the current state of a system. Use Flat to capture snapshots over time. This is great for anything that must be audited; if you can make the state of a system queryable, you can have Flat capture a checksummed history of how things were. Blockchain without they hype!
  • A paved path between datastores and static webapps: pull data into your webapp. New data triggers new deploys. You can ship an static app right from your repo with GitHub Pages. This has the nice property of bringing the data your thing needs into a GitOpsish workflow.

Antipatterns

Git is remarkably flexible, but it is not a great tool for storing a lot of data, or for storing binary data. It can do these things, but it will make your repo bloated and slow, and you may run up against GitHub's size limitations.

There's a tradeoff to be made between overall data size and rate of data change. If you know that your data does not change very often, then you can probably tolerate a larger amount of data.

Usage

VS Code & Codespaces

The easiest way to get a Flat fetcher up and running is with the flat-vscode extension. There are two ways to do this:

  1. Using VS Code on your desktop.
  2. Creating a GitHub Codespace in the repository you wish to fetch data into.

To use it, install the extension and then invoke flat from the command palette (Mac: ⌘⇧P, Others:ctrl-shift-P).

Manually in a GitHub Actions workflow

In the repository where you wish to fetch data, create .github/workflows/flat.yml. The following example will fetch a URL every thirty minutes and commit the response, but only if the response has changed since the last commit.

name: Flat

on:
  push:
    branches:
      - main
  workflow_dispatch:
  schedule:
    - cron: '*/30 * * * *'

jobs:
  scheduled:
    runs-on: ubuntu-latest
    steps:
      # This step installs Deno, which is a new Javascript runtime that improves on Node. Can be used for an optional postprocessing step
      - name: Setup deno
        uses: denoland/setup-deno@main
        with:
          deno-version: v1.x
      # Check out the repository so it can read the files inside of it and do other operations
      - name: Check out repo
        uses: actions/checkout@v2
      # The Flat Action step. We fetch the data in the http_url and save it as downloaded_filename
      - name: Fetch data
        uses: githubocto/flat@v1
        with:
          http_url: # THE URL YOU WISH TO FETCH GOES HERE
          downloaded_filename: # The http_url gets saved and renamed in our repository. Example: data.json, data.csv, image.png

Note that the schedule parameter affects the overall workflow, which may contain other jobs and steps beyond Flat.

The schedule parameter uses crontab format. There's a library of useful examples and an interactive playground on Crontab guru.

Inputs

The action currently has two fetching modes:

  • http: GETs a supplied URL
  • sql: Queries a SQL datastore

These two modes are exclusive; you cannot mix settings for these two in one Flat step for a workflow job.

HTTP Mode

http_url

A URL from which to fetch data. Specifying this input puts Flat into http mode.

This can be any endpoint: a json, csv, png, zip, xlsx, etc.

downloaded_filename

The name of the file to store data fetched by Flat.

In http mode this can be anything. This can be any endpoint: a json, csv, txt, png, zip, xlsx, etc. file

postprocess (optional)

A path to a local Deno javascript or typescript file for postprocessing the downloaded_filename file. Read more in the "Postprocessing section".

SQL Mode

sql_connstring

A URI-style database connection string. Flat will use this connection string to connect to the database and issue the query.

⚠️ Don't write secrets into your workflow.yml!

Most connection strings contain an authentication secret like a username and password. GitHub provides an encrypted vault for secrets like these which can be used by the action when it runs. Create a secret on the repository where the Flat action will run, and use that secret in your workflow.yaml like so:

sql_connstring: ${{NAME_OF_THE_CREATED_SECRET}}

If you're using the flat-vscode extension, this is handled for you.

sql_queryfile

The pathname of the file containing the SQL query that will be issued to the database. Defaults to .github/workflows/query.sql. This path is relative to the root of your repo.

downloaded_filename

The name of the file to store data fetched by Flat.

In sql mode this should be one of csv or json. SQL query results will be serialized to disk in the specified format.

⚠️ While the JSON is not pretty-printed, CSV is often a more efficient serialization for tabular data.

postprocess (optional)

A path to a local Deno javascript or typescript file for postprocessing the downloaded_filename file. Read more in the "Postprocessing section".

Outputs

delta_bytes

A signed number describing the number of bytes that changed in this run. If the new data is smaller than the existing, committed data, this will be a negative number.

Postprocessing

You can add a postprocess input in the Action which is path to a deno Javascript or Typescript script that will be invoked to postprocess your data after it is fetched. This path is relative to the root of your repo.

The script can use either Deno.args[0] or the name of the downloaded_filename to access the file fetched by Flat Data.

import { readJSON, writeJSON } from 'https://deno.land/x/flat/mod.ts'

// The filename is the first invocation argument
const filename = Deno.args[0] // Same name as downloaded_filename
const data = await readJSON(filename)

// Pluck a specific key off
// and write it out to a different file
// Careful! any uncaught errors and the workflow will fail, committing nothing.
const newfile = `subset_of_${filename}`
await writeJSON(newfile, data.path.to.something)

You can use console.log() as much as you like within your postprocessing script; the results should show up in your actions log.

Why deno?

Deno's import-by-url model makes it easy to author lightweight scripts that can include dependencies without forcing you to set up a bundler.

How is my script invoked?

The postprocessing script is invoked with deno run -q -A --unstable {your script} {your fetched data file}. Note that the -A grants your script full permissions to access network, disk — everything! Make sure you trust any dependencies you pull in, as they aren't restricted. We will likely revisit this in the future with another setting that specifies which permissions to grant deno.

How do I do ...?

The learn more about the possibilities for postprocessing check out our helper and examples postprocessing repo.

Contributing

WIP!

Building / Releasing

  1. npm run dist and commit the built output (yes, you read that right)
  2. Bump whatever you want to bump in the package.json version field
  3. Merge main into vMAJOR branch. git checkout vMAJOR && git merge main
  • If this is a new major version, create the branch. git checkout -b vMAJOR
  • Push the branch. git push --set-upstream origin vMAJOR
  1. Create a new tag for the version: git tag -f vMAJOR.MINOR.PATCH
  2. Push main git checkout main && git push
  3. Navigate to https://github.com/githubocto/flat/tags and cut a new release from the tag you just pushed!

License

MIT

0