Alexander Emelin

Results 369 comments of Alexander Emelin

I just tried enabling gzip in Nginx and point it to http_stream endpoint. It worked: Nginx config I used: ``` user www-data; worker_processes auto; pid /run/nginx.pid; include /etc/nginx/modules-enabled/*.conf; events {...

@richelieu-yang If it helps, here is a snippet in Go of reverse proxy which GZIPs chunked HTTP stream. It works, but I just made proof of concept - ❗❗❗ totally...

Eventually was able to run by increasing all health-check timeouts in docker compose file.

Hello @ghstahl, > I would like to get a list of all channels in a given namespace that have items in history. there is no such API. And I do...

@ghstahl hello, I think https://centrifugal.dev/docs/server/server_api#channels has sth like this, it has `pattern` field in request, so it's possible to call it with sth like `your_namespace:*`. Note, that it works in...

Hello @BrianMwas Usually you are not supposed to use https://github.com/centrifugal/centrifuge and https://github.com/centrifugal/centrifugo in one project, that's possible but requires proper understanding of boundaries between them. There are no guidelines for...

Hello @ghstahl From what I see: you are trying to subscribe to channel `$cg:myConsumerGroup#centrifugo-connector-sa`, but you are subscribing to it using invalid subscription JWT. I suppose, in this case it's...

> $cg:myConsumerGroup#centrifugo-connector-sa Can you show logs for this case? I suppose in that case the following code results into permission denied: https://github.com/centrifugal/centrifugo/blob/cc802148ddf20613316632ec0674c36528ac256e/internal/client/handler.go#L709 We had slightly different permission model in previous...

> The log for the $cg:myConsumerGroup#centrifugo-connector-sa case is in the first entry of this issue.\ I explained the reason in https://github.com/centrifugal/centrifugo/issues/837#issuecomment-2190727327 - you tried to subscribe to it with malformed...

@ghstahl could you please share namespace configuration also?