0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 09:14:46 +01:00
posthog/ee/clickhouse
Karl-Aksel Puulmann 3ac74a8472
Clickhouse flamegraphs (#5752)
* WIP: flamegraphs

* Get flame graphs generating

* Add files to bin

* Crude frontend for analyzing

* Hack: Use a stable clickhouse host instead of conn pool for flamegraphs

Otherwise no way to get back measurements due to LB.

* Error handling

* Only allow read queries

* Hide query analyze button for non-owners

* Make sure non-admins can't run queries

* Fix query issue
2021-09-08 16:24:44 +03:00
..
bin Clickhouse flamegraphs (#5752) 2021-09-08 16:24:44 +03:00
materialized_columns Make marking materialized columns as MATERIALIZED stateless (#5831) 2021-09-07 11:53:57 +00:00
migrations Migrate person_distinct_id table to CollapsingMergeTree (#5563) 2021-08-18 17:25:02 +03:00
models Fix issue with person breakdowns and clashing params (#5815) 2021-09-07 13:36:14 +03:00
queries Add test for defining both a start and end point for path (#5820) 2021-09-07 12:00:39 -04:00
sql Add test for defining both a start and end point for path (#5820) 2021-09-07 12:00:39 -04:00
test Generate clickhouse query error class dynamically (#5492) 2021-08-06 16:31:42 +01:00
views fix person modal across multiple dates (#5819) 2021-09-07 15:17:50 +03:00
__init__.py
client.py Clickhouse flamegraphs (#5752) 2021-09-08 16:24:44 +03:00
demo.py
errors.py Generate clickhouse query error class dynamically (#5492) 2021-08-06 16:31:42 +01:00
generate_local.py
middleware.py Fix sentry metrics capture (#5513) 2021-08-09 15:43:34 +03:00
README.md
system_status.py Clickhouse flamegraphs (#5752) 2021-09-08 16:24:44 +03:00
timer.py Make timer safe (#5469) 2021-08-05 16:58:21 +03:00
util.py Speed up EE tests by not destroying tables (#5715) 2021-08-25 10:58:09 +02:00

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.

Certain migrations (e.g. changing table engines) can be quite expensive and tricky, especially for deployments outside of cloud. To skip these steps during deployment setup, check for the CLICKHOUSE_INITIAL_MIGRATIONS environment variable.

If you need help in making them happen, ask for help from team deployments.

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.