0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-12-01 04:12:23 +01:00
posthog/ee/clickhouse
Karl-Aksel Puulmann 38476aec71
fix(persons): un-ratelimit person destroy, use kafka producer for messages (#11594)
* fix(persons): Make delete_person use kafka producer

This allows these inserts _not_ to take us down

* Remove pdi deletion logic from split_person

This is not needed with the new pdi2 table

* Update create_person_distinct_id to accept is_deleted argument

* Refactor `delete_ch_distinct_ids` to avoid sync_execute

* Remove person#destroy rate limiting

This reverts https://github.com/PostHog/posthog/pull/11576

* Update splitting tests

* Skip tests when not on person-on-events
2022-09-01 14:54:49 +03:00
..
bin
materialized_columns fix: materialised columns (#11558) 2022-08-31 21:02:33 +01:00
models feat: materialize person and groups on events (#11363) 2022-08-30 12:31:32 +01:00
queries fix: Persons Search backend (#11586) 2022-09-01 11:09:56 +02:00
test chore(data-m): Make calculate_event_property_usage_for_team smarter (#11440) 2022-08-23 15:06:24 +00:00
views fix(persons): un-ratelimit person destroy, use kafka producer for messages (#11594) 2022-09-01 14:54:49 +03:00
__init__.py
README.md

Clickhouse Support (Enterprise Feature)

To accomodate high volume deployments, Posthog can use Clickhouse instead of Postgres. Clickhouse isn't used by default because Postgres is easier to deploy and maintain on smaller instances and on platforms such as Heroku.

Clickhouse Support works by swapping in separate queries and classes in the system for models that are most impacted by high volume usage (ex: events and actions).

Migrations and Models

The django_clickhouse orm is used to manage migrations and models. The ORM is used to mimic the django model and migration structure in the main folder.

Queries

Queries parallel the queries folder in the main folder however, clickhouse queries are written in SQL and do not utilize the ORM.

Tests

The tests are inherited from the main folder. The Clickhouse query classes are based off BaseQuery so their run function should work just as the Django ORM backed query classes. These classes are called with the paramterized tests declared in the main folder which allows the same suite of tests to be run with different implementations.

Views

Views contain Viewset classes that are not backed by models. Instead the views query Clickhouse tables using SQL. These views match the interface provide by the views in the main folder.