Kevin Pfeifer

Results 191 comments of Kevin Pfeifer

I am in the same position as you. Insights backend is also unresponsive for me. I just have a "few" more entries in clickhouse as it seems 😅 ``` SELECT...

I adjusted my `sentry.conf.py` to the following nodestore config: ``` SENTRY_NODESTORE = "sentry_nodestore_s3.S3PassthroughDjangoNodeStorage" SENTRY_NODESTORE_OPTIONS = { "compression": True, "endpoint_url": "http://seaweedfs:8333", "bucket_path": "nodestore", "bucket_name": "nodestore", "region_name": "us-east-1", "aws_access_key_id": "sentry", "aws_secret_access_key": "sentry",...

To debug clickhouse queries one has to adjust their `clickhouse/config.xml` and replace ``` ``` with ``` system query_log event_date + INTERVAL 1 day 7500 1048576 8192 524288 false ``` then...

I did another test and found another sql query, which takes up > 1GB of RAM: ``` 6. │ ExceptionWhileProcessing │ 2025-09-30 10:32:09 │ randomized-781026ea3ec64a0b941a16f5dbe5fa53 │ 1.23 GiB │ 166710882...

For me I can make the Insights Backend "work" again if I filter the view by a specific project instead of showing the data of all my projects. Something about...

Everything I found "officially" dependent on the auth plugin on packagist is definitely cakephp related, so making the auth plugins framework agnostic is not needed. https://packagist.org/packages/cakephp/authentication/dependents?order_by=downloads

Sure, but the only place where we indireclty say it is "framework agnostic" is the github description with > Authentication plugin for CakePHP. Can also be used in PSR7 based...

So... is there something i need to do to get this merged?

Sorry for the late response. I tried this branch, but it doesn't fix my problem. If I remove the phpstan-ignore line from ``` public function batnodePorts(NginxConfigUtility $nginxConfigUtility): Response { $optionsTable...

I let that auto generate via the ide helper ``` /** * Options Model * * @method \App\Model\Entity\Option newEmptyEntity() * @method \App\Model\Entity\Option newEntity(array $data, array $options = []) * @method...