-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
2587 lines (1350 loc) · 97.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html class="theme-next muse use-motion" lang="zh-Hans">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<meta http-equiv="Cache-Control" content="no-transform" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<link href="/lib/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css" />
<link href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic&subset=latin,latin-ext" rel="stylesheet" type="text/css">
<link href="/lib/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css" />
<link href="/css/main.css?v=5.1.1" rel="stylesheet" type="text/css" />
<meta name="keywords" content="Hexo, NexT" />
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico?v=5.1.1" />
<meta name="description" content="爱生活的码农">
<meta property="og:type" content="website">
<meta property="og:title" content="三月的雨">
<meta property="og:url" content="http://yoursite.com/index.html">
<meta property="og:site_name" content="三月的雨">
<meta property="og:description" content="爱生活的码农">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="三月的雨">
<meta name="twitter:description" content="爱生活的码农">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Muse',
sidebar: {"position":"left","display":"post","offset":12,"offset_float":0,"b2t":false,"scrollpercent":false},
fancybox: true,
motion: true,
duoshuo: {
userId: '0',
author: '博主'
},
algolia: {
applicationID: '',
apiKey: '',
indexName: '',
hits: {"per_page":10},
labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}
}
};
</script>
<link rel="canonical" href="http://yoursite.com/"/>
<title>三月的雨</title>
</head>
<body itemscope itemtype="http://schema.org/WebPage" lang="zh-Hans">
<div class="container sidebar-position-left
page-home
">
<div class="headband"></div>
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-wrapper">
<div class="site-meta ">
<div class="custom-logo-site-title">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">三月的雨</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<p class="site-subtitle"></p>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section">
首页
</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives" rel="section">
归档
</a>
</li>
<li class="menu-item menu-item-about">
<a href="/about" rel="section">
关于
</a>
</li>
<li class="menu-item menu-item-tags">
<a href="/tags" rel="section">
标签
</a>
</li>
<li class="menu-item menu-item-search">
<a href="javascript:;" class="popup-trigger">
搜索
</a>
</li>
</ul>
<div class="site-search">
<div class="popup search-popup local-search-popup">
<div class="local-search-header clearfix">
<span class="search-icon">
<i class="fa fa-search"></i>
</span>
<span class="popup-btn-close">
<i class="fa fa-times-circle"></i>
</span>
<div class="local-search-input-wrapper">
<input autocomplete="off"
placeholder="搜索..." spellcheck="false"
type="text" id="local-search-input">
</div>
</div>
<div id="local-search-result"></div>
</div>
</div>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<section id="posts" class="posts-expand">
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2018/03/03/2017年腾讯QQ红包/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="soar">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="三月的雨">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2018/03/03/2017年腾讯QQ红包/" itemprop="url">2017年腾讯QQ红包</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2018-03-03T20:23:26+08:00">
2018-03-03
</time>
</span>
<div class="post-wordcount">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-file-word-o"></i>
</span>
<span class="post-meta-item-text">字数统计</span>
<span title="字数统计">
521
</span>
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-clock-o"></i>
</span>
<span class="post-meta-item-text">阅读时长</span>
<span title="阅读时长">
2
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="2017年腾讯QQ红包"><a href="#2017年腾讯QQ红包" class="headerlink" title="2017年腾讯QQ红包"></a>2017年腾讯QQ红包</h1><hr>
<h2 id="系统架构和数据流"><a href="#系统架构和数据流" class="headerlink" title="系统架构和数据流"></a>系统架构和数据流</h2><p><img src="/images/tags/架构设计/2017年腾讯QQ红包/架构设计-2017年腾讯QQ红包-red-packet.png" alt="question"><br>以上系统最大优点就应用层操作系统完全和db隔离,数据持久化的步骤:data->redis->rabbitmq->mysql,但是还存在db单点问题,依赖无关系统Kafka影响系统性能。</p>
<h2 id="系统优化过程"><a href="#系统优化过程" class="headerlink" title="系统优化过程"></a>系统优化过程</h2><p>根据压测报告和日志分析,不断优化性能短板。</p>
<h3 id="应用内"><a href="#应用内" class="headerlink" title="应用内"></a>应用内</h3><p>1.资源锁的问题<br>2.多线程并发<br>3.去掉重复冗余的代码</p>
<h3 id="tomcat连接池"><a href="#tomcat连接池" class="headerlink" title="tomcat连接池"></a>tomcat连接池</h3><p>1.加大连接数<br>2.加大排队数(并不会加大TPS)</p>
<h3 id="http"><a href="#http" class="headerlink" title="http"></a>http</h3><p>1.TCP并发链接(没有及时释放),CLOSE_WAIT过多。<br>2.加大连接池连接数量</p>
<h3 id="mysql"><a href="#mysql" class="headerlink" title="mysql"></a>mysql</h3><p>1.优化sql,避免复杂查询<br>2.优化索引,让每条select都走索引<br>3.加大连接池的最大连接数<br>4.尝试测试不同的连接池,选择性能最佳的</p>
<h3 id="redis"><a href="#redis" class="headerlink" title="redis"></a>redis</h3><p>1.db中的数据load保存为hash(全表保存)<br>2.根据业务优化redis存储结构,减少redis查询次数<br>3.redis cpu为单核,大量查询会成为严重短板,进行分片处理和集群处理<br>4.过期时间不设置,可以测试出用户消耗的最大redis容量</p>
<h3 id="加快消费者消费速度"><a href="#加快消费者消费速度" class="headerlink" title="加快消费者消费速度"></a>加快消费者消费速度</h3><p>1.增加消费者数量<br>2.增加消费者预读取数据数量<br>3.优化消费逻辑,例如db查询,逻辑判断</p>
<h3 id="mq"><a href="#mq" class="headerlink" title="mq"></a>mq</h3><p>1.消息体一般为redis key,可以去redis拿取数据,优化消息存储大小<br>2.可以按功能不同,拆分多个队列,加快单逻辑处理速度</p>
<h3 id="java启动脚本优化"><a href="#java启动脚本优化" class="headerlink" title="java启动脚本优化"></a>java启动脚本优化</h3><p>1.spring boot项目<br>2.优化jvm启动参数</p>
<h3 id="项目初始化"><a href="#项目初始化" class="headerlink" title="项目初始化"></a>项目初始化</h3><p>1.将数据库数据先load到redis。可以控制速度,百万数据大概5min load完。</p>
<h3 id="日志优化"><a href="#日志优化" class="headerlink" title="日志优化"></a>日志优化</h3><p>1.log4j2异步写日志文件<br>2.减少日志打印,例如正常请求仅打印入参和出参<br>3.搭建日志系统,自动收集服务器的日志,然后通过kafka发送给elk</p>
<hr>
<p>作者 [soar]<br>2018年 03月 03日</p>
<hr>
</div>
<div>
</div>
<div>
</div>
<div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2017/10/11/client-request-double/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="soar">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="三月的雨">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2017/10/11/client-request-double/" itemprop="url">客户端重复请求</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2017-10-11T15:06:12+08:00">
2017-10-11
</time>
</span>
<div class="post-wordcount">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-file-word-o"></i>
</span>
<span class="post-meta-item-text">字数统计</span>
<span title="字数统计">
269
</span>
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-clock-o"></i>
</span>
<span class="post-meta-item-text">阅读时长</span>
<span title="阅读时长">
1
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="客户端请求重复导致流量翻倍"><a href="#客户端请求重复导致流量翻倍" class="headerlink" title="客户端请求重复导致流量翻倍"></a>客户端请求重复导致流量翻倍</h1><hr>
<h2 id="发现问题"><a href="#发现问题" class="headerlink" title="发现问题"></a>发现问题</h2><p>今天在对向项目进行接口测试时,通过fiddler抓包,发现有同一个接口在同一时间请求了两次,第一次请求的url末尾一个没带/,第二次请求带了/,如下所示:<br><img src="/images/tags/nginx/request-double/nginx-request-double-question.png" alt="question"></p>
<h2 id="导致的问题"><a href="#导致的问题" class="headerlink" title="导致的问题"></a>导致的问题</h2><p>因为重复请求了,所以会导致这样会导致流量翻倍。</p>
<h2 id="分析问题"><a href="#分析问题" class="headerlink" title="分析问题"></a>分析问题</h2><p>首先分析客户端发出的请求的过程,c->dns->elb->nginx->tomcat,通过nginx和tomcat记录的日志发现第一次请求没走到tomcat,在nginx这层就被重定向了,导致301,所以初步确定是nginx配置路劲的问题。查看nginx配置发现,如下所示:<br><img src="/images/tags/nginx/request-double/nginx-request-double-cause.png" alt="cause"><br>发现该nginx转发配置了要请求的URL带上/,所以初步判断是由于第一次没有带/,进行了重定向301,然后nginx对该请求自动带上了/。</p>
<h2 id="解决问题"><a href="#解决问题" class="headerlink" title="解决问题"></a>解决问题</h2><p>只要去掉location中的最后的/,然后重启nginx即可解决问题。</p>
<hr>
<p>作者 [soar]<br>2017年 10月 11日</p>
</div>
<div>
</div>
<div>
</div>
<div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2017/10/03/后台接口参数不兼容/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="soar">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="三月的雨">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2017/10/03/后台接口参数不兼容/" itemprop="url">后台接口参数不兼容</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2017-10-03T22:23:26+08:00">
2017-10-03
</time>
</span>
<div class="post-wordcount">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-file-word-o"></i>
</span>
<span class="post-meta-item-text">字数统计</span>
<span title="字数统计">
1,520
</span>
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-clock-o"></i>
</span>
<span class="post-meta-item-text">阅读时长</span>
<span title="阅读时长">
5
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="后台接口参数不兼容导致的线上事故"><a href="#后台接口参数不兼容导致的线上事故" class="headerlink" title="后台接口参数不兼容导致的线上事故"></a>后台接口参数不兼容导致的线上事故</h1><hr>
<h2 id="前言"><a href="#前言" class="headerlink" title="前言"></a>前言</h2><p>刚进公司实习不久,第一次遇到线上事故,在解决事故中积极的配合着老大的指挥,事后收获颇大。</p>
<h2 id="系统架构"><a href="#系统架构" class="headerlink" title="系统架构"></a>系统架构</h2><p>在这里首先描述下我们当时出现问题所在的架构是怎样的,因为对后续的解决问题非常有帮助,具体如下图所示:<br><img src="/images/tags/线上事故/后台接口参数不兼容/线上事故-后台接口参数不兼容-系统架构图.png" alt="系统架构图"><br>其次我们整个个服务共有7子系统,分别是运营系统,商户系统,用户系统,统计系统(主要是客户端日志上报),状态系统(客户端心跳检测),异步消息消息以及服务器报警系统,其中用户系统,统计系统,状态系统公用一个域名。</p>
<h2 id="发现问题"><a href="#发现问题" class="headerlink" title="发现问题"></a>发现问题</h2><p>2017年10月03日的15点40分,客户反馈客户端的奖励列表和排行榜获取数异常,也就是很慢。</p>
<h2 id="导致的问题"><a href="#导致的问题" class="headerlink" title="导致的问题"></a>导致的问题</h2><p>用户侧的整个系统的所有接口无返回或者返回很慢。</p>
<h2 id="分析问题"><a href="#分析问题" class="headerlink" title="分析问题"></a>分析问题</h2><p>    因为问题导致了整个用户侧系统的接口返回超慢,最先怀疑是不是带宽被占满了。所以第一时间登录腾讯云查看我们用户侧所依赖的8台nginx的带宽使用情况,发现所有的nginx的服务器的带宽全部占满。<br>    出现这种问题肯定会怀疑是不是被黑了或者因为客户端某个接口过度频繁调用服务端的接口导致,因为在这里我们更怀疑是客户端的某个接口过度调用导致了,所以马上通知客户端的小伙伴看看新版本做了哪些迭代,是不是有什么问题(因为2个小时之前我们的个客户端在2千多家网吧发布了),同时后端也采取相应的解决措施,当时就决定如果5-10分钟之内确定不了问题,我们就采取版本回退的方法。<br>    此时后台开发人员立马登录其中一台nginx服务器查看日志,发现tail不了日志,机器的CPU和内存,以及IO都被占满了,LB摘除这台nginx服务器,登录tail最近一万条日志一分钟发现日志上报系统的接口达到了35000条,接口的QPS达到了4800,到此时也就发现了问题,是由于客户端频繁的调用了统计系统的日志上报接口导致的,此时客户端的开发也确定了在日志上报接口调用异常时会不断重试,止于是什么原因导致接口调用异常稍后确定。</p>
<h2 id="解决问题"><a href="#解决问题" class="headerlink" title="解决问题"></a>解决问题</h2><p>客户端取消日志上报接口,并且在状态系统控制了客户端版本不是最新的就全部关闭,最后全量发布。因为用户系统,统计系统,状态系统公用一个域名,共享同样的带宽,带宽基本被统计系统占满,状态系统的心跳基本无法触及客户端,客户端关闭速度很缓慢。此时首先提升其中一台nginx的带宽为40M,然后提高状态系统的tomcat线程数为5000(原值为500),最后清空状态系统所在服务器的磁盘(之前请求暴增导致日志体积过大,磁盘占有率过高),以此来保证有足够的带宽提供给状态系统处理心跳接口->心跳接口控制客户端不是最新版本就关闭软件,到了差不多17点时,系统基本稳定了。</p>
<h2 id="事故原因"><a href="#事故原因" class="headerlink" title="事故原因"></a>事故原因</h2><p>后台15:30左右状态系统在日志上报接口中增加一个参数path,但是没有标注(require=false);客户端由于参数缺失导致接口400。</p>
<h2 id="反思与总结"><a href="#反思与总结" class="headerlink" title="反思与总结"></a>反思与总结</h2><h3 id="设计不合理"><a href="#设计不合理" class="headerlink" title="设计不合理"></a>设计不合理</h3><p>这次事故的主要原因还是另一个后台同事临时在状态系统的接口里增加请求参数,但是没有考虑到兼容性的问题,同时也暴露出了客户端重试机制不严谨,以及架构设计方面的多个项目使用同一个域名的隐患。</p>
<h3 id="分析问题方向有误"><a href="#分析问题方向有误" class="headerlink" title="分析问题方向有误"></a>分析问题方向有误</h3><p>因为问题是突然出现,所以在出现问题的时候就应该考虑下客户端和后台在之前做了什么改变,就算想不到,在nginx服务器观察日志也应该看得到接口400是因为接口的参数的问题,实际上这两点都没有分析到。如果之前能马上想到正确的事故原因,那解决问题就很简单,只要后台发版即可快速的解决问题。及时是客户端的问题,既可以采用上面的解决为的方案,但是在保证有足够的带宽提供给状态系统处理心跳接口->心跳接口控制客户端不是最新版本就关闭软件时,其实不需要提升nginx的带宽,有一种高效快速的方法就是在nginx就直接对日志上报接口返回200即可,这样大大减少了请求时间,具体如下图所示:<br><img src="/images/tags/线上事故/后台接口参数不兼容/线上事故-后台接口参数不兼容-nginx没有直接返回200.png" alt="nginx没有直接返回200"><br><img src="/images/tags/线上事故/后台接口参数不兼容/线上事故-后台接口参数不兼容-nginx直接返回200.png" alt="nginx没有直接返回200"></p>
<h3 id="如何快速定位和解决IDC问题"><a href="#如何快速定位和解决IDC问题" class="headerlink" title="如何快速定位和解决IDC问题"></a>如何快速定位和解决IDC问题</h3><p>作为web后台开发人员,但实际上用户发起一个http请求,要经过很多中间步骤才到你的服务器(例如浏览器缓存、DNS、LB、nginx,tomcat等),服务器一般又会经过很多处理才到你写的那部分代码(权限,路由等),这整个流程中的很多系统或者步骤,绝大部分人是不可能去参与写代码的,但掌握了这些知识对你的综合水平有很大作用,例如方案设计、线上故障处理这些更加有含金量的技术工作都需要综合技术水平。</p>
<hr>
<p>作者 [soar]<br>2017年 11月 03日</p>
</div>
<div>
</div>
<div>
</div>
<div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2017/09/01/如何合理的设计接口/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="soar">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="三月的雨">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2017/09/01/如何合理的设计接口/" itemprop="url">如何合理的设计接口</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2017-09-01T13:23:26+08:00">
2017-09-01
</time>
</span>
<div class="post-wordcount">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-file-word-o"></i>
</span>
<span class="post-meta-item-text">字数统计</span>
<span title="字数统计">
276
</span>
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-clock-o"></i>
</span>
<span class="post-meta-item-text">阅读时长</span>
<span title="阅读时长">
1
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="如何合理的设计接口"><a href="#如何合理的设计接口" class="headerlink" title="如何合理的设计接口"></a>如何合理的设计接口</h1><hr>
<h2 id="背景"><a href="#背景" class="headerlink" title="背景"></a>背景</h2><p>这里主要以信贷上传用户实心信息为例,在编码业务代码时,必须是基于设计思想,考虑可能问题,然后编码不同场景下不同用户操作的测试用例,最后进行断点调试,单元测试,接口测试,以及自动化测试。</p>
<h3 id="设计思想"><a href="#设计思想" class="headerlink" title="设计思想"></a>设计思想</h3><p>可扩展,复用,解耦,简易性,必要性等。</p>
<h3 id="考虑问题"><a href="#考虑问题" class="headerlink" title="考虑问题"></a>考虑问题</h3><p>安全性,用户体验,性能等。</p>
<h3 id="业务场景"><a href="#业务场景" class="headerlink" title="业务场景"></a>业务场景</h3><p>1.正常拍照<br>2.非正常拍照<br>3.通过接口传数据,同2</p>
<h3 id="用户操作"><a href="#用户操作" class="headerlink" title="用户操作"></a>用户操作</h3><p>1.用户使用自己的身份证(是否在库)<br>2.用户使用别人的身份证(是否在库)<br>3.使用错误的身份证</p>
<h3 id="业务代码"><a href="#业务代码" class="headerlink" title="业务代码"></a>业务代码</h3><p>1.校验身份证:数据合法性,身份证有效日期,判断该卡是否被使用(二要素鉴权,其实是没必要的);<br>2.提交实名信息:判断身份证是否被使用,人脸二要素识别,实名信息落库。</p>
<hr>
<p>作者 [soar]<br>2017年 09月 01日</p>
</div>
<div>
</div>
<div>
</div>
<div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2017/06/15/kafka高性能之道/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="soar">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="三月的雨">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2017/06/15/kafka高性能之道/" itemprop="url">kafka高性能之道</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2017-06-15T11:20:27+08:00">
2017-06-15
</time>
</span>
<div class="post-wordcount">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-file-word-o"></i>
</span>
<span class="post-meta-item-text">字数统计</span>
<span title="字数统计">
1,053
</span>
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-clock-o"></i>
</span>
<span class="post-meta-item-text">阅读时长</span>
<span title="阅读时长">
4
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">