Welcome Guest ( Log In | Register )

1323 Pages V « < 297 298 299 300 301 > »   
Reply to this topicStart new topic
> 中文討論區: 變態道的原罪 [禁無意義的水跟簽到], The Chinese discussion thread of declining quality.

 
post Jan 3 2023, 07:10
Post #5961
yunyunxiaoxiaoyang



Casual Poster
****
Group: Catgirl Camarilla
Posts: 345
Joined: 12-January 16
Level 500 (Ponyslayer)


新加的几台机器的流量也已经趋于稳定了。
估计后续等待其他机器的 Static Ranges 填充完成前估计不会再做较大的变更了。

最近上线的 H@H 集群也算是一种新的尝试吧。
在观察了大量的日志后,确认到大陆的 Hitrate 在加成极高的情况下,即使是小盘也能产生非常可观的流量。
所以用 K8S 集群 + NFS 共享一块 500G 的硬盘 + IP 站群 + 独立公网带宽的方式,给每个容器都分了一个独立的公网 IP 挂了 H@H。
使用的是低 Ranges 高 Hitrate 的大陆流量机制实现快速出量,新端上线只需要大概 7 天就能就能产生非常可观的 Hitrate。
现在看着效果似乎还不错,就是不知道能稳定多久。

(IMG:[blog.wtf.day] https://blog.wtf.day/wp-content/uploads/2023/01/image-2023-01-03-342893.png)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 3 2023, 07:57
Post #5962
Concord_e



Casual Poster
***
Group: Gold Star Club
Posts: 227
Joined: 12-October 12
Level 184 (Lord)


被边检查收了5盒带回来的泡面,说是日本闹鸡瘟...
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 3 2023, 09:59
Post #5963
一捧_雪绒花



Lurker
Group: Recruits
Posts: 5
Joined: 25-November 22


但是如果不做大水逼提升等级,我连个人信息都没有资格完善😤这是个充满悖论的世界
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 3 2023, 10:21
Post #5964
Lady_Slayer



Member of the Bal'masqué
*********
Group: Catgirl Camarilla
Posts: 5,680
Joined: 20-December 16
Level 500 (Ponyslayer)


QUOTE(一捧_雪绒花 @ Jan 3 2023, 01:59) *

但是如果不做大水逼提升等级,我连个人信息都没有资格完善😤这是个充满悖论的世界


你不需要做大水逼。你只需要去honeycat的楼里边回复满5贴就够了。
如果你想参与今年的抽奖就慢慢累计20个post就行了。再往后就没有任何区别。
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 3 2023, 10:24
Post #5965
ilegs



我的老闆现在叫Kagoraphobia
******
Group: Catgirl Camarilla
Posts: 997
Joined: 14-February 20
Level 500 (Ponyslayer)


最近事情好多,没时间打hv没时间看本
阳康之后一个多星期了还在咳嗽,CT检查没问题,不知道什么时候能恢复
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 3 2023, 10:38
Post #5966
tsXor



Newcomer
**
Group: Members
Posts: 55
Joined: 20-July 20
Level 51 (Expert)


QUOTE(OnceForAll @ Jan 2 2023, 10:10) *

JuicyAd 我自己也曾经注册过用过。要想看广告计数、菠萝要想有收入,首先你得加载 JuicyAd 的 JS。我和现有的三个 EhViewer 分支的开发者/开发团队都很熟悉,他们明确告诉我了,EhViewer 根本不可能加载 JuicyAd 的 JS,使用 EhViewer 确确实实会让菠萝损失这部分 JuicyAd 收入。

其次,EH 的 H@H机制,同一页图片,分配给你的 URL 在可以预见的时间内不会刷新、只有你手动点击按钮更换 URL。所以不存在重复请求的情况。而且 EH 网页端,严格限制你同一时间能看的图片数(你如果想快速看很多图片,你需要使用 Multi Page Viewer,这个功能不是免费的、并不是 EH 所有访客都能使用);反而是 EhViewer,会毫无节制和限制的请求图片。我和现有的三个 EhViewer 分支的开发者/开发团队聊过了,他们中没有任何一人在他们 end 实现了 debounce 或 throttle。

更重要的是,EhViewer 下载本子的方式就是把整个画廊所有的图片都请求一遍、因此每张图片都要请求一次 EH API;反而你在 EH 上下载本子,要么使用种子、要么使用 Archive Download,下载一个画廊只需要请求 EH API 一次、不会对 EH API 造成压力。EhViewer 这种 bypass EH Archive Download 的行为本身就是错误的。


我用一个脚本叫Manga Loader,它可以将多页在一页上显示为一长条,而它就有throttle (IMG:[invalid] style_emoticons/default/smile.gif)
我的意思是,阅读器完全可以做到,而且似乎也不难 (IMG:[invalid] style_emoticons/default/mellow.gif)
所以3个EHV团队(团队!!!)没一个实现的,是因为组员不行还是EHV摞成屎山了 (IMG:[invalid] style_emoticons/default/ohmy.gif)

这是Manga Loader的throttle:

// 逻辑
var throttle = function(callback, limit) {
var wait = false;
return function() {
if (!wait) {
callback();
wait = true;
setTimeout(function() {
wait = false;
}, limit);
}
};
};

// 中间省略一大段

if (mLoadNum !== 'all') {
window.addEventListener('scroll', throttle(function(e) {
if (!resumeUrl) return; // exit early if we don't have a position to resume at
if(!UI.imageHeight) {
UI.imageHeight = getEl('.ml-images img').clientHeight;
}
var scrollBottom = document.body.scrollHeight - ((document.body.scrollTop || document.documentElement.scrollTop) + window.innerHeight);
if (scrollBottom < UI.imageHeight * 2) {
log('user scroll nearing end, loading more images starting from ' + resumeUrl);
loadNextPage(resumeUrl);
}
}, 100));
}

也就是说其实他们实现一个类似的throttle逻辑然后给加载函数套上throttle就行了 (IMG:[invalid] style_emoticons/default/biggrin.gif)
我再强调,这是三个团队,团队!!!他们有啥做不到的 (IMG:[invalid] style_emoticons/default/mellow.gif)

This post has been edited by tsXor: Jan 3 2023, 10:47
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 3 2023, 10:54
Post #5967
yunyunxiaoxiaoyang



Casual Poster
****
Group: Catgirl Camarilla
Posts: 345
Joined: 12-January 16
Level 500 (Ponyslayer)


再次收到了 Grafana 的无流量告警,然而这次是不可抗力因素的无流量。

我之前就想到过一个问题:
如果 H@H 服务器在对外网络一切正常并且在持续提供服务的情况下,H@H 客户端到 rpc 之间的链路被打了或者丢包过高会怎样。
不过结果基本上也能猜到,就算到其他 H@H 客户端和用户的连接正常,它也依旧会掉线。

hivelocity 荷兰走 cogentco 法兰克福到大陆电信,现在的情况是 cogentco 法兰克福到电信的带宽被打满了...
虽然电信对外网络正常,但因为 H@H 连接不上 rpc ,所以直接掉线了。

H@H 的 rpc 虽然有多台服务器,但毕竟几台都在 hivelocity 荷兰,没有跨地域高可用,网络炸了也只能干等了。

(IMG:[blog.wtf.day] https://blog.wtf.day/wp-content/uploads/2023/01/image-2023-01-03-342896.png)
(IMG:[blog.wtf.day] https://blog.wtf.day/wp-content/uploads/2023/01/image-2023-01-03-342898.png)

This post has been edited by VVFGV: Jan 3 2023, 11:05
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 3 2023, 10:58
Post #5968
chjj30



🦘跳海魔女🧙王世坚🌊
***********
Group: Catgirl Camarilla
Posts: 10,914
Joined: 5-January 14
Level 500 (Ponyslayer)


QUOTE(ilegs @ Jan 3 2023, 16:24) *

最近事情好多,没时间打hv没时间看本
阳康之后一个多星期了还在咳嗽,CT检查没问题,不知道什么时候能恢复


这两年,我们能继续活着就是最大的成功。
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 3 2023, 11:12
Post #5969
Deicide betray



Newcomer
**
Group: Gold Star Club
Posts: 76
Joined: 30-August 15
Level 500 (Ponyslayer)


QUOTE(VVFGV @ Jan 3 2023, 13:10) *

然而大陆一人要搞到 2 条以上的带公网 IP 宽带的难度还是挺大的...
能搞到这么多宽带的,
1 是土豪,然而他们基本上都不懂技术。
2 是企业自拉商宽或者企业专线的,但企业一般不让你这么搞(除非你是网管可以走后门)。
3 是专搞 PCDN 的,但跑多了容易因为流量过大被管局盯上然后封宽带。

所以比起双服务器,最稳定的方法是提高单服务器的上传速度,然后把硬盘加大。
从现在大陆 H@H 节点的奇葩负载来看,50M + 6000 Ranges 的单根大陆宽带能轻松达到 2000 Hitrate/min。


上千兆宽带!上百兆上行提速包!
当年在日本200M上下行对等,回国后傻眼了
不过在日本很难吃到大陆那么多流量,算是有得有失了

好羡慕VVFGV甚至能搞K8S集群
我玩玩docker都千难万难,K8S更是只了解了个皮毛
接下来准备上2288Hv3尝试将计算服务和存储服务分开
感觉Truenas Scale的docker好像不如直接在debian上跑得稳定 (IMG:[invalid] style_emoticons/default/blink.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 3 2023, 11:47
Post #5970
ericeric91



Sleepy Poster
*********
Group: Catgirl Camarilla
Posts: 5,439
Joined: 6-July 10
Level 500 (Ponyslayer)


QUOTE(tsXor @ Jan 3 2023, 16:38) *

我用一个脚本叫Manga Loader,它可以将多页在一页上显示为一长条,而它就有throttle (IMG:[invalid] style_emoticons/default/smile.gif)
我的意思是,阅读器完全可以做到,而且似乎也不难 (IMG:[invalid] style_emoticons/default/mellow.gif)
所以3个EHV团队(团队!!!)没一个实现的,是因为组员不行还是EHV摞成屎山了 (IMG:[invalid] style_emoticons/default/ohmy.gif)

也就是说其实他们实现一个类似的throttle逻辑然后给加载函数套上throttle就行了 (IMG:[invalid] style_emoticons/default/biggrin.gif)
我再强调,这是三个团队,团队!!!他们有啥做不到的 (IMG:[invalid] style_emoticons/default/mellow.gif)

道德問題更大,它們可是不尊重 E 變態天條的

QUOTE(Deicide betray @ Jan 3 2023, 17:12) *

上千兆宽带!上百兆上行提速包!
当年在日本200M上下行对等,回国后傻眼了
不过在日本很难吃到大陆那么多流量,算是有得有失了

好羡慕VVFGV甚至能搞K8S集群
我玩玩docker都千难万难,K8S更是只了解了个皮毛
接下来准备上2288Hv3尝试将计算服务和存储服务分开
感觉Truenas Scale的docker好像不如直接在debian上跑得稳定 (IMG:[invalid] style_emoticons/default/blink.gif)

做壞事是人類前行的最大動力(X
User is online!Profile CardPM
Go to the top of the page
+Quote Post

 
post Jan 3 2023, 12:06
Post #5971
yunyunxiaoxiaoyang



Casual Poster
****
Group: Catgirl Camarilla
Posts: 345
Joined: 12-January 16
Level 500 (Ponyslayer)


QUOTE(Deicide betray @ Jan 3 2023, 17:12) *

上千兆宽带!上百兆上行提速包!
当年在日本200M上下行对等,回国后傻眼了
不过在日本很难吃到大陆那么多流量,算是有得有失了

好羡慕VVFGV甚至能搞K8S集群
我玩玩docker都千难万难,K8S更是只了解了个皮毛
接下来准备上2288Hv3尝试将计算服务和存储服务分开
感觉Truenas Scale的docker好像不如直接在debian上跑得稳定 (IMG:[invalid] style_emoticons/default/blink.gif)


其实日本宽带在 6000 个 Ranges 的情况下流量还是相当可观的,Hitrate 全球第二。
我看朋友 6000 Ranges 的 nuro 在周末跑过 800Hit/min, 峰值速度有时单机就能达到 13MB/s(是大 B 哦)

不要玩 K8S
不要玩 K8S
不要玩 K8S

(IMG:[blog.wtf.day] https://blog.wtf.day/wp-content/uploads/2023/01/image-2023-01-03-342903.jpg)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 3 2023, 12:41
Post #5972
tsXor



Newcomer
**
Group: Members
Posts: 55
Joined: 20-July 20
Level 51 (Expert)


QUOTE(ericeric91 @ Jan 3 2023, 04:47) *

道德問題更大,它們可是不尊重 E 變態天條的
做壞事是人類前行的最大動力(X


然而Manga Loader作为一个普适性的脚本都能写个throttle (IMG:[invalid] style_emoticons/default/blink.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 3 2023, 14:03
Post #5973
james58899



Newcomer
**
Group: Members
Posts: 61
Joined: 25-February 16
Level 198 (Ascended)


QUOTE(PrincessKaguya @ Jan 3 2023, 05:26) *

3. EHViewer 最令人討厭的是它請求 Thumbnails 的方式
之前的亞洲畫廊延遲
你可以把 EHV 視為其中一個主要罪魁禍首


具體來說它幹了什麼?
不就只是縮圖而已嗎,怎麼會影響那麼大 (IMG:[invalid] style_emoticons/default/huh.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 3 2023, 14:03
Post #5974
cs987987



笑看牆國人礦小粉紅
*********
Group: Gold Star Club
Posts: 7,152
Joined: 11-March 12
Level 500 (Ponyslayer)


QUOTE(hc br @ Jan 3 2023, 11:39) *

其實是打*20,

基礎裝備掉落的品質高,

你賣掉廢裝的錢更多,也更容易出好裝,

當年我當戰士打*20出了件冰魔光就賣了78M,

用那個錢開了一堆HATH環還課了金星,

不過當年出高價買裝的那位大爺已經毀裝退坑了,懷念先人....


2XX打X20就是痛苦
要簡單就是X1速刷拿獎盃
要至少會有L掉落就X7
X20不是簡單刷錢法

QUOTE(Astia @ Jan 3 2023, 13:04) *

菠萝今年看来下狠手了,不知用了什么检测方法,元旦后我的爬虫返回来全是403错误。

虽然我完全理解任何站长都会太欢迎的爬虫,我也十分感激站长在给我大信封后依然对此睁一只眼闭一只眼。但我
这个小虫一直以来也是按照“最低负载,最大公益,不爬图片,不作伪装”的哲学去设计的,相信对E站带来的长
收益大于损失。

此番限制以后,我得严肃思考究竟是否需要加入伪装机制,还是继续找一些能钻的窟窿,尽可能在保持道德上的纯
洁性,抑或就此打住,将榜位让给守规则的网友们继续发挥比较好……


你這說法對網站來說就是
你搶劫
說我只不過搶你幾元又不是搶你身家一樣
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 3 2023, 15:02
Post #5975
Lady_Slayer



Member of the Bal'masqué
*********
Group: Catgirl Camarilla
Posts: 5,680
Joined: 20-December 16
Level 500 (Ponyslayer)


QUOTE(Astia @ Jan 2 2023, 23:04) *

菠萝今年看来下狠手了,不知用了什么检测方法,元旦后我的爬虫返回来全是403错误。

虽然我完全理解任何站长都会太欢迎的爬虫,我也十分感激站长在给我大信封后依然对此睁一只眼闭一只眼。但我
这个小虫一直以来也是按照“最低负载,最大公益,不爬图片,不作伪装”的哲学去设计的,相信对E站带来的长
收益大于损失。

此番限制以后,我得严肃思考究竟是否需要加入伪装机制,还是继续找一些能钻的窟窿,尽可能在保持道德上的纯
洁性,抑或就此打住,将榜位让给守规则的网友们继续发挥比较好……


我看你好像只有eht的榜,你不会是爬图片然后批量做种吧。。。
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 3 2023, 15:21
Post #5976
kolosyouxo



Casual Poster
****
Group: Gold Star Club
Posts: 291
Joined: 6-September 12
Level 500 (Godslayer)


1个多星期了低烧出汗还没好,后续咳嗽时间估计得更长
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 3 2023, 15:43
Post #5977
Zes



臭鼬娘漢化組組長
*******
Group: Catgirl Camarilla
Posts: 2,039
Joined: 25-April 15
Level 475 (Dovahkiin)


QUOTE(Concord_e @ Jan 3 2023, 13:57) *

被边检查收了5盒带回来的泡面,说是日本闹鸡瘟...

我比較好奇帶本子會不會被收走 (IMG:[invalid] style_emoticons/default/huh.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 3 2023, 15:49
Post #5978
lf2000i



Casual Poster
***
Group: Members
Posts: 105
Joined: 9-June 10
Level 381 (Godslayer)


QUOTE(hc br @ Jan 3 2023, 05:39) *

其實是打*20,

基礎裝備掉落的品質高,

你賣掉廢裝的錢更多,也更容易出好裝,

當年我當戰士打*20出了件冰魔光就賣了78M,

用那個錢開了一堆HATH環還課了金星,

不過當年出高價買裝的那位大爺已經毀裝退坑了,懷念先人....


感謝撰寫攻略和發放免費藥水
回鍋照著走,今天終於順利打贏×20難度的遭遇戰了


QUOTE(cs987987 @ Jan 3 2023, 14:03) *

2XX打X20就是痛苦
要簡單就是X1速刷拿獎盃
要至少會有L掉落就X7
X20不是簡單刷錢法



今天剛升200
200初頭打×20遭遇戰就抖抖的
競技場我也是選打×7
ROB都不敢碰 (IMG:[invalid] style_emoticons/default/cry.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 3 2023, 15:58
Post #5979
chjj30



🦘跳海魔女🧙王世坚🌊
***********
Group: Catgirl Camarilla
Posts: 10,914
Joined: 5-January 14
Level 500 (Ponyslayer)


QUOTE(ZΕS @ Jan 3 2023, 21:43) *

我比較好奇帶本子會不會被收走 (IMG:[invalid] style_emoticons/default/huh.gif)


含有肉制品的物品被禁止携带入境是正常的,比如月饼啊火腿啊粽子啊这些,方便面如果包含肉制品也会遇到类似
的问题,这和本子完全不是一回事。
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 3 2023, 16:12
Post #5980
Lady_Slayer



Member of the Bal'masqué
*********
Group: Catgirl Camarilla
Posts: 5,680
Joined: 20-December 16
Level 500 (Ponyslayer)


QUOTE(ZΕS @ Jan 3 2023, 07:43) *

我比較好奇帶本子會不會被收走 (IMG:[invalid] style_emoticons/default/huh.gif)


任何入境的图书都是拆封的,因为海关会先拆开来康一遍,即便是完全一样的东西。以前我买过很多全年龄的漫画
,18禁的可想而知嗷。
而且也不是没出过本子被实名通报的新闻呀,报纸上都有。肉身带本的话如果数量不多听说夹在托运行李里被查的
概率会小一些?

This post has been edited by dongmian: Jan 3 2023, 16:12
User is offlineProfile CardPM
Go to the top of the page
+Quote Post


1323 Pages V « < 297 298 299 300 301 > » 
Reply to this topicStart new topic
5 User(s) are reading this topic (2 Guests and 1 Anonymous Users)
2 Members: jodax, T-L-F

 


Lo-Fi Version Time is now: 24th August 2025 - 10:32