0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 09:14:46 +01:00
posthog/rust
2024-08-13 17:40:39 +03:00
..
bin
capture
common
docker/echo-server
feature-flags feat(flags): add validation for database reads for rust feature flag service (#24089) 2024-08-09 15:48:04 -04:00
hook-api feat: add app_metrics2 reporting to hoghooks (#23931) 2024-08-01 13:07:20 -06:00
hook-common feat: add app_metrics2 reporting to hoghooks (#23931) 2024-08-01 13:07:20 -06:00
hook-janitor feat: add app_metrics2 reporting to hoghooks (#23931) 2024-08-01 13:07:20 -06:00
hook-worker fix: return body to hog if we get a bad response code (#24287) 2024-08-13 17:40:39 +03:00
migrations
.dockerignore
.env
.gitignore
Cargo.lock fix: upgrade time to fix rust build using rust 1.80.0 (#24149) 2024-08-02 08:08:55 -06:00
Cargo.toml fix: upgrade time to fix rust build using rust 1.80.0 (#24149) 2024-08-02 08:08:55 -06:00
depot.json
docker-compose.yml
Dockerfile
Dockerfile.migrate
LICENSE
README.md

hog-rs

PostHog Rust service monorepo. This is not the Rust client library for PostHog.

capture

This is a rewrite of capture.py, in Rust.

Why?

Capture is very simple. It takes some JSON, checks a key in Redis, and then pushes onto Kafka. It's mostly IO bound.

We currently use far too much compute to run this service, and it could be more efficient. This effort should not take too long to complete, but should massively reduce our CPU usage - and therefore spend.

How?

I'm trying to ensure the rewrite at least vaguely resembles the Python version. This will both minimize accidental regressions, but also serve as a "rosetta stone" for engineers at PostHog who have not written Rust before.

rusty-hook

A reliable and performant webhook system for PostHog

Requirements

  1. Rust.
  2. Docker, or podman and podman-compose: To setup development stack.

Testing

  1. Start development stack:
docker compose -f docker-compose.yml up -d --wait
  1. Test:
# Note that tests require a DATABASE_URL environment variable to be set, e.g.:
# export DATABASE_URL=postgres://posthog:posthog@localhost:15432/test_database
# But there is an .env file in the project root that should be used automatically.
cargo test