我正在开发一款能够处理数百万玩家的在线游戏服务器。现在游戏需要排行榜,并希望能够向玩家显示当前位置以及当前玩家位置附近的其他玩家以及玩家朋友的位置。
现在我已经在MySQL中完成了这些工作并且我知道它在技术上是如何可能的,但我想,因为这是许多在线游戏的常见做法,必须有现有的库或数据库,特别是为此目的?
任何人都可以告诉我哪些数据库最适合这些类型的查询,以及可能已经完成了大量此类工作的任何已有的库?具有API访问权限的第三方服务也可以。
希望得到一些好的建议,谢谢!
编辑:
为了澄清,我需要一个可以存储数百万个条目的数据库(到目前为止MySQL是有用的),我可以轻松获得排名结果。例如,如果我从“排行榜”表中获取特定行,我需要知道该行具有哪个排名。无论db的大小如何,此查询都必须小于500毫秒。
或者,使用当前排名信息更新表的方法可能会很长,因为此更新查询不会锁定整个表,并且更新查询将在30秒内运行。
对于使用哪种数据库/机制或第三方服务的任何想法都将非常感谢!
答案 0 :(得分:31)
单个磁盘搜索大约15毫秒,服务器级磁盘可能稍微少一点。小于500毫秒的响应时间限制了大约30个随机磁盘访问。那不是很多。
在我的小笔记本电脑上,我有一个带
的开发数据库root@localhost [kris]> select @@innodb_buffer_pool_size/1024/1024 as pool_mb;
+--------------+
| pool_mb |
+--------------+
| 128.00000000 |
+--------------+
1 row in set (0.00 sec)
和一个缓慢的笔记本电脑磁盘。我用
创建了一个得分表root@localhost [kris]> show create table score\G
*************************** 1. row ***************************
Table: score
Create Table: CREATE TABLE `score` (
`player_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`score` int(11) NOT NULL,
PRIMARY KEY (`player_id`),
KEY `score` (`score`)
) ENGINE=InnoDB AUTO_INCREMENT=2490316 DEFAULT CHARSET=latin1
1 row in set (0.00 sec)
随机整数得分和连续的player_id值。我们有
root@localhost [kris]> select count(*)/1000/1000 as mrows from score\G
*************************** 1. row ***************************
mrows: 2.09715200
1 row in set (0.39 sec)
数据库在索引(score, player_id)
中以score
顺序维护对score
,因为InnoDB索引中的数据存储在BTREE中,而行指针(数据指针)是主键值,以便定义KEY (score)
在内部最终为KEY(score, player_id)
。我们可以通过查看分数检索的查询计划来证明:
root@localhost [kris]> explain select * from score where score = 17\G
*************************** 1. row ***************************
id: 1
select_type: SIMPLE
table: score
type: ref
possible_keys: score
key: score
key_len: 4
ref: const
rows: 29
Extra: Using index
1 row in set (0.00 sec)
如您所见,key: score
与Using index
一起使用,这意味着无需数据访问。
给定常量player_id
的排名查询在我的笔记本电脑上只需500毫秒:
root@localhost [kris]> select p.*, count(*) as rank
from score as p join score as s on p.score < s.score
where p.player_id = 479269\G
*************************** 1. row ***************************
player_id: 479269
score: 99901
rank: 2074
1 row in set (0.50 sec)
拥有更多内存和更快的盒子,它可以更快,但它仍然是一个相对昂贵的操作,因为该计划很糟糕:
root@localhost [kris]> explain select p.*, count(*) as rank from score as p join score as s on p.score < s.score where p.player_id = 479269;
+----+-------------+-------+-------+---------------+---------+---------+-------+---------+--------------------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+-------------+-------+-------+---------------+---------+---------+-------+---------+--------------------------+
| 1 | SIMPLE | p | const | PRIMARY,score | PRIMARY | 4 | const | 1 | |
| 1 | SIMPLE | s | index | score | score | 4 | NULL | 2097979 | Using where; Using index |
+----+-------------+-------+-------+---------------+---------+---------+-------+---------+--------------------------+
2 rows in set (0.00 sec)
如您所见,计划中的第二个表是索引扫描,因此查询会随着玩家数量的增加而线性减慢。
如果你想要一个完整的排行榜,你需要省略where子句,然后你得到两次扫描和二次执行时间。所以这个计划完全崩溃了。
时间到了程序:
root@localhost [kris]> set @count = 0;
select *, @count := @count + 1 as rank from score where score >= 99901 order by score desc ;
...
| 2353218 | 99901 | 2075 |
| 2279992 | 99901 | 2076 |
| 2264334 | 99901 | 2077 |
| 2239927 | 99901 | 2078 |
| 2158161 | 99901 | 2079 |
| 2076159 | 99901 | 2080 |
| 2027538 | 99901 | 2081 |
| 1908971 | 99901 | 2082 |
| 1887127 | 99901 | 2083 |
| 1848119 | 99901 | 2084 |
| 1692727 | 99901 | 2085 |
| 1658223 | 99901 | 2086 |
| 1581427 | 99901 | 2087 |
| 1469315 | 99901 | 2088 |
| 1466122 | 99901 | 2089 |
| 1387171 | 99901 | 2090 |
| 1286378 | 99901 | 2091 |
| 666050 | 99901 | 2092 |
| 633419 | 99901 | 2093 |
| 479269 | 99901 | 2094 |
| 329168 | 99901 | 2095 |
| 299189 | 99901 | 2096 |
| 290436 | 99901 | 2097 |
...
因为这是一个程序性计划,所以它不稳定:
ORDER BY
子句有效,因为它不排序,但使用索引。只要看到using filesort
,计数器值就会大幅关闭。这个解决方案最接近于NoSQL(读取:程序)数据库作为执行计划所做的事情。
我们可以在子查询中稳定NoSQL,然后切出我们感兴趣的部分,但是:
root@localhost [kris]> set @count = 0;
select * from (
select *, @count := @count + 1 as rank
from score
where score >= 99901
order by score desc
) as t
where player_id = 479269;
Query OK, 0 rows affected (0.00 sec)
+-----------+-------+------+
| player_id | score | rank |
+-----------+-------+------+
| 479269 | 99901 | 2094 |
+-----------+-------+------+
1 row in set (0.00 sec)
root@localhost [kris]> set @count = 0;
select * from (
select *, @count := @count + 1 as rank
from score
where score >= 99901
order by score desc
) as t
where rank between 2090 and 2100;
Query OK, 0 rows affected (0.00 sec)
+-----------+-------+------+
| player_id | score | rank |
+-----------+-------+------+
| 1387171 | 99901 | 2090 |
| 1286378 | 99901 | 2091 |
| 666050 | 99901 | 2092 |
| 633419 | 99901 | 2093 |
| 479269 | 99901 | 2094 |
| 329168 | 99901 | 2095 |
| 299189 | 99901 | 2096 |
| 290436 | 99901 | 2097 |
+-----------+-------+------+
8 rows in set (0.01 sec)
子查询将前一个结果集实现为一个名为t的临时表,然后我们可以在外部查询中访问它。因为它是一个临时表,在MySQL中它没有索引。这限制了外部查询中有效的可能性。
请注意两个查询如何满足您的时序约束。这是计划:
root@localhost [kris]> set @count = 0; explain select * from ( select *, @count := @count + 1 as rank from score where score >= 99901 order by score desc ) as t where rank between 2090 and 2100\G
Query OK, 0 rows affected (0.00 sec)
*************************** 1. row ***************************
id: 1
select_type: PRIMARY
table: <derived2>
type: ALL
possible_keys: NULL
key: NULL
key_len: NULL
ref: NULL
rows: 2097
Extra: Using where
*************************** 2. row ***************************
id: 2
select_type: DERIVED
table: score
type: range
possible_keys: score
key: score
key_len: 4
ref: NULL
rows: 3750
Extra: Using where; Using index
2 rows in set (0.00 sec)
但是对于排名不佳的玩家来说,两个查询组件(内部,DERIVED
查询和外部BETWEEN
约束)都会变慢,然后严重违反时间限制。
root@localhost [kris]> set @count = 0; select * from ( select *, @count := @count + 1 as rank from score where score >= 0 order by score desc ) as t;
...
2097152 rows in set (3.56 sec)
描述性方法的执行时间是稳定的(仅取决于表大小):
root@localhost [kris]> select p.*, count(*) as rank
from score as p join score as s on p.score < s.score
where p.player_id = 1134026;
+-----------+-------+---------+
| player_id | score | rank |
+-----------+-------+---------+
| 1134026 | 0 | 2097135 |
+-----------+-------+---------+
1 row in set (0.53 sec)
你的电话。
答案 1 :(得分:16)
我知道这是一个老问题,但我确实喜欢盯着这些问题。给定数据的比率 - &gt;需要查询速度,可以使用一些非传统的技巧,这些技巧需要更多的编码工作,但可以真正提高查询性能。
首先,我们应该用水桶跟踪分数。我们希望桶列表(这个名字很棒!)足够小,可以轻松保存在内存中,并且足够大,以至于桶不会经常(相对而言)受到影响。这为我们提供了更大的并发性以避免锁定问题。
你必须根据你的负载来判断如何拆分这些存储桶,但我认为你要专注于拥有尽可能多的存储桶,这些存储桶很容易适应内存并快速添加。
为了适应这种情况,我的score_buckets
表将具有以下结构:
minscore, maxscore, usercount; PK(minscore, maxscore)
我们必须跟踪我们的用户,并且可能会完成:
userid, score, timestamp
#(etc., etc. that we don't care about for this part of the problem)
为了有效地对此进行迭代以获得分数计数,我们需要得分的索引。时间戳只是我在我的例子中用来打破平局的东西,所以我有一个明确的排序。如果您不需要它,请抛弃它 - 它正在使用空间,这将影响查询时间。目前:索引(得分,时间戳)。
将触发器添加到用户表。插入时:
update score_buckets sb
set sb.usercount = sb.usercount + 1
where sb.minscore <= NEW.score
and sb.maxscore >= NEW.score
更新时
update score_buckets sb
set sb.usercount = sb.usercount - 1
where sb.minscore <= OLD.score
and sb.maxscore >= OLD.score
update score_buckets sb
set sb.usercount = sb.usercount + 1
where sb.minscore <= NEW.score
and sb.maxscore >= NEW.score
删除时
update score_buckets sb
set sb.usercount = sb.usercount - 1
where sb.minscore <= OLD.score
and sb.maxscore >= OLD.score
$usersBefore = select sum(usercount)
from score_buckets
where maxscore < $userscore;
$countFrom = select max(maxscore)
from score_buckets
where maxscore < $userscore;
$rank = select count(*) from user
where score > $countFrom
and score <= $userscore
and timestamp <= $userTimestamp
使用各种数量的桶进行基准测试,每次将它们加倍或减半。您可以快速编写一个桶加倍/减半脚本,以便加载测试。更新桶可以减少用户得分指数的扫描,并在更新分数时减少锁定/事务争用。更多的桶消耗更多的内存。要选择一个数字,请使用10,000个桶。理想情况下,您的存储桶将覆盖整个分数范围,每个存储桶的计数用户数大致相同。如果您对分布图得分遵循某种曲线,请使您的铲斗分布遵循该曲线。
这个理论与两层skip list类似。
答案 2 :(得分:3)
我最近读过一篇关于用Redis解决这类问题的文章。您仍然可以使用MySQL作为基本商店,但是您可以将未排序的结果缓存在Redis中并实时更新排名。链接可以是found here。本文的最后三分之一是关于键控排序,就像你有一个排名列表。
答案 3 :(得分:2)
对数百万条目进行排序可能听起来像是很多工作,但显然不是。在我的计算机上排序10 ^ 6个完全随机的条目大约需要3秒钟(只有一个带有Atom CPU的老式EeePC(我认为是第一代),1.6GHz)。
使用良好的排序算法,在最坏的情况下排序有O(n * log(n)),所以如果你有10 ^ 9或更多的条目它就不重要了。大多数情况下,排名列表已经几乎排序(从之前的排名),导致运行时更可能是O(n)。
所以,不要再担心了!唯一真正的问题是,大多数DBMS无法直接访问第1000个条目。因此,像SELECT ... LIMIT 1000, 5
这样的查询必须查询至少1005个条目并跳过前1000个条目。但这里的解决方案也是如此。只需将rank
存储为每行的冗余列,为其添加索引并每15分钟(或每5分钟,30分钟,1小时或对您的应用程序有意义的任何内容)计算它。有了它,按排名的所有查询只是简单的二级索引查找(大约是O(log(N))),它非常快,每个查询只需要几毫秒(网络在这里是瓶颈,而不是数据库)。 p>
PS:你评论了另一个答案,你无法缓存已排序的条目,因为它们对你的记忆来说太大了。假设你只用两个64位整数缓存(user_id,rank)元组(32位也足够了!),你需要少于8 MB的内存来存储10 ^ 6个条目。你确定没有足够的内存吗?
所以,请不要尝试优化显然不是瓶颈的东西......(
)答案 4 :(得分:1)
您可以在播放器表格中冗余地存储每个玩家的等级,这样您就不必进行任何连接操作。每次重新计算排行榜时,玩家表格也应该更新。
答案 5 :(得分:0)
我可以想到两种方法来解决这个问题:
第一种方法:批量更新:
第二种方法:新表