Results 12 comments of Eugene Bikkinin

Hello @Tomasz-Kluczkowski Thank you for your response! Enabling option `-E` does not help. So, again our steps: 1. Run worker on pod with command `celery --app=superset.tasks.celery_app:app worker -E` 2. Kill...

I can't figure out how to debug it right now, so what I write next is just an assumption. Looks like workers do not send online/offline events. And all the...

I think we should divide gauge and counter metrics. Counter metrics tend to increase. E.g. I want to see overall done tasks per day including that from offline workers. But...

The problem with generic constraint is that it is a constraint. Even in your example ``` public class ConstrainedBehavior : IPipelineBehavior where TRequest : Ping where TResponse : Pong ```...

@lilasquared then my request that does not implement `ICommon` e.g. `MyRequest3` will fail.

I think the responsibility for checking and adding assemblies to scan lies with those who will use this method. But I admit it can be not 100% robust in some...

Hi! I added .editorconfig and refomated code according to it.

Some addition. I tried to create a table with only one partition: ``` CREATE TABLE EVENTS_HOURLY_COUNTS WITH (PARTITIONS=1) AS SELECT EVENTS.ROW_PARTITION AS PARTITION, COUNT(*) FROM EVENTS WINDOW TUMBLING ( SIZE...