-
Notifications
You must be signed in to change notification settings - Fork 315
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added some more info to discord stores trillions of messages
- Loading branch information
Showing
3 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
## Cassendra issue | ||
|
||
Discord ২০১৭ সালে ১২ Cassandra নোড এর মধ্যে billions of messages স্টোরে করে রেখেছিলো। ২০২২ সালে নোডের সংখ্যা দাঁড়ায় ১৭৭। | ||
|
||
<p align="center"> | ||
<img src="./images/cassendra-nodes.png" alt="cassendra-nodes"> | ||
</p> | ||
|
||
তখন Latency খুব বেশি বেড়ে গেলো সাথে Operation maintain করাও খুব costly হয়ে গেলো। | ||
|
||
```cql | ||
CREATE TABLE messages ( | ||
channel_id bigint, | ||
bucket int, | ||
message_id bigint, | ||
author_id bigint, | ||
content text, | ||
PRIMARY KEY ((channel_id, bucket), message_id) | ||
) WITH CLUSTERING ORDER BY (message_id DESC); | ||
``` | ||
|
||
উপরের Cassendra Query Language দিয়ে তৈরী একটি messages টেবিল, যেখানে প্রতিটি ID এর জন্য Snowflake ব্যবহার করা হয়েছে, মূলত chronologically sorting করার জন্য(যা UUID একটি limitation)। Channel ID এবং Bucket দিয়ে discord team, messages table কে পার্টিশন করেছিল। যার মানে দাঁড়ায় একটি channel এর সব মেসেজগুলোকে একসাথে স্টোরে করা হয়। তারপর ৩টি নোডে replicate করা হয়। | ||
|
||
(চলমান) |
Binary file added
BIN
+195 KB
sections/discord-stores-trillions-of-messages/images/cassendra-nodes.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.