mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
751a35cd35
* Make DDLs more friendly towards running on a cluster
* Use primary CLICKHOUSE host for migrations and DDL
* loose ends on person kafka create
* posthog -> cluster typo
* add cluster to KAFKA create for plugin logs
* Feed the type monster
* clusterfy local clickhouse
* test docker-compose backed github action
* run just clickhouse and postgres from docker-compose
* move option to between up and <services>
* posthog all the things
* suggest tests run on cluster
* posthog cluster for ci
* use deploy path for docker-compose
* fix for a clickhouse bug 🐛
* complete CH bug fixes
* 5439 the github actions pg configs
* remove CLICKHOUSE_DATABASE (handled automatically)
* update DATABASE_URL for code quality checks
* Missed a few DDLs on Person
* 5439 -> 5432 to please the people
* cleanup persons and use f strings <3 f strings
* remove auto parens
* Update requirements to use our fork of infi.clickhouse_orm
* fix person.py formatting
* Include boilerplate macros for a cluster
97 lines
2.7 KiB
YAML
97 lines
2.7 KiB
YAML
version: '3'
|
|
|
|
services:
|
|
db:
|
|
image: postgres:12-alpine
|
|
environment:
|
|
POSTGRES_USER: posthog
|
|
POSTGRES_DB: posthog
|
|
POSTGRES_PASSWORD: posthog
|
|
ports:
|
|
- '5432:5432'
|
|
redis:
|
|
image: 'redis:alpine'
|
|
ports:
|
|
- '6379:6379'
|
|
clickhouse:
|
|
image: yandex/clickhouse-server
|
|
depends_on:
|
|
- kafka
|
|
- zookeeper
|
|
ports:
|
|
- '8123:8123'
|
|
- '9000:9000'
|
|
- '9440:9440'
|
|
- '9009:9009'
|
|
volumes:
|
|
- ./idl:/idl
|
|
- ../docker/clickhouse/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
|
|
- ../docker/clickhouse/config.xml:/etc/clickhouse-server/config.xml
|
|
zookeeper:
|
|
image: wurstmeister/zookeeper
|
|
kafka:
|
|
image: wurstmeister/kafka
|
|
depends_on:
|
|
- zookeeper
|
|
ports:
|
|
- '9092:9092'
|
|
environment:
|
|
KAFKA_ADVERTISED_HOST_NAME: kafka
|
|
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
|
|
worker: &worker
|
|
build:
|
|
context: ../
|
|
dockerfile: dev.Dockerfile
|
|
command: ./bin/docker-worker-celery --with-scheduler
|
|
volumes:
|
|
- ..:/code
|
|
environment:
|
|
DATABASE_URL: 'postgres://posthog:posthog@db:5432/posthog'
|
|
CLICKHOUSE_HOST: 'clickhouse'
|
|
CLICKHOUSE_DATABASE: 'posthog'
|
|
CLICKHOUSE_SECURE: 'false'
|
|
CLICKHOUSE_VERIFY: 'false'
|
|
KAFKA_URL: 'kafka://kafka'
|
|
REDIS_URL: 'redis://redis:6379/'
|
|
SECRET_KEY: 'alsdfjiosdajfklalsdjkf'
|
|
DEBUG: 'true'
|
|
PRIMARY_DB: 'clickhouse'
|
|
PGHOST: db
|
|
PGUSER: posthog
|
|
PGPASSWORD: posthog
|
|
depends_on:
|
|
- db
|
|
- redis
|
|
- clickhouse
|
|
- kafka
|
|
links:
|
|
- db:db
|
|
- redis:redis
|
|
- clickhouse:clickhouse
|
|
- kafka:kafka
|
|
web:
|
|
<<: *worker
|
|
command: '${CH_WEB_SCRIPT:-./ee/bin/docker-ch-dev-web}'
|
|
ports:
|
|
- '8000:8000'
|
|
- '8234:8234'
|
|
plugins:
|
|
image: posthog/plugin-server:latest
|
|
restart: on-failure
|
|
environment:
|
|
DATABASE_URL: 'postgres://posthog:posthog@db:5432/posthog'
|
|
KAFKA_ENABLED: 'true'
|
|
KAFKA_HOSTS: 'kafka:9092'
|
|
REDIS_URL: 'redis://redis:6379/'
|
|
CLICKHOUSE_HOST: 'clickhouse'
|
|
depends_on:
|
|
- db
|
|
- redis
|
|
- clickhouse
|
|
- kafka
|
|
links:
|
|
- db:db
|
|
- redis:redis
|
|
- clickhouse:clickhouse
|
|
- kafka:kafka
|