npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

try-helios

v0.1.1

Published

CLI for managing Helios infrastructure

Downloads

26

Readme

Helios Infrastructure Deployment and CLI

ora Version

This repository contains the automated deployment process for Helios, an open-source platform designed to simplify the visualization and analysis of real-time event streams. Helios exposes data from Amazon Kinesis streams for SQL querying, allowing teams to gain insights from their existing event streams through an intuitive interface.

Helios Architecture

Infrastructure Overview

Helios deploys the following key components:

  • ClickHouse database on EC2
  • Flask web application on EC2
  • Lambda function for Kinesis stream processing
  • DynamoDB table for stream-to-table mapping
  • S3 bucket for ClickHouse backups
  • VPC and security groups

Deployment and Management

Helios provides a Command-Line Interface (CLI) that streamlines the deployment, configuration, and management of Helios infrastructure on AWS. This interface leverages the AWS Cloud Development Kit (CDK) to manage infrastructure as code. This allows for consistent, repeatable deployments and easy management of complex AWS resources.

Prerequisites

Installation

Install the Helios CLI globally:

npm install -g try-helios

Deploying Helios

To deploy Helios infrastructure, run:

helios deploy

This command will guide you through the following steps:

  1. You will be prompted to enter your AWS Profile name. This should correspond to a profile in your AWS credentials file.
  2. You will have the option to enter a ChatGPT API key. This is optional, but if provided, it enables AI-powered error analysis for data in quarantine tables. When data fails to insert into the main ClickHouse tables due to schema mismatches or other errors, it's stored in quarantine tables.
  3. The CLI will then use the AWS CDK to deploy all necessary Helios infrastructure to your AWS account.
  4. You'll see a progress indicator while the deployment is in progress.
  5. Upon successful deployment, you'll receive the URL where you can access the Helios web interface.

Destroying Helios Infrastructure

To tear down the Helios infrastructure, run:

helios destroy

This command will:

  1. Use the AWS CDK to destroy all Helios-related resources in your AWS account.
  2. You'll see a progress indicator during the destruction process.
  3. Upon completion, you'll receive a confirmation message.

Note: Destroying the infrastructure will remove all related resources and data. This action cannot be undone, so please use with caution.