No backwards incompatible changes here.
Improvements:
- Support for
tls-alpn-01
ACME challenge, see #283
Fixes:
- fix running HTTP server several times when http-01 ACME challenge used, see #288
This release fixes two regressions introduced by v2.2.0.
Improvements:
- New documentation chapter about GRPC API in Centrifugo.
Fixes:
- Fix client disconnect in channels with enabled history but disabled recovery
- Fix wrong Push type sent in Redis engine: Leave message was used where Join required
This release is based on latest refactoring of Centrifuge library. The refactoring opens a road for possible interesting improvements in Centrifugo – such as possibility to use any PUB/SUB broker instead of Redis (here is an example of possible integration with Nats server), or even combine another broker with existing Redis engine features to still have recovery and presence features. Though these ideas are not implemented in Centrifugo yet. Performance of broadcast operations can be slightly decreased due to some internal changes in Centrifuge library. Also take a close look at backwards incompatible changes section below for one breaking change.
Improvements:
- Track client position in channels with
history_recover
option enabled and disconnect in case of insufficient state. This resolves an edge case when messages could be lost in channels withhistory_recover
option enabled after node reconnect to Redis (imagine situation when Redis was unavailable for some time but before Centrifugo node reconnects publisher was able to successfully send a message to channel on another node which reconnected to Redis faster). With new mechanism client won't miss messages though can receive them with some delay. As such situations should be pretty rare on practice it should be a reasonable compromise for applications. New mechanism adds more load on Redis as Centrifugo node periodically polls channel history state. The load is linearly proportional to amount of active channels withhistory_recover
option on. By default Centrifugo will check client position in channel stream not often than once in 40 seconds so an additional load on Redis should not be too high - New options for more flexible conrol over exposed endpoint interfaces and ports:
internal_address
,tls_external
,admin_external
. See description callingcentrifugo -h
. #262, #264 - Small optimizations in Websocket and SockjS transports writes
- Server initiated disconnect number metrics labeled with disconnect code
Backwards incompatible changes:
- This release removes a possibility to set
uid
to Publication over API. This feature was not documented in API reference anduid
field does not make sense to be kept on client protocol top level as in Centrifugo v2 it does not serve any internal protocol purpose. This is just an application specific information that can be put intodata
payload
Release is based on Go 1.12.x
This release contains changes in metric paths exported to Graphite, you may need to fix your dashboard when upgrading. Otherwise everything in backwards compatible.
Improvements:
- Refactored export to Graphite, you can now control aggregation interval using
graphite_interval
option (in seconds), during refactoring some magical path transformation was removed so now we have more predictable path generation. Though Graphite paths changed with this refactoring - Web interface rewritten using modern Javascript stack - latest React, Webpack instead of Gulp, ES6 syntax
- Aggregated metrics also added to
info
command reply. This makes it possible to look at metrics in admin panel too when callinginfo
command - More options can be set over environment variables – see #254
- Healthcheck endpoint – see #252
- New important chapter in docs – integration guide
- Support setting
api_key
when usingDeploy on Heroku
button - Better timeout handling in Redis engine – client timeout is now bigger than default
redis_read_timeout
so application can more reliably handle errors
Fixes:
- Dockerfile had no correct
WORKDIR
set so it was only possible to use absolute config file path, now this is fixed in this commit - Show node version in admin web panel
- Fix possible goroutine leak on client connection close, commit
Important If you are using rpm
or deb
packages from packagecloud.io then you have to re-run the installation method of your choice for Centrifugo repository. This is required to update GPG key used. This is a standard process that all packages hosted on packagecloud should do.
Improvements:
- Redis TLS connection support - see issue in Centrifuge lib and updated docs
- Do not send Authorization header in admin web interface when insecure admin mode enabled - helps to protect admin interface with basic authorization (see #240)
Fixes:
- Resubscribe only to shard subset of channels after reconnect to Redis (issue)
This release has several fixes and performance improvements
Improvements:
- Use latest SockJS url (SockJS version 1.3) for iframe transports
- Improve performance of massive subscriptions to different channels
- Allow dot in namespace names
Fixes:
- Fix of possible deadlock in Redis Engine when subscribe operation fails
- Fix admin web interface logout issue when session expired
- Fix io timeout error when using Redis Engine with sharding enabled
- Fix
checkconfig
command - Fix typo in metric name - see #233
This is a new major version of Centrifugo. New version has some important changes and useful features.
Centrifugo v2 serves the same purpose as Centrifugo v1. Centrifugo v2 is not backwards compatible with v1 – migration to it will require adapting both backend and frontend sides of your application (of course if you decide to migrate).
Centrifugo is now based on new library centrifuge for Go language. That library can be used standalone to get even more than Centrifugo server provides – like custom authentication, your own permission management, asynchronous message passing, RPC calls etc.
Highlights of v2:
- Cleaner and more structured client-server protocol defined in protobuf schema. Protocol is more compact because some fields with default values that were sent previously now omitted
- Binary Websocket support (Protobuf). Protobuf allows to transfer data in much more compact and performant way than before. Of course JSON is still the main serialization format
- JWT for authentication and private channel authorization instead of hand-crafted HMAC sign. This means that there is no need in extra libraries to generate connection and subscription tokens. There are plenty of JWT libraries for all languages
- Prometheus integration and automatic export of stats to Graphite. Now Centrifugo easily integrates in modern monitoring stack – no need to manually export stats
- Refactored Javascript (ES6), Go and gomobile client libraries
- Simplified HTTP API authentication (no request body signing anymore)
- GRPC for server API
- New
presence_stats
API command to get compact presence information - how many clients and unique users in channel - Structured logging with coloured output during development
- Mechanism to automatically merge several Websocket messages into one to reduce syscall amount thus be more performant under heavy load
- Better recovery algorithm to fix several
recovered
flag false positives - Goreleaser for automatic releases to Github
Some things were removed from Centrifugo in v2 release:
- Publishing over Redis queue
- Admin websocket endpoint
- Client limited channels
history_drop_inactive
channel option now gone- Websocket prepared message support (though this one can be pushed back at some point).
New documentation contains actual information and tips about migration from v1.
As mentioned above new version uses JWT tokens for authentication and private channel authorization. And there is no API request body signing anymore. This all means that using API clients (like cent
, phpcent
, jscent
, rubycent
, gocent
before) is not necessary anymore – you can use any JWT library for your language and just send commands from your code – this is just simple JSON objects. Though API libraries still make sense to simplify integration a bit.
At moment there are no native mobile clients. I.e. centrifuge-ios
and centrifuge-android
have not been updated to Centrifugo v2 yet.
No backwards incompatible changes here.
- package for Ubuntu 18.04
- add Centrifugo
version
to stats output. Also add rusage stime and utime values to metrics. See #222 for details. Thanks to @Sannis for contributions - expose more configuration options to be set over environment variables. See commit and related issue
- more context in debug logs regarding to client connection. See #201
- fix deb package upgrade - see #219 for details
- using Go 1.10.3 for builds
No backwards incompatible changes here.
- fix malformed JSON when using empty
info
in connection refresh request - see #214.
- support ACME http_01 challenge using new
ssl_autocert_http
boolean option. Centrifugo will serve http_01 ACME challenge on port 80. See #210 for more details.
- using Go 1.10.1 for builds
No backwards incompatible changes here.
- the fix of goroutine leak in 1.7.7 was incomplete - looks like in this release the problem described in #207 gone away.
No backwards incompatible changes here.
- fix goroutine leak due to deadlock, see #207
- possibility to set message
uid
via API request - see #205
- do not send
unsubscribe
messages to client on shutdown - it will unsubscribe automatically on disconnect on client side - using Go 1.10 for builds
No backwards incompatible changes here.
- fix setting config via environment vars -
CENTRIFUGO_
prefix did not work since 1.7.4
No backwards incompatible changes here.
The only change is using new version of Go for builds (Go 1.9.2). This will allow to analize performance profiles more easily without having to use binaries. See this new wiki page about investigating performance issues.
No backwards incompatible changes here.
This release is centered around internal refactoring to detach node from server - see more details in #186.
- optionally create PID file using
--pid_file
command line option. - create connections in separate goroutines to slightly improve GC (and therefore reduce memory usage).
- Using Go 1.8.3 for builds
No backwards incompatible changes here.
This release built using new version of Go - 1.8.1, previously Centrifugo used Go 1.7.5, so here we benefit from Go evolution improvements - the most notable is improvements in GC pauses which should in turn improve Centrifugo latency. It also reduces memory usage by about 15-20% when websocket compression enabled.
No backwards incompatible changes here.
- fix reusing read and write buffers returned from connection hijack. This was added in previous release but due to the bug in configuration the feature did not work.
No backwards incompatible changes here.
- fix mass resubscribe after several Redis disconnects in a row - more details in #163
- update Gorilla Websocket lib - it now tries to reuse buffers returned from Go http library
hijack
method. We adapted Centrifugo default websocket buffer options to utilize this feature (websocket_read_buffer_size
andwebsocket_write_buffer_size
now0
by default).
This release changes two important aspects of Centrifugo. We expect that it will be fully backwards compatible with previous one in most scenarios until you were using timestamp
message field somehow.
- integration with Gorilla Websocket PreparedMessage for raw websocket. We expect it to drastically improve websocket compression case - reducing both memory and CPU in large fan-out scenarios. This change does not affect SockJS in any way.
timestamp
field removed from message. See #147 for motivation.- Several new memory metrics -
node_memory_heap_sys
,node_memory_heap_alloc
,node_memory_stack_inuse
No backwards incompatible changes here.
- resolve
history_drop_inactive
option edge case (described in #50) - two new options for autocert:
ssl_autocert_force_rsa
andssl_autocert_server_name
. See docs for description
- update web interface - in new version we don't show connection endpoints on main page as we can't show them reliably. Final endpoints depend on your production proxy/firewall politics (and port configuration) so we don't try to guess.
No backwards incompatible changes here.
We consider removing timestamp
field from message as it's seems useless and never used by Centrifugo users. Applications that need timestamp for some reason can include it into message JSON payload. If you have any objections please look at issue #147 and write your thoughts against removing this field.
- configurable websocket compression level - see updated docs. Bear in mind that compression is still very CPU and memory expensive
- new metric
node_uptime_seconds
- see updated docs for stats
- fixes crash when using builtin TLS server - see #145
- redirect Go std lib logging into our INFO logger
- Using Go 1.7.5 for builds
- As soon as Go 1.8 out we will be able to remove
x/net/http2
dependency as standard lib will contain fix for #145
This release fixes wrong decision made in 1.6.x related to pings. We don't rely on client to server
pings to disconnect clients anymore, we also moved back SockJS heartbeat frames - i.e. sending them
from server to client every 25 seconds as before (in Centrifugo < 1.6.0). Recent changes in centrifuge-js
(version 1.4.2) allowed us to not introduce addition reconnects for SockJS polling
transports when sending client to server automatic ping. We also updated documentation chapter about
pings a bit.
- Random disconnects from Centrifugo when using automatic client to server pings. This is a default behaviour so it affects almost everyone who using Centrifugo 1.6.x, fixes centrifugal#142
- Fix writing headers after headers already written in raw websocket endpoint - this remove annoying log line appearing after client can't upgrade connection to Websocket.
- Use Redis pipelining and single connection for presence/history/channels operations. This increases performance of those operations especially on systems with many CPU cores.
- Homebrew formula to install Centrifugo on MacOS, see README for instructions.
- Update gorilla websocket library - there is one more update for websocket compression: pool flate readers which should increase compression performance.
- Fix calling presence remove for every channel (not only channels with presence option enabled).
- Change subscribing/unsubscribing algorithm to Redis channels - it fixes theoretical possibility of wrong subscribing state in Redis.
- We don't use
disconnect
message before closing client connections anymore - we rely on websocket/SockJS close reason now (which is JSON encodedDisconnectAdvice
). Our js client already handles that reason, so no breaking changes there. Some work required in other clients though to supportreconnect: false
in advice.
This release fixes some configuration problems introduced by v1.6.0 and adds Let's Encrypt support.
- automatic TLS certificates from Let's Encrypt - see #133 and new dedicated documentation chapter
- websocket compression performance improvement (due to Gorilla Websocket library update)
- fix SSL/TLS certificates file option names - see #132
- fix
web
option that must enable admin socket automatically - see #136
This Centrifugo release is a massive 4-months refactoring of internals with the goal to separate code of different components such as engine, server, metrics, clients to own packages with well-defined API to communicate between them. The code layout changed dramatically. Look at libcentrifugo
folder before and after! Unfortunately there are backwards incompatibilities with previous release - see notes below. The most significant one is changed metrics format in stats
and node
API command responses.
With new code layout it's much more simple to create custom engines or servers – each with own metrics and configuration options. We can not guarantee though that we will keep libcentrifugo
packages API stable – our primary goal is still building Centrifugo standalone server. So if we find something that must be fixed or improved internally - we will fix/improve it even if this could result in packages API changes.
As Centrifugo written in Go the only performant way to write plugins is to import them in main.go
file and build Centrifugo with them. So if you want to create custom build with custom server or custom engine you will need to change main.go
file and build Centrifugo yourself. But at least it's easier than supporting full Centrifugo fork.
- New metrics. Several useful new metrics have been added. For example HTTP API and client request HDR histograms. See updated documentation for complete list. Refactoring resulted in backwards incompatible issue when working with Centrifugo metrics (see below). Here is a docs chapter about metrics.
- Optimizations for client side ping,
centrifuge-js
now automatically sends periodicping
commands to server. Centrifugo checks client's last activity time and closes stale connections. Builtin SockJS server won't send heartbeat frames to SockJS clients by default. You can restore the old behaviour though: settingping: false
on client side andsockjs_heartbeat_delay: 25
option in Centrifugo configuration. This all means that you better updatecentrifuge-js
client to latest version (1.4.0
). Read more about pings in docs. - Experimental websocket compression support for raw websockets - see #115. Read more details how to enable it in docs. Keep in mind that enabling websocket compression can result in slower Centrifugo performance - depending on your load this can be noticeable.
- Serious improvements in Redis API queue consuming. There was a bottleneck as we used BLPOP command to get every message from Redis which resulted in extra RTT. Now it's fixed and we can get several API messages from queue at once and process them. The format of Redis API queue changed - see new format description in docs. Actually it's now the same as single HTTP API command - so we believe you should be comfortable with it. Old format is still supported but DEPRECATED and will be removed in next releases.
- Redis sharding support. See more details in docs. This resolves some fears about Redis being bottleneck on some large Centrifugo setups. Though we have not heard such stories yet. Redis is single-threaded server, it's insanely fast but if your Redis approaches 100% CPU usage then this sharding feature is what can help your application to scale.
- Many minor internal improvements.
- This release fixes crash when
jsonp
transport was used by SockJS client - this was fixed recently in sockjs-go library. - Memory bursts fixed on node shutdown when we gracefully disconnect many connected clients.
stats
andnode
command response body format changed – metrics now represented as map containing string keys and integer values. So you may need to update your monitoring scripts.- Default log level now is
info
-debug
level is too chatty for production logs as there are tons of API requests per second, tons of client connect/disconnect events. If you still want to see logs about all connections and API requests - setlog_level
option todebug
. channel_prefix
option renamed toredis_prefix
.web_password
andweb_secret
option aliases not supported anymore. Useadmin_password
andadmin_secret
.insecure_web
option removed – web interface now available without any password ifinsecure_admin
option enabled. Of course in this case you should remember about protecting your admin endpoints with firewall rules. Btw we recommend to do this even if you are using admin password.- Admin
info
response format changed a bit - but this most possibly will not affect anyone as it was mostly used by embedded web interface only. - Some internal undocumented options have been changed. Btw we documented several useful options which can be helpful in some cases.
- Code base is more simple and readable now.
- Protobuf v3 for message schema (using gogoprotobuf library). proto2 and proto3 are wire compatible.
- Client transport now abstracted away - so it would be much easier in future to add new transport in addition/replacement to Websocket/SockJS.
- API abstracted away from protocol - it would be easier in future to add new API requests source.
- No performance penalty was introduced during this refactoring.
- We process PUB/SUB messages in several goroutines, preserving message order.
- We use
statik
(https://github.com/rakyll/statik) to embed web interface now. - go1.7.4 used for builds.
- Fixes #94.
Some upgrade steps needed to migrate to this release, see below.
This release is a major refactoring of Centrifugo internal engine. Centrifugo now uses protobuf
format while transferring data between nodes and serializing history/presence data in Redis. We expect that all those changes should not affect your working application code though as new serialization format used you may need to run FLUSHDB
command if using Redis engine to remove presence/history data encoded as JSON (if you don't use presence and history then no need to do this). If you have any problems with new serialization format used by Centrifugo internally – we can consider making old JSON encoding optional in future releases. Depending on how you use Centrifugo with Redis Engine those internal changes can result in nearly the same performance (if real-time content mostly generated by users online, so messages coming to Centrifugo have to be delivered to at least one client) or up to 2x API request speed up (if your real-time mostly generated by application backend itself so some messages published in channel with no active subscribers and there is no need to do JSON encoding work).
- Using SockJS 1.1 by default (actually as by default we use jsdelivr.net CDN version it will be latest minor release - at moment of writing 1.1.1) – this means that you need to also upgrade SockJS on client side to the same version (because some iframe-based SockJS transports require exact version match on client and server). Note that you can set desired SockJS version used by Centrifugo server via
sockjs_url
option (which is now by default//cdn.jsdelivr.net/sockjs/1.1/sockjs.min.js
). So if you don't want to upgrade SockJS on client side or just want to fix version used or use your own hosted SockJS library (which is good if you think about old browser support and don't want to be affected by minor SockJS library releases) - use that option. centrifugo version
now shows Go language version used to build binary.- Performance and memory allocation improvements.
No backwards incompatible changes here. This release uses go1.6.2
- HTTP/2 support. This means that Centrifugo can utilize HTTP/2 protocol automatically - this is especially useful for HTTP-based SockJS transports (no limits for open connections per domain anymore). Note that HTTP/2 will work only when your setup utilizes
https
. Also HTTP/2 does not affect websockets because of missing protocol upgrade possibilities in HTTP/2 protocol - so websockets will work in the same way as before. Also if you have any proxy before Centrifugo then depending on your setup some reconfiguration may be required to make HTTP/2 work.
Just to remember how to test Centrifugo with SSL: follow instructions from Heroku article to generate self-signed certificate files. Then start Centrifugo like this:
./centrifugo --config=config.json --web --ssl --ssl_key=server.key --ssl_cert=server.crt
Go to https://localhost:8000/ and confirm that you trust certificate of this site (this is because of self-signed certificate, in case of valid certificate you don't need this step). Then you can test secure endpoint connections.
One more fix for v1.4.2 release here
- proper aliasing of
admin_password
andadmin_secret
configuration options. See #88
Fix of security vulnerability introduced in v1.4.2, see below.
- If you are using Centrifugo v1.4.2 (previous versions not affected) with admin socket enabled (with
--admin
or--web
options) and your admin endpoint not protected by firewall somehow then you must update to this version. Otherwise it's possible to connect to admin websocket endpoint and run any command without authentication. It's recommended to update your secret key after upgrade. So sorry for this.
- Redis Sentinel support for Redis high availability setup. Docs
- Redis Engine now uses Redis pipeline for batching publish operations - this results in latency and throughput improvments when publish rate is high.
- Refactored admin websocket. New option
admin
to enable admin websocket. New optioninsecure_admin
to make this endpoint insecure (useful when admin websocket endpoint/port protected by firewall rules).web_password
option renamed toadmin_password
,web_secret
option renamed toadmin_secret
,insecure_web
renamed toinsecure_admin
. But all old option names still supported to not break things in existing setups. Also note, that when you run Centrifugo withweb
interface enabled - you also make admin websocket available, because web interface uses it. A little more info in pull request. - Presence Redis Engine methods rewritten to lua to be atomic.
- Some Redis connection params now can be set over environment variables. See #81
- Fix busy loop when attempting to reconnect to Redis. Fixes large CPU usage while reconnecting.
- Shorter message
uid
s (22 bytes instead of 36). This was made in order to get some performance improvements.
- fix server crash on 32-bit architectures (due to this), see more details in #74.
- fix compatibility with gocent introduced in v1.4.0
No backwards incompatible changes here for most usage scenarios, but look carefully on notes below.
- Timers in metrics marked as deprecated.
time_api_mean
,time_client_mean
,time_api_max
,time_client_max
now return 0. This was made because timer's implementation usedTimer
fromgo-metrics
library that does not suit very well for Centrifugo needs - so values were mostly useless in practice. So we decided to get rid of them for now to not confuse our users. - New
node
API method to get information from single node. That information will contain counters without aggregation over minute interval (whatstats
method does by default). So it can be useful if your metric aggregation system can deal with non-aggregated counters over time period itself. Also note that to use this method you should send API request to each Centrifugo node separately - as this method returns current raw statistics about one node. See issue for motivation description. - Centrifugo now handles SIGTERM in addition to SIGINT and makes
shutdown
when this signal received. During shutdown Centrifugo returns 503 status code on requests to handlers and closes client connections so clients will reconnect. If shutdown finished without errors in 10 seconds interval then Centrifugo exits with status code 0 (instead of 130 before, this fixes behaviour behindsystemd
after SIGTERM received). - Maximum limit in bytes for client request was added. It can be changed using
client_request_max_size
config option. By default 65536 bytes (64kb). - Packages for 64-bit Debian, Centos and Ubuntu hosted on packagecloud.io. If you are using Debian 7 or 8, Centos 6 or 7, Ubuntu 14.04 or Ubuntu 16.04 - you can find packages for those linux distribution following to packagecloud. Packages will be created every time we release new Centrifugo version.
No backwards incompatible changes here
- fix automatic presence expire in Redis engine - could lead to small memory leaks in Redis when using presence. Also could result in wrong presence information after non-graceful Centrifugo node shutdown.
- configurable limit for amount of channels each client can subscribe to. Default
100
. Can be changed usingclient_channel_limit
configuration option.
This release built using go 1.5.3 and includes security fix in Go lang
- empty errors not included in client response (this requires using Javascript client >= 1.1.0)
- optimization in Redis engine when using history - one round trip to Redis to publish message and save it into history instead of two. This was done over registering lua script on server start.
- client errors improvements - include error advice when error occurred (fix or retry at moment)
Also note that Javascript client will be fully refreshed soon. See this pull request
- fix port configuration introduced in v1.3.0:
--port
should override default values foradmin_port
andapi_port
- use the same (http/https) scheme for Sockjs default iframe script source.
- fix possible deadlock in shutdown
Possible backwards incompatibility here (in client side code) - see first point.
- omit fields in message JSON if field contains empty value:
client
on top level,info
on top level,default_info
ininfo
object,channel_info
ininfo
object. This also affects top level data in join/leave messages and presence data – i.e.default_info
andchannel_info
keys not included in JSON when empty. This can require adapting your client side code a bit if you rely on these keys but for most cases this should not affect your application. But we strongly suggest to test before updating. This change allows to reduce message size. See migration notes below for more details. - new option
--admin_port
to bind admin websocket and web interface to separate port. #44 - new option
--api_port
to bind API endpoint to separate port. #44 - new option
--insecure_web
to use web interface without settingweb_password
andweb_secret
(for use in development or when you protected web interface by firewall rules). #44 - new channel option
history_drop_inactive
to drastically reduce resource usage (engine memory, messages travelling around) when you use message history. See #50 - new Redis engine option
--redis_api_num_shards
. This option sets a number of Redis shard queues Centrifugo will use in addition to standardcentrifugo.api
queue. This allows to increase amount of messages you can publish into Centrifugo and preserve message order in channels. See #52 and documentation for more details. - fix race condition resulting in client disconnections on high channel subscribe/unsubscribe rate. #54
- refactor
last_event_id
related stuff to prevent memory leaks on large amount of channels. #48 - send special disconnect message to client when we don't want it to reconnect to Centrifugo (at moment to client sending malformed message).
- pong wait handler for raw websocket to detect non responding clients.
Also it's recommended to update javascipt client to latest version as it has some useful changes (see its changelog).
Message before:
{
"uid":"442586d4-688c-4a0d-52ad-d0a13d201dfc",
"timestamp":"1450817253",
"info": null,
"channel":"$public:chat",
"data":{"input":"1"},
"client":""
}
Message now:
{
"uid":"442586d4-688c-4a0d-52ad-d0a13d201dfc",
"timestamp":"1450817253",
"channel":"$public:chat",
"data":{"input":"1"},
}
I.e. not using empty client
and info
keys. If those keys are non empty then they present in message.
Join message before:
{
"user":"2694",
"client":"93615872-4e45-4da2-4733-55c955133436",
"default_info": null,
"channel_info":null
}
Join message now:
{
"user":"2694",
"client":"93615872-4e45-4da2-4733-55c955133436"
}
If "default_info" or "channel_info" exist then they would be included:
{
"user":"2694",
"client":"93615872-4e45-4da2-4733-55c955133436",
"default_info": {"username": "FZambia"},
"channel_info": {"extra": "some data here"}
}
No backwards incompatible changes here.
- New
recover
option to automatically recover missed messages based on last message ID. See pull request and chapter in docs for more information. Note that you need centrifuge-js >= v1.1.0 to use newrecover
option - New
broadcast
API method to send the same data into many channels. See issue and updated API description in docs - Dockerfile now checks SHA256 sum when downloading release zip archive.
- release built using Go 1.5.2
No backwards incompatible changes here.
- support enabling web interface over environment variable CENTRIFUGO_WEB
- close client's connection after its message queue exceeds 10MB (default, can be modified using
max_client_queue_size
configuration file option) - fix theoretical server crash on start when reading from redis API queue
A bad and a good news here. Let's start with a good one. Centrifugo is still real-time messaging server and just got v1.0 release. The bad – it is not fully backwards compatible with previous versions. Actually there are three changes that ruin compatibility. If you don't use web interface and private channels then there is only one change. But it affects all stack - Centrifugo itself, client library and API library.
Starting from this release Centrifugo won't support multiple registered projects. It will work with only one application. You don't need to use project key
anymore. Changes resulted in simplified
configuration file format. The only required option is secret
now. See updated documentation
to see how to set secret
. Also changes opened a way for exporting Centrifugo node statistics via HTTP API stats
command.
As this is v1 release we'll try to be more careful about backwards compatibility in future. But as we are trying to make a good software required changes will be done if needed.
Highlights of this release are:
- Centrifugo now works with single project only. No more
project key
.secret
the only required configuration option. - web interface is now embedded, this means that when downloading release you get possibility to run Centrifugo web interface just providing
--web
flag tocentrifugo
when starting process. - when
secret
set via environment variableCENTRIFUGO_SECRET
then configuration file is not required anymore. But note, that when Centrifugo configured via environment variables it's not possible to reload configuration sending HUP signal to process. - new
stats
command added to export various node stats and metrics via HTTP API call. Look its response example in docs chapter. - new
insecure_api
option to turn on insecure HTTP API mode. Read more in docs chapter. - minor clean-ups in client protocol. But as protocol incapsulated in javascript client library you only need to update centrifuge-js.
- release built using Go 1.5.1
Documentation was updated to fit all these release notes. Also all API and client libraries were updated – Javascript browser client (centrifuge-js
), Python API client (cent
), Django helper module (adjacent
). API clients for Ruby (centrifuge-ruby
) and PHP (phpcent
) too. Admin web interface was also updated to support changes introduced here.
There are 2 new API libraries: gocent and jscent. First for Go language. And second for NodeJS.
Also if you are interested take a look at centrifuge-go – experimental Centrifugo client for Go language. It allows to connect to Centrifugo from non-browser environment. Also it can be used as a reference to make a client in another language (still hoping that clients in Java/Objective-C/Swift to use from Android/IOS applications appear one day – but we need community help here).
- Use new versions of Centrifugal libraries - browser client and API client. Project key not needed in client connection parameters, in client token generation, in HTTP API client initialization.
- Another backwards incompatible change related to private channel subscriptions. Actually this is not related to Centrifugo but to Javascript client but it's better to write about it here. Centrifuge-js now sends JSON (
application/json
) request instead ofapplication/x-www-form-urlencoded
when client wants to subscribe on private channel. See in docs how to deal with JSON in this case. --web
is now a boolean flag. Previously it was used to set path to admin web interface. Now it indicates whether or not Centrifugo must serve web interface. To provide path to custom web application directory use--web_path
string option.
I.e. before v1 you started Centrifugo like this to use web interface:
centrifugo --config=config.json --web=/path/to/web/app
Now all you need to do is run:
centrifugo --config=config.json --web
And no need to download web interface repository at all! Just run command above and check http://localhost:8000.
If you don't want to use embedded web interface you can still specify path to your own web interface directory:
centrifugo --config=config.json --web --web_path=/path/to/web/app
- new
channels
API command – allows to get list of active channnels in project at moment (with one or more subscribers). message_send_timeout
option default value is now 0 (last default value was 60 seconds) i.e. send timeout is not used by default. This means that Centrifugo won't start lots of goroutines and timers for every message sent to client. This helps to drastically reduce memory allocations. But in this case it's recommended to keep Centrifugo behind properly configured reverse proxy like Nginx to deal with connection edge cases - slow reads, slow writes etc.- Centrifugo now sends pings into pure Websocket connections. Default value is 25 seconds and can be adjusted using
ping_interval
configuration option. Note that this option also sets SockJS heartbeat messages interval. This opens a road to set reasonable value for Nginxproxy_read_timeout
for/connection
location to mimic behaviour ofmessage_send_timeout
which is now not used by default - improvements in Redis Engine locking.
- tests now require Redis instance running to test Redis engine. Tests use Redis database 9 to run commands and if that database is not empty then tests will fail to prevent corrupting existing data.
- all dependencies now vendored.
- HTTP API endpoint now can handle json requests. Used in client written in Go at moment. Old behaviour have not changed, so this is absolutely optional.
- dependency packages updated to latest versions - websocket, securecookie, sockjs-go.
Critical bug fix for Redis Engine!
- fixed bug when entire server could unsubscribe from Redis channel when client closed its connection.
- Add TLS support. New flags are:
--ssl
- accept SSL connections. This requires an X509 certificate and a key file.--ssl_cert="file.cert"
- path to X509 certificate file.--ssl_key="file.key"
- path to X509 certificate key.
- Updated Dockerfile
- set expire on presence hash and set keys in Redis Engine. This prevents staling presence keys in Redis.
- add optional
client
field to publish API requests.client
will be added on top level of published message. This means that there is now a way to includeclient
connection ID to publish API request to Centrifugo (to get client connection ID callcentrifuge.getClientId()
in javascript). This client will be included in a message as I said above and you can compare current client ID in javascript withclient
ID in message and if both values equal then in some situations you will wish to drop this message as it was published by this client and probably already processed (via optimistic optimization or after successful AJAX call to web application backend initiated this message). - client limited channels - like user limited channels but for client. Only client with ID used in
channel name can subscribe on such channel. Default client channel boundary is
&
. If you have channels with&
in its name - then you must adapt your channel names to not use&
or run Centrifugo with another client channel boundary usingclient_channel_boundary
configuration file option. - fix for presence and history client calls - check subscription on channel before returning result or return Permission Denied error if not subscribed.
- handle interrupts - unsubscribe clients from all channels. Many thanks again to Mr Klaus Post.
- code refactoring, detach libcentrifugo real-time core from Centrifugo service.
Lots of internal refactoring, no API changes. Thanks to Mr Klaus Post (@klauspost) and Mr Dmitry Chestnykh (@dchest)
First release. New documentation.