Skip to content

Commit

Permalink
Merge branch 'main' into 5981-state-backends
Browse files Browse the repository at this point in the history
  • Loading branch information
cjohnhanson committed Nov 11, 2022
2 parents 16745b8 + cbe6202 commit 6b581e5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -160,7 +160,7 @@ jobs:
shell: bash
run: |
pytest_results_count () { pattern="([0-9]+) $1" && [[ ${{ env.pytest_results }} =~ $pattern ]] && echo "${BASH_REMATCH[1]}" || echo 0; }
echo "::set-output name=pytest-results-row-${{ matrix.id }}::| \
echo "pytest-results-row-${{ matrix.id }}=| \
${{ matrix.python-version }} | \
${RUNNER_OS} ${RUNNER_ARCH,,} | \
${{ matrix.backend-db }} | \
Expand All @@ -172,7 +172,7 @@ jobs:
$( pytest_results_count deselected ) | \
$( pytest_results_count warning ) | \
$( pytest_results_count error ) | \
$( pattern='in ([0-9]+)\.[0-9]+s' && [[ ${{ env.pytest_results }} =~ $pattern ]] && echo "${BASH_REMATCH[1]}" )s |"
$( pattern='in ([0-9]+)\.[0-9]+s' && [[ ${{ env.pytest_results }} =~ $pattern ]] && echo "${BASH_REMATCH[1]}" )s |" >> $GITHUB_OUTPUT
- name: Upload coverage data
if: always()
Expand Down
11 changes: 7 additions & 4 deletions docs/src/_guide/production.md
@@ -1,5 +1,5 @@
---
title: Run in Production
title: Deployment in Production
description: Learn how to deploy your ELT pipelines in production.
layout: doc
weight: 9
Expand All @@ -26,10 +26,13 @@ you can skip steps 1 through 3 and refer primarily to the "Containerized Meltano
We also provide a [Helm Chart](https://github.com/meltano/helm-meltano) for deploying a containerized instance of the Meltano UI to [Kubernetes](https://kubernetes.io).
More on that [in the Kubernetes section](#kubernetes).

## SaaS Hosting Options
## Managed Hosting Options

Meltano currently does not offer project hosting as a paid offering.
We recommend users look at [Singerly](https://www.singerly.co/), [Astronomer.io](https://www.astronomer.io/), or [Google Cloud Composer](https://cloud.google.com/composer/) as options for hosting and running your Meltano project.
Would you rather not be responsible for deploying your Meltano project and managing it in production?

[Meltano Cloud](https://meltano.com/cloud) launches in Alpha in late 2022 and opens to the public in early 2023. [Sign up](https://meltano.com/cloud) to receive more information and reduce your self-management burden.

In the mean time, consider running your Meltano pipelines using a managed Airflow service like [Astronomer](https://www.astronomer.io/), [Google Cloud Composer](https://cloud.google.com/composer/), or [Amazon MWAA](https://docs.aws.amazon.com/mwaa).

## Your Meltano project

Expand Down

0 comments on commit 6b581e5

Please sign in to comment.