1
0
Code Issues Pull Requests Projects Releases Wiki Activity GitHub Gitee

小改动

This commit is contained in:
2022-10-17 13:24:35 +08:00
parent 62d0eb8cea
commit 4bf451e337
7 changed files with 46 additions and 69 deletions

1
netease_music/stop.txt Normal file
View File

@@ -0,0 +1 @@
0

59
netease_music/todo.txt Normal file
View File

@@ -0,0 +1,59 @@
cd C:\Users\Coz\Desktop\tools\
cd /www/neteasemusic/tools
-- 本地
node index --utils song --min 1900000000 --max 2000000000 --order DESC #
node index --utils song --min 1900000000 --max 2000000000 --order ASC #
node index --utils song --min 1800000000 --max 1900000000 --order DESC #
-- Linux服务器
node index --utils song --min 1290000000 --max 1500000000 --order DESC #
-- Windows服务器
node index --utils song --min 400000000 --max 1000000000 --order ASC #
node index --utils song --min 0 --max 400000000 --order ASC #
#############################################################################################
-- 完成: 36000000-38000000 72000000-96000000 139000000-151000000
-- Windows 服务器
node index --utils album --min 134000000 --max 160000000 #
-- 本机
node index --utils album --min 0 --max 134000000 #
#############################################################################################
-- 完成: 38000000-55000000
-- Windows服务器
node index --utils artist --min 0 --max 55000000 #
#############################################################################################
-- 本机
node index --utils comment --min 1800000000 --max 2000000000 --order DESC --limit 2000 #
-- Windows服务器
node index --utils comment --min 1290000000 --max 1500000000 --order DESC --limit 2000 #
node index --utils comment --min 400000000 --max 1000000000 --order ASC --limit 2000 #
-- Linux服务器
node index --utils comment --min 0 --max 400000000 --order ASC --limit 2000 #
#############################################################################################
-- 完成: 40000000-460000000 500000000-560000000
node index --utils lyric --min 0 --max 1950000000 #
-- Windows服务器
node index --utils lyric --min 1800000000 --max 1950000000 #
node index --utils lyric --min 1950000000 --max 2000000000 #
node index --utils lyric --min 0 --max 400000000 #
-- 本机
node index --utils lyric --min 400000000 --max 1000000000 #
后期:
考虑歌曲别名 例如https://music.163.com/#/song?id=26830207
评论的更新
爬取歌单playlist
被删除的aritst和album回头再通过其他表中的数据反查回来
后续分区(不能在现有表上修改,只能重新查出数据到新表)
alter table song add partition (
PARTITION p1 VALUES LESS THAN ( 50000000),
PARTITION p2 VALUES LESS THAN (1000000000),
PARTITION p3 VALUES LESS THAN (1500000000),
PARTITION p4 VALUES LESS THAN (2000000000),
PARTITION p5 VALUES LESS THAN MAXVALUE
);