Turms is the most advanced open-source instant messaging engine for 100K~10M concurrent users in the world. Please refer to Turms Documentation (no English version for now) for details.
(Version of demo servers: ghcr.io/turms-im/turms-admin:latest
, ghcr.io/turms-im/turms-gateway:latest
, ghcr.io/turms-im/turms-service:latest
)
-
turms-admin: http://playground.turms.im:6510
Both the account and the password are:
guest
. (The account is allowed to query and add data, but is not allowed to update and delete data.) -
turms-gateway: http://playground.turms.im:10510 (port for WebSocket access) and http://playground.turms.im:11510 (port for TCP access)
-
turms-service (Admin API in dev environment with fake data supported): http://playground.turms.im:8510
-
Prometheus: http://playground.turms.im:9090; Grafana: http://playground.turms.im:3000
You can use any turms-client-(java/js/swift) implementation to send requests to turms-gateway and interact with other users.
In addition, Playground is set up automatically by just one command: ENV=dev docker-compose -f docker-compose.standalone.yml --profile monitoring up --force-recreate -d
Running the following commands to setup a minimum viable cluster (including turms-gateway, turms-service and turms-admin) and its dependent servers (MongoDB sharded cluster and Redis) automatically:
git clone --depth 1 https://github.com/turms-im/turms.git
cd turms
docker plugin install grafana/loki-docker-driver:latest --alias loki --grant-all-permissions
docker-compose -f docker-compose.standalone.yml up --force-recreate
After the cluster is set up, you can visit turms-admin at http://localhost:6510, and enter the account and password (turms
by default). If you log in successfully, it means that the cluster of Turms has been setup successfully.
You can also apply the Terraform modules provided by Turms to quickly purchase cloud services and set up a turms cluster (uses spot instances by default). After running terraform apply
, wait for about 3~15 minutes (Alibaba Cloud ECS is slow to pull ghcr images), and then visit http://<public IP>:6510
, if you can access turms-admin, it means that the turms cluster has been set up successfully.
(Note: The following commands will automatically purchase cloud services and deduct the corresponding fees from your account)
git clone --depth 1 https://github.com/turms-im/turms.git
cd turms/terraform/alicloud/playground
export ALICLOUD_ACCESS_KEY=<your_access_key>
export ALICLOUD_SECRET_KEY=<your_secret_key>
terraform init
terraform apply
The architecture of Turms depends on the fanout read design for creating inboxes (or message timelines), and Turms supports push model, pull model, and push-pull model to be aware of the changes of business data (For details, Business Data Change Awareness). Most of the other design details also come from commercial IM projects.
And compared to many projects with obsolete technology stacks, Turms is also the only open source IM solution that is based on modern architecture and modern technology and is suitable for medium to large scale applications.
In addition, architecture design is an art of trade-off. Some IM products take rich features as their slogan at the cost of no support for medium to large scale applications (they are only suitable for team communications). However, Turms takes extreme performance as the first priority and supports complete (rather than rich) IM features. Please refer to Turms Schema Design and [Observability][https://turms-im.github.io/docs/for-developers/observability.html] for details.
- Support a complete set of IM features. Turms supports almost all IM features supported by commercial instant messaging products and no restrictions on business features. (The data analysis feature will be supported when turms-data is released in the future. Please refer to Turms Data Analysis for details)
- (Extensibility) Turms supports two approaches to extend: configuration properties and custom plugins. Of course, you can also modify the source code. For example, the plugin turms-plugin-minio based on turms-plugin is used to interact with MinIO server.
- (Flexibility) Turms provides hundreds of configuration properties for developers to meet various requirements. And most of the properties can be updated at the cluster level when the cluster is running without performance loss.
- (Agility) Support updating Turms servers without the users' awareness of shutdown to support rapid iteration
- (Scalability) The Turms server is stateless to be scaled out; Support multi-active across data centers
- (Deployability) Support container deployment to facilitate integration (CI/CD) with cloud services
- (Observability) Support relatively complete features of observability for business analysis and troubleshoot
- (Scalability) Support medium to large scale instant messaging applications, and there is no need to refactor even if the application becomes large from medium-scale (There is still a lot of optimization work to be done for large applications, but Turms servers are easy to upgrade)
- (Simplicity) The Turms architecture is lightweight, which makes Turms easy to learn and redevelop. Please refer to Turms Architecture Design for details)
- Turms depends on the MongoDB sharded cluster to support request routing (such as read-write separation) for medium to large scale applications
-
Observable system (Please refer to Observability for details)
-
Log (for events): Turms provides three types of logs: monitoring log, business log, and statistics log
-
Metrics (for aggregable data). It reflects the real-time status of the system and business data
-
Tracing
Note that the Turms server will provide more monitoring features that can be implemented efficiently as much as possible, but will not provide some common features that have a great impact on performance (such as DAU). For this kind of extended feature, you can implement them by offline or real-time analysis of the logs or metrics of Turms servers.
-
-
Extreme performance We always try to archive extreme performance in the implementation of all business workflows. Please refer to the source code for details.
- (Network)
- (I/O) The Turms server is a reactive application. All network I/O operations (e.g. database call, Redis call, service discovery call, RPC) are based on Netty to achieve non-blocking I/O. Therefore, the Turms server can make full use of system resources (while traditional servers can't)
- (Encoding) Protobuf is used to encode the traffic data between Turms servers and turms clients; Custom encoding without any redundant data is used to encode the RPC requests and responses between Turms servers.
- (Thread) The Turms server has an excellent thread model, and its thread number is constant, which is independent of the number of online users and the number of requests. Since the default number of threads in the access layer of the Turms server is the same as that of the CPU processors, the Turms server can make full use of the CPU cache, and greatly reduce the cost of thread context switching compared with traditional servers
- (Memory) The Turms server allocates heap or direct memory smartly according to its usage to reduce the memory footprint.
- (Cache) The Turms server makes full use of the local memory cache
Name | Summary |
---|---|
turms-gateway | A gateway (push server) interacting with clients, and responsible for user authentication, session management, push notification, and load balancing for turms-service servers |
turms-service | Implements IM business logic, and provides admins with business data management, RBAC, cluster management |
turms-admin | Provides features such as business data management and cluster management for Turms server cluster |
turms-client-js | Exposes APIs to interact with the Turms server to implement IM features and underlying driver logic (such as heartbeat). You don't need to know its implementations because it's transparent for developers |
turns-client-kotlin | ditto |
turns-client-swift | ditto |
turms-plugin | When events (such as user going online/offline, message receiving and forwarding, etc) are fired, turms-gateway and turms-service will trigger corresponding custom plugins to facilitate developers to implement custom features |
turms-plugin-minio | A plugin based on turms-plugin for the storage service, and is used to interact with MinIO server |
turms-data (TODO) | Not yet published. An independent data analysis system based on Flink ecosystem is responsible for business data analysis, and provides underlying data support for the statistics APIs of turms for admins and operational reports of turms-admin |
The architecture design of Turms is derived from commercial instant messaging architectures. The following figure shows the reference architecture of Turms. The services framed by dotted lines are optional services, while the services framed by solid lines are required services. Please refer to Turms Architecture Design for details.
Rocket.Chat | Turms | |
---|---|---|
Application scenarios | Team communications | General medium to large scale IM scenarios (Making Turms possible for redevelopment) |
Advantages | 1. The client implementation is cross-platform and out-of-the-box for users 2. Support a complete and unified UI suite 3. Support rich advanced instant messaging features, such as audio and video conference, file sharing, screen sharing 4. Provide commercial users with technical support |
The advantages are the features described above |
Disadvantages | 1. Only suitable for small-scale applications 2. Narrow application scenarios and hard to customize |
1. Only meets the general instant messaging needs, and does not provide some advanced features (for example, no support for audio and video conferencing) 2. The admin system does not provide advanced operation features currently 3. No support for specific business logic and UI 4. Servers are reactive, which is challenging for some developers |
Comment | It is highly recommended to use Rocket.Chat for team communications | Although both are open source IM projects, they have completely different application scenarios. Turms is a general instant messaging engine for medium to large scale instant messaging applications. You cannot just hand Turms to your customers (just as most products don't let customers write SQL statements to query business data in the database). However, based on Turms, you can implement all the open-source instant messaging projects on GitHub more efficiently, comprehensively, and extensively |
Considering the positioning of Turms, we do not plan to provide client demo with UI and specific business logic in the near future because:
- It is easy for developers to verify the business features supported by Turms. If you just want to test the business features of Turms, you can run the Turms server without even typing a line of code. Only ten lines of code can realize the login, sending messages, sending friends' requests and other business features, or modify properties to customize various requirements.
- The design and implementation of the demo are closely related to the specific business scenarios, specific programming language, specific technical architecture, and specific OS while Turms has been committed to efficiently meeting various complex and challenging instant messaging scenarios, and we don't want to publish a demo that limits the imagination of developers. And developing and maintaining a demo is also very time-consuming and will slow down the progress of the development of Turms.