-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.xml
7538 lines (5865 loc) · 509 KB
/
index.xml
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
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>SOFAStack</title>
<link>https://sofastack.github.io/sofastack.tech/</link>
<description>Recent content on SOFAStack</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh-CN</language>
<atom:link href="https://sofastack.github.io/sofastack.tech/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>涂鸦智能落地 Koupleless 合并部署,实现云服务降本增效</title>
<link>https://sofastack.github.io/sofastack.tech/blog/tuya-smart-implements-merged-deployment-with-koupleless-to-achieve-cost-saving-and-profit-increasing-in-cloud-services/</link>
<pubDate>Tue, 15 Oct 2024 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/tuya-smart-implements-merged-deployment-with-koupleless-to-achieve-cost-saving-and-profit-increasing-in-cloud-services/</guid>
<description>作者简介 文|八幡、朵拉 杭州涂鸦智能技术专家,主要研究微服务与可观测、消息引擎、任务调度、数据层中间件等领域。 本文 5389字 阅读 15分钟 当前涂</description>
</item>
<item>
<title>SOFA 六周年,Hello SOFA World</title>
<link>https://sofastack.github.io/sofastack.tech/activities/sofa-6th-anniversary/</link>
<pubDate>Sat, 20 Apr 2024 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/activities/sofa-6th-anniversary/</guid>
<description>概要 活动主题:SOFA 六周年,Hello SOFA World! 活动时间:04 月 20 日 13:30&ndash;18:00 活动形式:线下 Meetup + 线上直播 资料下载: Apache Seata(incubating) 新征程 探索微服务下一站,</description>
</item>
<item>
<title>从一次 RPC 请求,探索 MOSN 的工作流程</title>
<link>https://sofastack.github.io/sofastack.tech/blog/explore-the-workflow-of-mosn-from-an-rpc-request/</link>
<pubDate>Tue, 26 Mar 2024 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/explore-the-workflow-of-mosn-from-an-rpc-request/</guid>
<description>王程铭(呈铭) 蚂蚁集团技术工程师,Apache Committer 专注 RPC、Service Mesh 和云原生等领域。 本文 7368 字,预计阅读 15 分钟 前言 MOSN(Modul</description>
</item>
<item>
<title>单体应用协作开发太难?Koupleless 带来拆分插件,帮你抽丝剥茧提高协作开发效率!</title>
<link>https://sofastack.github.io/sofastack.tech/blog/koupleless-brings-split-plugin-to-help-you-to-improve-the-efficiency-of-collaborative-development/</link>
<pubDate>Tue, 19 Mar 2024 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/koupleless-brings-split-plugin-to-help-you-to-improve-the-efficiency-of-collaborative-development/</guid>
<description>梁栎鹏(立蓬) 蚂蚁集团技术工程师,云原生领域工程师 就职于蚂蚁集团中间件团队,参与维护与建设蚂蚁 SOFAArk 和 Koupleless 开源项目,参与内部 SOFAServerless 产品的研发和实践。 本</description>
</item>
<item>
<title>高效降本|深度案例解读 Koupleless 在南京爱福路的落地实践</title>
<link>https://sofastack.github.io/sofastack.tech/blog/efficient-cost-reduction-case-study-of-koupleless-practical-application-in-nanjing-f6/</link>
<pubDate>Tue, 27 Feb 2024 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/efficient-cost-reduction-case-study-of-koupleless-practical-application-in-nanjing-f6/</guid>
<description>文|祁晓波 南京爱福路汽车科技基础设施负责人 主要研究微服务、可观测、稳定性、研发效能、Java 中间件等领域。 本文 4812 字 阅读 12 分钟 Koupleless *(原 SOFA</description>
</item>
<item>
<title>成倍降本增效,提升企业竞争力!SOFAServerless 品牌升级为 Koupleless,重磅发布 1.0 版本</title>
<link>https://sofastack.github.io/sofastack.tech/blog/economical-and-efficient-enhance-the-competitiveness-of-enterprises-sofaserverless-brand-upgraded-to-koupleless-release-version-1.0/</link>
<pubDate>Tue, 06 Feb 2024 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/economical-and-efficient-enhance-the-competitiveness-of-enterprises-sofaserverless-brand-upgraded-to-koupleless-release-version-1.0/</guid>
<description>如果你是企业经营者,在为企业降本增效而发愁; 如果你是企业的开发、运维或架构同学,在日常工作中被开发效率、交付问题等困扰…… 欢迎来了解 Koupleless *(原</description>
</item>
<item>
<title>开源之夏经验分享|Layotto 社区 陈亦昺:保持热情、全力以赴!</title>
<link>https://sofastack.github.io/sofastack.tech/blog/ospp-exprience-sharing-keep-enthusiastic-and-all-in/</link>
<pubDate>Tue, 21 Nov 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/ospp-exprience-sharing-keep-enthusiastic-and-all-in/</guid>
<description>今天 SOFAStack 邀请到了开源之夏 2023 Layotto 社区的中选学生陈亦昺同学!在本项目中,他负责可插拔式组件的开发。希望他分享的这段经历,能让更多人了解到 Layotto 开源社区,</description>
</item>
<item>
<title>携手开源,共同见证|Seata 进入 Apache 孵化器</title>
<link>https://sofastack.github.io/sofastack.tech/blog/open-source-together-seata-enters-apache-incubator/</link>
<pubDate>Thu, 16 Nov 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/open-source-together-seata-enters-apache-incubator/</guid>
<description>北京时间 2023 年 10 月 29 日,分布式事务开源项目 Seata 通过 Apache 基金会的投票决议,以全票通过的优秀表现正式成为 Apache 孵化器项目! 根据 Apache基金会邮件列表显</description>
</item>
<item>
<title>告别复杂性!用正确的工具轻松应对 K8s 管理挑战</title>
<link>https://sofastack.github.io/sofastack.tech/blog/say-goodbye-to-complexity-easily-tackle-k8s-management-challenges-with-the-right-tools/</link>
<pubDate>Tue, 14 Nov 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/say-goodbye-to-complexity-easily-tackle-k8s-management-challenges-with-the-right-tools/</guid>
<description>文|王连平(花名:烨川) 蚂蚁集团容器团队专家 本文 3441 字 阅读 9 分钟 技术背景 Kubernetes 是容器编排的标杆平台,其标准化、插件化特性促使其拥有巨大的生态体系。</description>
</item>
<item>
<title>开源之夏经验分享|Dragonfly 社区 李从旺:社区贡献也是一种影响力</title>
<link>https://sofastack.github.io/sofastack.tech/blog/ospp-experience-sharing-community-contribution-is-a-kind-of-influence/</link>
<pubDate>Tue, 07 Nov 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/ospp-experience-sharing-community-contribution-is-a-kind-of-influence/</guid>
<description>今天,我们邀请到了开源之夏 2023 活动 Dragonfly 社区的中选学生李从旺同学,他此次承担的项目是——「PyTorch Serve 基于 Dragonfly P2P 技术分发模型」。希望通过他的开源</description>
</item>
<item>
<title>Lunettes - 让 Kubernetes 服务运营更简单</title>
<link>https://sofastack.github.io/sofastack.tech/blog/lunettes-makes-kubernetes-service-operations-easier/</link>
<pubDate>Tue, 31 Oct 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/lunettes-makes-kubernetes-service-operations-easier/</guid>
<description>文|谭崇康(*花名:见云*) 蚂蚁集团高级技术专家 本文 3781 字 阅读 10 分钟 问题:K8s 服务运营需要更好的可观测能力 云原生系统以 Kubernetes*</description>
</item>
<item>
<title>SOFA Weekly|SOFA 聊天室、issue 精选</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-1006/</link>
<pubDate>Fri, 06 Oct 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-1006/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>VLDB2023|方略:一个交互式的规则研发系统</title>
<link>https://sofastack.github.io/sofastack.tech/blog/vldb2023-fanglue-an-interactive-rule-development-system/</link>
<pubDate>Tue, 03 Oct 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/vldb2023-fanglue-an-interactive-rule-development-system/</guid>
<description>文|梁仕威(花名:栖川) 蚂蚁集团算法专家 方略平台技术负责人,专注于分布式计算领域,主要负责蚂蚁基础算法的分布式设计与开发。 本文 3419 字,阅读 9 分</description>
</item>
<item>
<title>SOFA Weekly|SOFAServerless 社区会议回顾、社区本周贡献、SOFA 亚运特辑</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230929/</link>
<pubDate>Fri, 29 Sep 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230929/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>喜报!CNCF 基金会宣布 KCL 成为沙盒项目!</title>
<link>https://sofastack.github.io/sofastack.tech/blog/cncf-foundation-announced-kcl-as-a-sandbox-project/</link>
<pubDate>Tue, 26 Sep 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/cncf-foundation-announced-kcl-as-a-sandbox-project/</guid>
<description>2023 年 9 月 20 日,KCL 项目通过了全球顶级开源基金会云原生计算基金会 (CNCF) 技术监督委员会评定,正式成为 CNCF 沙盒项目。 这意味着 KCL 得到了云原生开</description>
</item>
<item>
<title>Docker 环境基于 Dragonfly 的 Kubernetes 多集群镜像分发实践</title>
<link>https://sofastack.github.io/sofastack.tech/blog/dragonfly-based-kubernetes-multi-cluster-image-distribution-for-docker-environments/</link>
<pubDate>Tue, 19 Sep 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/dragonfly-based-kubernetes-multi-cluster-image-distribution-for-docker-environments/</guid>
<description>文|唐荦彦 深信服高级开发工程师,主要负责 SASE 云化架构以及基础设施建设 本文 3056 字,阅读 6 分钟 1|你将在本文学到什么 多 K8s 集群镜像分发方案 Dragonfly 的理解 Harbor 的</description>
</item>
<item>
<title>SOFA Weekly|SOFAServerless 社区会议预告、Layotto 社区会议回顾与预告、C 位大咖说</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230915/</link>
<pubDate>Fri, 15 Sep 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230915/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>DLRover 在 K8s 上千卡级大模型训练稳定性保障的技术实践</title>
<link>https://sofastack.github.io/sofastack.tech/blog/dlrovers-stability-guarantee-for-large-model-training-on-k8s-with-thousands-of-cardinalities/</link>
<pubDate>Tue, 12 Sep 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/dlrovers-stability-guarantee-for-large-model-training-on-k8s-with-thousands-of-cardinalities/</guid>
<description>文|王勤龙(*花名:长凡*) 蚂蚁集团 AI 系统工程师 文|张吉(*花名:理之*) 蚂蚁集团 AI 系统工程师 文|兰霆峰 四川大学 20 级计算机系 本文 5104 字 阅读 13 分</description>
</item>
<item>
<title>大象转身:支付宝资金技术 Serverless 提效总结</title>
<link>https://sofastack.github.io/sofastack.tech/blog/elephant-turn-summary-of-alipay-funding-technology-serverless-efficiency-improvements/</link>
<pubDate>Tue, 05 Sep 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/elephant-turn-summary-of-alipay-funding-technology-serverless-efficiency-improvements/</guid>
<description>1. 前言 本文是支付宝资金技术团队在《大象转身-支付宝资金技术交付提效之路》系列总结之一。如果你正在负责一个所支撑的业务面临从平台到场景化创新的</description>
</item>
<item>
<title>SOFA Weekly|SOFAChannel#35 直播预告、SOFARPC/SOFAHessian 新版本发布、社区会议</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230901/</link>
<pubDate>Fri, 01 Sep 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230901/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>SOFAChannel#35《SOFABoot 4.0 — 迈向 JDK 17 新时代》——SOFABoot 社区</title>
<link>https://sofastack.github.io/sofastack.tech/activities/sofa-channel-35/</link>
<pubDate>Thu, 31 Aug 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/activities/sofa-channel-35/</guid>
<description>概要 活动主题:SOFAChannel#35《SOFABoot 4.0 — 迈向 JDK 17 新时代》——SOFABoot 社区 活动时间:09 月 07 日,周四晚 19 点 活动</description>
</item>
<item>
<title>SOFA Weekly|SOFAServerless 社区会议回顾、Layotto 社区会议回顾与预告、社区本周贡献</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230825/</link>
<pubDate>Fri, 25 Aug 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230825/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>蚂蚁 SOFAServerless 微服务新架构的探索与实践</title>
<link>https://sofastack.github.io/sofastack.tech/blog/ant-group-sofa-serverless-new-microservices-architecture-exploration-and-practice/</link>
<pubDate>Tue, 22 Aug 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/ant-group-sofa-serverless-new-microservices-architecture-exploration-and-practice/</guid>
<description>作者简介 赵真灵(有济) 蚂蚁集团技术专家,Serverless 和微服务领域专家 曾负责基于 K8s Deployment 的应用发布运维平台建设、K8s 集群的 Node/pod 多级弹性伸缩</description>
</item>
<item>
<title>SOFA Weekly|Layotto 社区会议回顾与预告、SOFA 茶水间、社区本周贡献</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230818/</link>
<pubDate>Fri, 18 Aug 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230818/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>超越边界:FaaS 的应用实践和未来展望</title>
<link>https://sofastack.github.io/sofastack.tech/blog/beyond-boundaries-faas-adoption-practices-and-future-prospects/</link>
<pubDate>Tue, 15 Aug 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/beyond-boundaries-faas-adoption-practices-and-future-prospects/</guid>
<description>作者简介 邢奇(薯片) 蚂蚁集团技术专家,云原生和 Service Mesh 领域专家 长期从事服务治理和服务发现等相关领域的研究和实践,在 RPC 框架(*Dubbo、Spri</description>
</item>
<item>
<title>Dragonfly 发布 v2.1.0 版本!</title>
<link>https://sofastack.github.io/sofastack.tech/blog/dragonfly-v-2-1-0-release/</link>
<pubDate>Tue, 08 Aug 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/dragonfly-v-2-1-0-release/</guid>
<description>Dragonfly 最新正式版本 v2.1.0 已经发布! 感谢赵鑫鑫[1]同学帮助重构 Console 代码,并且提供全新的 Console[2]控制台方便用户可视化操作 P2P 集群。欢迎访问 d7</description>
</item>
<item>
<title>SOFAChannel#34《Dragonfly & Nydus 在 AI 场景下的加速实践》——Dragonfly 社区</title>
<link>https://sofastack.github.io/sofastack.tech/activities/sofa-channel-34/</link>
<pubDate>Wed, 02 Aug 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/activities/sofa-channel-34/</guid>
<description>Dragonfly 项目简介 Dragonfly 是一款基于 P2P 的镜像加速和文件分发系统。它旨在提高大规模文件传输的效率和速率,最大限度地利用网络带宽。在 AI 数据分发、文件分发、日志</description>
</item>
<item>
<title>MoE 系列(七) - Envoy Go 扩展之沙箱安全</title>
<link>https://sofastack.github.io/sofastack.tech/blog/moe-series-7-envoy-go-extension-sandbox-security/</link>
<pubDate>Tue, 01 Aug 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/moe-series-7-envoy-go-extension-sandbox-security/</guid>
<description>文|朱德江(GitHub ID:doujiang24) MOSN 项目核心开发者 蚂蚁集团技术专家 专注于云原生网关研发的相关工作 *本文* 807 字 阅读 3分钟 在本</description>
</item>
<item>
<title>MoE 系列(六)| Envoy Go 扩展之并发安全</title>
<link>https://sofastack.github.io/sofastack.tech/blog/moe-series6envoy-go-extensions-concurrency-security/</link>
<pubDate>Tue, 18 Jul 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/moe-series6envoy-go-extensions-concurrency-security/</guid>
<description>文|朱德江(GitHub ID:doujiang24) MOSN 项目核心开发者 蚂蚁集团技术专家 专注于云原生网关研发的相关工作 本文 1313 字 阅读 4 分钟 前一篇介</description>
</item>
<item>
<title>SOFABoot 4.0 正式发布,多项新特性等你来体验!</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofaboot-4.0-is-officially-released-with-many-new-features-for-you-to-experience/</link>
<pubDate>Tue, 11 Jul 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofaboot-4.0-is-officially-released-with-many-new-features-for-you-to-experience/</guid>
<description>Part.1 「亿点点」新特性 基于 Java 17 SOFABoot 4.0 依赖 Java 17 作为最小支持的 JDK 版本。如果你的应用目前使用 Java 8 或 11,你需要先将自己的 JDK 版本升级到 17 才能基于 SOFABoot 4.0 进行开</description>
</item>
<item>
<title>Seata-DTX|分布式事务金融场景案例介绍</title>
<link>https://sofastack.github.io/sofastack.tech/blog/seata-dtxdistributed-transaction-financial-scenario-case-introduction/</link>
<pubDate>Tue, 27 Jun 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/seata-dtxdistributed-transaction-financial-scenario-case-introduction/</guid>
<description>文|魏陈豪(花名:无陈 Sam) 蚂蚁集团 SOFAStack 产品专家 本文 2966 字 阅读 8 分钟 序言 今天给大家带来一篇 Seata-DTX[1] 商业版分布式事务在金融行业如何保证事务一致性的实践介绍。</description>
</item>
<item>
<title>SOFA Weekly|Layotto 社区会议回顾与预告、社区本周贡献</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230623/</link>
<pubDate>Fri, 23 Jun 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230623/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>SOFAStack 的下一个五年</title>
<link>https://sofastack.github.io/sofastack.tech/blog/the-next-five-years-of-sofastack/</link>
<pubDate>Tue, 20 Jun 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/the-next-five-years-of-sofastack/</guid>
<description>文|宋顺(GitHub ID:nobodyiam) SOFAStack 社区开源负责人 蚂蚁集团高级技术专家 本文 3861 字 阅读 11 分钟 01 回顾开源这五年 回想起 2018 年 4 月 19 日 SOFAStack 首</description>
</item>
<item>
<title>SOFA Weekly|SOFARPC 5.10.1 版本发布、Layotto 社区会议回顾与预告、社区本周贡献</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-230616/</link>
<pubDate>Fri, 16 Jun 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-230616/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>Seata Saga 模式快速入门和最佳实践</title>
<link>https://sofastack.github.io/sofastack.tech/blog/seata-saga-model-quick-start-and-best-practices/</link>
<pubDate>Wed, 14 Jun 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/seata-saga-model-quick-start-and-best-practices/</guid>
<description>文|王特 (花名:亦夏) Email:[email protected] 蚂蚁集团数据中间件核心开发 本文4927 字 阅读 13 分钟 Seata 是一款开源的</description>
</item>
<item>
<title>SOFA Weekly|可信基础设施技术分论坛、Layotto 社区会议回顾与预告、社区本周贡献</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-230609/</link>
<pubDate>Fri, 09 Jun 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-230609/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>生产环境可用的 Seata-go 1.2.0 来啦!!!</title>
<link>https://sofastack.github.io/sofastack.tech/blog/seata-go-1.2.0-available-for-production-environments-is-here/</link>
<pubDate>Tue, 06 Jun 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/seata-go-1.2.0-available-for-production-environments-is-here/</guid>
<description>文|刘月财(GitHub ID:luky116) 360 服务端开发专家 Seata-go 项目负责人 本文 2752 字 阅读 7 分钟 发布概览 Seata-go 1.2.0 版本支持 XA 模式。XA 协议是由 X/Open 组织提</description>
</item>
<item>
<title>SOFAChannel#33《Occlum x EDMM=更安全好用的机密计算 LibOS》——Occlum 社区</title>
<link>https://sofastack.github.io/sofastack.tech/activities/sofa-channel-33/</link>
<pubDate>Wed, 31 May 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/activities/sofa-channel-33/</guid>
<description>概要 活动主题:SOFAChannel#33《Occlum x EDMM=更安全好用的机密计算 LibOS》——Occlum 社区 活动时间:05 月 31 日</description>
</item>
<item>
<title>MoE 系列(五)|Envoy Go 扩展之内存安全</title>
<link>https://sofastack.github.io/sofastack.tech/blog/moe-series-5envoy-go-extensions-memory-security/</link>
<pubDate>Tue, 30 May 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/moe-series-5envoy-go-extensions-memory-security/</guid>
<description>前面几篇介绍了 Envoy Go 扩展的基本用法,接下来几篇将介绍实现机制和原理。 Envoy 是 C++ 实现的,那 Envoy Go 扩展,本质上就相当于把 Go 语言嵌入 C++ 里了。 在 Go 圈里,将 Go</description>
</item>
<item>
<title>SOFA Weekly|SOFAChannel#33 直播预告、Layotto 社区会议回顾与预告、社区本周贡献</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-230526/</link>
<pubDate>Fri, 26 May 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-230526/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>MOSN 基于延迟负载均衡算法——走得更快,期待走得更稳</title>
<link>https://sofastack.github.io/sofastack.tech/blog/mosn-delay-based-load-balancing-algorithm-go-faster-expect-to-go-steadier/</link>
<pubDate>Tue, 23 May 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/mosn-delay-based-load-balancing-algorithm-go-faster-expect-to-go-steadier/</guid>
<description>文|纪卓志(GitHub ID:jizhuozhi) 京东高级开发工程师 MOSN 项目 Committer 专注于云原生网关研发的相关工作,长期投入在负载均衡和流量控制领域</description>
</item>
<item>
<title>SOFA Weekly|SOFA 大事记、Layotto 社区会议回顾与预告、社区本周贡献</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-230519/</link>
<pubDate>Fri, 19 May 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-230519/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>MoE 系列(四)|Go 扩展的异步模式</title>
<link>https://sofastack.github.io/sofastack.tech/blog/moe-series-4-go-extended-asynchronous-mode/</link>
<pubDate>Tue, 16 May 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/moe-series-4-go-extended-asynchronous-mode/</guid>
<description>在《MoE 系列(三)|使用 Istio 动态更新 Go 扩展配置》中我们体验了用 Istio 做控制面,给 Go 扩展推送配置,这次我们来体验一下,在 Go 扩展的异步模式下,对 Goroutine 等</description>
</item>
<item>
<title>SOFA Weekly|SOFAArk 社区会议回顾、Layotto 社区会议预告、社区本周贡献</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-230512/</link>
<pubDate>Fri, 12 May 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-230512/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>【开源之夏 2023】欢迎报名 Dragonfly、Kata Containers、Nydus 社区项目!</title>
<link>https://sofastack.github.io/sofastack.tech/activities/summer-2023-of-open-source-promotion-planwelcome-to-register-for-dragonflykata-containersand-nydus-community-projects/</link>
<pubDate>Thu, 11 May 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/activities/summer-2023-of-open-source-promotion-planwelcome-to-register-for-dragonflykata-containersand-nydus-community-projects/</guid>
<description>开源之夏是由“开源软件供应链点亮计划”发起并长期支持的一项暑期开源活动,旨在鼓励在校学生积极参与开源软件的开发维护,促进优秀开源软件社区的蓬</description>
</item>
<item>
<title>【开源之夏 2023】欢迎报名 MOSN 社区项目!</title>
<link>https://sofastack.github.io/sofastack.tech/activities/open-source-promotion-plan-2023-welcome-to-the-mosn-community-project/</link>
<pubDate>Tue, 09 May 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/activities/open-source-promotion-plan-2023-welcome-to-the-mosn-community-project/</guid>
<description>开源之夏是由“开源软件供应链点亮计划”发起并长期支持的一项暑期开源活动,旨在鼓励在校学生积极参与开源软件的开发维护,促进优秀开源软件社区的蓬</description>
</item>
<item>
<title>SOFA Weekly|开源之夏 MOSN 与 Layotto 项目简介、社区会议预告、社区本周贡献</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-0505/</link>
<pubDate>Fri, 05 May 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-0505/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>【开源之夏 2023】欢迎报名 SOFAStack 社区项目!</title>
<link>https://sofastack.github.io/sofastack.tech/activities/open-source-promotion-plan-2023-welcome-to-the-sofastack-community-project/</link>
<pubDate>Fri, 05 May 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/activities/open-source-promotion-plan-2023-welcome-to-the-sofastack-community-project/</guid>
<description>开源之夏是由“开源软件供应链点亮计划”发起并长期支持的一项暑期开源活动,旨在鼓励在校学生积极参与开源软件的开发维护,促进优秀开源软件社区的蓬</description>
</item>
<item>
<title>MoE 系列(三)|使用 Istio 动态更新 Go 扩展配置</title>
<link>https://sofastack.github.io/sofastack.tech/blog/moe-series-3dynamic-update-of-go-extension-configuration-with-istio/</link>
<pubDate>Tue, 02 May 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/moe-series-3dynamic-update-of-go-extension-configuration-with-istio/</guid>
<description>上一篇我们用 Go 扩展实现了 Basic Auth,体验了 Go 扩展从 Envoy 接受配置。 之所以这么设计,是想复用 Envoy 原有的 xDS 配置推送通道,今天我们就来体验一番,云原生的</description>
</item>
<item>
<title>SOFA Weekly|SOFAArk 社区会议预告、Layotto 社区会议回顾、社区本周贡献</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230428/</link>
<pubDate>Fri, 28 Apr 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230428/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>蚂蚁安全科技 Nydus 镜像加速实践</title>
<link>https://sofastack.github.io/sofastack.tech/blog/ant-security-technology-nydus-mirror-acceleration-practice/</link>
<pubDate>Wed, 26 Apr 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/ant-security-technology-nydus-mirror-acceleration-practice/</guid>
<description>文|蚂蚁集团 ZOLOZ 团队 使用全球领先安全科技,为用户和机构提供安全、便捷的安全风控解决方案。 本文 6386 字 阅读 12 分钟 背景简介 ZOLOZ[1]是蚂蚁集团旗</description>
</item>
<item>
<title>SOFA Weekly|SOFARPC 5.10.0 版本发布、SOFA 五周年回顾、Layotto 社区会议回顾与预告</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-0421/</link>
<pubDate>Fri, 21 Apr 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-0421/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>MoE 系列(二)|Golang 扩展从 Envoy 接收配置</title>
<link>https://sofastack.github.io/sofastack.tech/blog/moe-series-2golang-extensions-receive-configuration-from-envoy/</link>
<pubDate>Tue, 18 Apr 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/moe-series-2golang-extensions-receive-configuration-from-envoy/</guid>
<description>文|朱德江(GitHub ID:doujiang24) MOSN 项目核心开发者 蚂蚁集团技术专家 专注于云原生网关研发的相关工作 本文 1445 字 阅读 5 分钟 上一篇我</description>
</item>
<item>
<title>SOFA 五周年,Live Long and Prosper!</title>
<link>https://sofastack.github.io/sofastack.tech/activities/sofa-anniversary-5/</link>
<pubDate>Sat, 15 Apr 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/activities/sofa-anniversary-5/</guid>
<description>概要 活动主题:SOFA 五周年,Live Long and Prosper! 活动时间:04 月 15 日 12:00&ndash;17:00 活动形式:线下 Meetup + 线上直播 资料下载: 《SOFAStack 的下</description>
</item>
<item>
<title>SOFA Weekly|SOFA 开源五周年来自社区家人的祝福、社区本周贡献 & issue 精选</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230414/</link>
<pubDate>Fri, 14 Apr 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230414/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>缘起|蚂蚁应用级服务发现的实践之路</title>
<link>https://sofastack.github.io/sofastack.tech/blog/originsants-practical-path-to-application-level-service-discovery/</link>
<pubDate>Tue, 11 Apr 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/originsants-practical-path-to-application-level-service-discovery/</guid>
<description>文|肖健(花名:昱恒) 蚂蚁集团技术专家、SOFARegistry Maintainer 专注于服务发现领域,目前主要从事蚂蚁注册中心 SOFARegistry 的设计和研发工作。 本文 8339 字 阅</description>
</item>
<item>
<title>缘起|蚂蚁应用级服务发现的实践之路</title>
<link>https://sofastack.github.io/sofastack.tech/projects/sofa-registry/code-analyze/origins-ant-s-practical-path-to-application-level-service-discovery/</link>
<pubDate>Tue, 11 Apr 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/projects/sofa-registry/code-analyze/origins-ant-s-practical-path-to-application-level-service-discovery/</guid>
<description>文|肖健(花名:昱恒) 蚂蚁集团技术专家、SOFARegistry Maintainer 专注于服务发现领域,目前主要从事蚂蚁注册中心 SOFARegistry 的设计和研发工作。 本文 8339 字阅</description>
</item>
<item>
<title>SOFA Weekly|SOFA 开源五周年活动报名、Layotto 会议预告、社区本周贡献 & issue 精选</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230407/</link>
<pubDate>Fri, 07 Apr 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230407/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>SOFA Weekly | 本周贡献 & issue 精选</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230331/</link>
<pubDate>Fri, 31 Mar 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230331/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>MoE 系列(一)|如何使用 Golang 扩展 Envoy</title>
<link>https://sofastack.github.io/sofastack.tech/blog/moe-series-1how-to-extend-envoy-with-golang/</link>
<pubDate>Tue, 28 Mar 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/moe-series-1how-to-extend-envoy-with-golang/</guid>
<description>本文作为 MoE 系列第一篇,主要介绍用 Golang 扩展 Envoy 的极速开发体验。 一、背景 MoE*(MOSN on Envoy)*是 MOSN 团队提出的技术架构,经过近两年的发展,</description>
</item>
<item>
<title>SOFA Weekly | 本周贡献 & issue 精选</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230324/</link>
<pubDate>Fri, 24 Mar 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230324/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>火山引擎基于 Dragonfly 加速实践</title>
<link>https://sofastack.github.io/sofastack.tech/blog/volcano-engine-based-on-dragonfly-acceleration-practices/</link>
<pubDate>Tue, 21 Mar 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/volcano-engine-based-on-dragonfly-acceleration-practices/</guid>
<description>文|黄逸炀 Dragonfly Maintainer 字节跳动火山引擎软件工程师 专注于镜像存储及镜像 P2P 分发 PART. 0 背景 火山引擎镜像仓库 CR 使用 TOS 来存储容器镜像。目前在一定程度上能满足并发</description>
</item>
<item>
<title>SOFA Weekly | MOSN、Layotto 社区会议通知、Seata 版本发布</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-230317/</link>
<pubDate>Fri, 17 Mar 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-230317/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>Seata-go 1.1.0 发布,补齐 AT 模式支持</title>
<link>https://sofastack.github.io/sofastack.tech/blog/seata-go-1-1-0-released-completes-at-mode-support/</link>
<pubDate>Tue, 14 Mar 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/seata-go-1-1-0-released-completes-at-mode-support/</guid>
<description>发布概览 Seata-go 1.1.0 版本补齐了 AT 模式下对 Multi Delete、Multi Update、Insert on Update 和 Select for Update 的支持。至此 Seata-go 的 AT 模式与 Seata AT 模式全面对齐。 此</description>
</item>
<item>
<title>SOFA Weekly | SOFANews、开源人 & issue 精选</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230310/</link>
<pubDate>Fri, 10 Mar 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230310/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>DLRover:蚂蚁开源大规模智能分布式训练系统</title>
<link>https://sofastack.github.io/sofastack.tech/blog/dlrover-ant-open-source-large-scale-intelligent-distributed-training-system/</link>
<pubDate>Tue, 07 Mar 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/dlrover-ant-open-source-large-scale-intelligent-distributed-training-system/</guid>
<description>文|沙剑 蚂蚁集团高级技术专家 专注分布式深度学习领域 主要负责蚂蚁大规模分布式训练引擎的设计和开发 本文 4491 字 阅读 12 分钟 本文整体介绍了 DLRover 的项目动机与</description>
</item>
<item>
<title>SOFA Weekly|铜锁探「密」、本周贡献 & issue 精选</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230303/</link>
<pubDate>Fri, 03 Mar 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230303/</guid>
<description>SOFA Weekly|铜锁探「密」、本周贡献 &amp; issue 精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Sta</description>
</item>
<item>
<title>Nydus 在约苗平台的容器镜像加速实践</title>
<link>https://sofastack.github.io/sofastack.tech/blog/nydus-container-image-acceleration-practices-on-the-yosemite-platform/</link>
<pubDate>Tue, 28 Feb 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/nydus-container-image-acceleration-practices-on-the-yosemite-platform/</guid>
<description>文 | 向申 约苗平台运维工程师 关注云原生领域 本文字数 9574 阅读时间 24 分钟 本文是来自向申同学的分享,介绍了其在 K8s 生产环境集群部署 Nydus 的相关实践。 Nydus 是蚂蚁</description>
</item>
<item>
<title>SOFA Weekly | 本周贡献 & issue 精选</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230217/</link>
<pubDate>Fri, 17 Feb 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230217/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>SOFAChannel#32 你的开源入门指南——Kata Containers 社区</title>
<link>https://sofastack.github.io/sofastack.tech/activities/sofa-channel-32/</link>
<pubDate>Thu, 16 Feb 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/activities/sofa-channel-32/</guid>
<description>概要 活动主题:SOFAChannel#32:你的开源入门指南——Kata Containers 社区 活动时间:02 月 25 日,周四晚 19 点 活动形式:线上直播 资料下载:待</description>
</item>
<item>
<title>SOFAChannel#32 你的开源入门指南——Kata Containers 社区</title>
<link>https://sofastack.github.io/sofastack.tech/activities/sofachannel-32/</link>
<pubDate>Wed, 15 Feb 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/activities/sofachannel-32/</guid>
<description>概要 活动主题:SOFAChannel#32:你的开源入门指南——Kata Containers 社区 活动时间:02 月 25 日,周四晚 19 点 活动形式:线上直播 资料下载:待</description>
</item>
<item>
<title>Go 语言,如何做逆向类型推导?</title>
<link>https://sofastack.github.io/sofastack.tech/blog/go-language-how-to-do-inverse-type-derivation/</link>
<pubDate>Tue, 14 Feb 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/go-language-how-to-do-inverse-type-derivation/</guid>
<description>文|朱德江(GitHub ID:doujiang24) MOSN 项目核心开发者蚂蚁集团技术专家 专注于云原生网关研发的相关工作。 本文 224 字 阅读 8 分钟 PART. 1 引</description>
</item>
<item>
<title>SOFA Weekly | 本周贡献 & issue 精选</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230210/</link>
<pubDate>Fri, 10 Feb 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230210/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>SOFA Weekly | 本周贡献 & issue 精选</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230203/</link>
<pubDate>Fri, 03 Feb 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230203/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>Nydus 加速镜像一致性校验增强</title>
<link>https://sofastack.github.io/sofastack.tech/blog/nudus-20230131/</link>
<pubDate>Tue, 31 Jan 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/nudus-20230131/</guid>
<description>导言: GitLink 编程夏令营是在 CCF 中国计算机学会指导下,由 CCF 开源发展委员会(CCF ODC)举办的面向全国高校学生的暑期编程活动。这是去年(2022)的</description>
</item>
<item>
<title>SOFA Weekly | SOFANews、本周贡献 & issue 精选</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230127/</link>
<pubDate>Fri, 27 Jan 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20230127/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>Special Weekly | 瑞兔送福,Live Long and Prosper</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-special-weekly/</link>
<pubDate>Sat, 21 Jan 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-special-weekly/</guid>
<description>送虎迎兔 各位 SOFAStack 社区的朋友好: 我是 SOFAStack 社区的负责人鲁直,度过了令人难忘的虎年,我们即将迈入充满希望的兔年,在这里给大家拜个早年,祝大家兔年吉祥。</description>
</item>
<item>
<title>一个 go-sql-driver 的离奇 bug</title>
<link>https://sofastack.github.io/sofastack.tech/blog/go-sql-driver-amazing-bug/</link>
<pubDate>Tue, 17 Jan 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/go-sql-driver-amazing-bug/</guid>
<description>文|郝洪范 京东技术专家 Seata-go 项目共同发起人 微服务底层技术的探索与研究。 本文 3482 字 阅读 7 分钟 对于 Go CURD Boy 来说,相信 github.com/go-sql-driver/mysql 这个库都不会陌生。基本上 Go 的 CURD 都离</description>
</item>
<item>
<title>SOFA Weekly | 铜锁探「密」、本周贡献 & issue 精选</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20220113/</link>
<pubDate>Fri, 13 Jan 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20220113/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>Nerdctl 原生支持 Nydus 加速镜像</title>
<link>https://sofastack.github.io/sofastack.tech/blog/nerdctl-natively-supports-nydus-accelerated-mirroring/</link>
<pubDate>Tue, 10 Jan 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/nerdctl-natively-supports-nydus-accelerated-mirroring/</guid>
<description>文|李楠(GitHub ID : @loheagn) 北京航空航天大学 21 级研究生 云原生底层系统的开发和探索工作。 本文 6369 字 阅读 16 分钟 OSPP 开源之夏是由中科院</description>
</item>
<item>
<title>SOFA Weekly | SOFANews、本周贡献 & issue 精选</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofaweekly-20230106/</link>
<pubDate>Fri, 06 Jan 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofaweekly-20230106/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>SOFARegistry | 聊一聊服务发现的数据一致性</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofaregistry-talk-about-the-data-consistency-of-service-discovery/</link>
<pubDate>Tue, 03 Jan 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofaregistry-talk-about-the-data-consistency-of-service-discovery/</guid>
<description>文|肖健(花名:昱恒) 蚂蚁集团技术专家 专注于服务发现领域,目前主要从事蚂蚁注册中心 SOFARegistry 设计、研发工作。 本文 9492字 阅读 24 分钟 PART. 1 前言 1.1 什么是</description>
</item>
<item>
<title>SOFARegistry | 聊一聊服务发现的数据一致性</title>
<link>https://sofastack.github.io/sofastack.tech/projects/sofa-registry/code-analyze/sofaregistry-talk-about-the-data-consistency-of-service-discovery/</link>
<pubDate>Tue, 03 Jan 2023 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/projects/sofa-registry/code-analyze/sofaregistry-talk-about-the-data-consistency-of-service-discovery/</guid>
<description>文|肖健(花名:昱恒) 蚂蚁集团技术专家 专注于服务发现领域,目前主要从事蚂蚁注册中心 SOFARegistry 设计、研发工作。 本文 9492字 阅读 24 分钟 PART. 1 前言 1.1 什么是</description>
</item>
<item>
<title>SOFA Weekly | 2023 我们一起加油、本周 Contributor & QA</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20221230/</link>
<pubDate>Fri, 30 Dec 2022 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20221230/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>Nydus 镜像扫描加速</title>
<link>https://sofastack.github.io/sofastack.tech/blog/nydus-mirror-scan-acceleration/</link>
<pubDate>Tue, 27 Dec 2022 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/nydus-mirror-scan-acceleration/</guid>
<description>文|余硕 上海交通大学22届毕业生阿里云开发工程师 从事云原生底层系统的开发和探索工作。 本文 6369 字 阅读 16 分钟 GitLink 编程夏令营是在 CCF 中国计算机学会指导下</description>
</item>
<item>
<title>SOFA Weekly | 新年礼包已就位、本周 Contributor & QA</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-202211223/</link>
<pubDate>Fri, 23 Dec 2022 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-202211223/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>Dragonfly 和 Nydus Mirror 模式集成实践</title>
<link>https://sofastack.github.io/sofastack.tech/blog/dragonfly-and-nydus-mirror-mode-integration-practice/</link>
<pubDate>Tue, 20 Dec 2022 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/dragonfly-and-nydus-mirror-mode-integration-practice/</guid>
<description>文|戚文博 (花名:百蓦) Dragonfly Maintainer蚂蚁集团软件工程师 主要负责「基于 P2P 的文件以及镜像加速系统」。 本文 2175 字 阅读 15 分钟 PART. 1 背景 自 17 年开</description>
</item>
<item>
<title>SOFA Weekly | Tongsuo 8.3.2 版本发布、C 位大咖说、本周 Contributor & QA</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20221216/</link>
<pubDate>Fri, 16 Dec 2022 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20221216/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>已来到 “后云原生时代” 的我们,如何规模化运维?</title>
<link>https://sofastack.github.io/sofastack.tech/blog/we-have-come-to-the-post-cloud-native-era-how-can-we-operate-and-maintain-on-a-large-scale/</link>
<pubDate>Fri, 16 Dec 2022 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/we-have-come-to-the-post-cloud-native-era-how-can-we-operate-and-maintain-on-a-large-scale/</guid>
<description>文|李大元 (花名:达远) Kusion 项目负责人 来自蚂蚁集团 PaaS 核心团队,PaaS IaC 基础平台负责人。 本文 4331 字 阅读 11 分钟 PART. 1 后云原生时代 距离 Kubernetes 第一个 commit 已经过</description>
</item>
<item>
<title>SOFAChannel#31 RPC 框架设计的考和量</title>
<link>https://sofastack.github.io/sofastack.tech/activities/sofachannel-31/</link>
<pubDate>Thu, 15 Dec 2022 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/activities/sofachannel-31/</guid>
<description>概要 活动主题:SOFAChannel#31:RPC 框架设计的考和量 活动时间:12 月 15 日,周四晚 19 点 活动形式:线上直播 资料下载:戳这里 B 站直播</description>
</item>
<item>
<title>降本增效:蚂蚁在 Sidecarless 的探索和实践</title>
<link>https://sofastack.github.io/sofastack.tech/blog/cost-reduction-and-efficiency-increase-ants-exploration-and-practice-in-sidecarless/</link>
<pubDate>Tue, 13 Dec 2022 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/cost-reduction-and-efficiency-increase-ants-exploration-and-practice-in-sidecarless/</guid>
<description>文|王发康 (花名:毅松 ) 蚂蚁集团技术专家、MOSN 项目核心开发者 深耕于高性能网络服务器研发,目前专注于云原生 ServiceMesh、Ngin</description>
</item>
<item>
<title>SOFA Weekly | MOSN v1.3.0 版本发布、公众号半自助投稿、本周 Contributor & QA</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20221209/</link>
<pubDate>Fri, 09 Dec 2022 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20221209/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>Service Mesh 的下一站是 Sidecarless 吗?</title>
<link>https://sofastack.github.io/sofastack.tech/blog/is-sidecarless-the-next-stop-for-servicemesh/</link>
<pubDate>Tue, 29 Nov 2022 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/is-sidecarless-the-next-stop-for-servicemesh/</guid>
<description>文|田阳 (花名:烈元) MOSN Maintainer 专注云原生等技术领域 本文3042字 阅读 10 分钟 1. 背景 Service Mesh 被越来越多的公司认可并实践,在实际落地过程中也遇到了形形色色</description>
</item>
<item>
<title>Tongsuo 支持半同态加密算法 Paillier</title>
<link>https://sofastack.github.io/sofastack.tech/blog/tongsuo-supports-the-semi-homomorphic-encryption-algorithm-paillier/</link>
<pubDate>Tue, 22 Nov 2022 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/tongsuo-supports-the-semi-homomorphic-encryption-algorithm-paillier/</guid>
<description>文|王祖熙(花名:金九 ) 蚂蚁集团开发工程师 负责国产化密码库 Tongsuo 的开发和维护 专注于密码学、高性能网络、网络安全等领域 本文 4316 字 阅读10 分钟 1. 背景 在</description>
</item>
<item>
<title>SOFA Weekly | 开源人、本周 Contributor & QA</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20221122/</link>
<pubDate>Fri, 18 Nov 2022 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20221122/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>Dragonfly 中 P2P 传输协议优化</title>
<link>https://sofastack.github.io/sofastack.tech/blog/p2p-transfer-protocol-optimization-in-dragonfly/</link>
<pubDate>Tue, 15 Nov 2022 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/p2p-transfer-protocol-optimization-in-dragonfly/</guid>
<description>文|孙珩珂 上海交通大学 本文1987字 阅读 10 分钟 01 优化背景 此前 Dragonfly 的 P2P 下载采用静态限流策略,相关配置项在 dfget.yaml 配置文件中: # 下载服务选项。 download: # 总下载</description>
</item>
<item>
<title>SOFA Weekly | 本周贡献 & issue 精选</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20221111/</link>
<pubDate>Fri, 11 Nov 2022 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20221111/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>Nydus | 容器镜像基础</title>
<link>https://sofastack.github.io/sofastack.tech/blog/container-image-basics/</link>
<pubDate>Wed, 09 Nov 2022 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/container-image-basics/</guid>
<description>文|唐斌 字节跳动基础架构研发工程师 Nydus 与 Nydus snapshotter 社区贡献者,专注存储,云原生技术。 本文 6964 字 阅读 15 分钟 1 Nydus 1.1 存在的问题 对于容器镜像使用者 问题一: 启动</description>
</item>
<item>
<title>SOFA Weekly | 开源人、本周 Contributor & QA</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20221104/</link>
<pubDate>Fri, 04 Nov 2022 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20221104/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>SOFAChannel#30 Nydus 开源容器镜像加速服务的演进与未来</title>
<link>https://sofastack.github.io/sofastack.tech/activities/sofa-channel-30/</link>
<pubDate>Thu, 03 Nov 2022 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/activities/sofa-channel-30/</guid>
<description>概要 活动主题:SOFAChannel#30:Nydus 开源容器镜像加速服务的演进与未来 活动时间:11 月 03 日,周四晚 19 点 活动形式:线上直播 资料</description>
</item>
<item>
<title>SOFARegistry | 大规模集群优化实践</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofaregistry-large-scale-cluster-optimization-practice/20221103/</link>
<pubDate>Thu, 03 Nov 2022 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofaregistry-large-scale-cluster-optimization-practice/20221103/</guid>
<description>文|李旭东 专注于 SOFARegistry 及其周边基础设施的开发与优化 本文 7016 字 阅读 15 分钟 1 前言 SOFARegistry 在蚂蚁内部迭代升级过程中,每年大促都会引来一些新的挑战,通过不断的优</description>
</item>
<item>
<title>SOFA Weekly | MOSN v1.2.0 版本发布、开源人、本周 Contributor & QA</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly/20221028/</link>
<pubDate>Fri, 28 Oct 2022 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly/20221028/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>cgo 机制 - 从 c 调用 go</title>
<link>https://sofastack.github.io/sofastack.tech/blog/c-go-mechanism-calling-go-from-c/20221008/</link>
<pubDate>Sat, 08 Oct 2022 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/c-go-mechanism-calling-go-from-c/20221008/</guid>
<description>文|朱德江(GitHub ID:doujiang24) MOSN 项目核心开发者蚂蚁集团技术专家 专注于云原生网关研发的相关工作 本文 4656 字 阅读 12 分钟 一、前言</description>
</item>
<item>
<title>SOFA Weekly | C 位大咖说 & QA</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20221007/</link>
<pubDate>Fri, 07 Oct 2022 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20221007/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>开源项目文档社区化!Tongsuo/铜锁实践</title>
<link>https://sofastack.github.io/sofastack.tech/blog/20220929/</link>
<pubDate>Thu, 29 Sep 2022 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/20220929/</guid>
<description>文|杨洋(花名:凯申 ) 铜锁开源密码库创始人蚂蚁集团高级技术专家 本文 1284 字 阅读 5 分钟 1 前言 如大家所见,针对铜锁开源密码库( *https://gi</description>
</item>
<item>
<title>从规模化平台工程实践,我们学到了什么?</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofastack20220927/</link>
<pubDate>Tue, 27 Sep 2022 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofastack20220927/</guid>
<description>文|朵晓东(花名:奕杉 ) KusionStack 负责人、蚂蚁集团资深技术专家 在基础设施技术领域深耕,专注云原生网络、运维及编程语言等技术工作 一、摘要 本文尝试从平台</description>
</item>
<item>
<title>SOFA Weekly |开源人、本周 QA、本周 Contributor</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly/20220923/</link>
<pubDate>Fri, 23 Sep 2022 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly/20220923/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>Seata AT 模式代码级详解</title>
<link>https://sofastack.github.io/sofastack.tech/blog/20220920/</link>
<pubDate>Tue, 20 Sep 2022 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/20220920/</guid>
<description>文| 刘月财 seata-go 项目负责人 北京小桔科技有限公司【滴滴】开发工程师 赵新(花名:于雨 ) 蚂蚁集团 Seata 项目开源负责人 本文5343字 阅读 14分钟 背景 Seata 四种事</description>
</item>
<item>
<title>SOFA Weekly | C 位大咖说、本周 QA、本周 Contributor</title>
<link>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20220916/</link>
<pubDate>Fri, 16 Sep 2022 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/blog/sofa-weekly-20220916/</guid>
<description>SOFA WEEKLY | 每周精选 筛选每周精华问答,同步开源进展,欢迎留言互动~ SOFAStack(Scalable Open Financial Architecture Stack)是蚂蚁集团自主研发的金融级</description>
</item>
<item>
<title>SOFATalk#1 SOFARegistry 源码解析:推送延迟 trace</title>
<link>https://sofastack.github.io/sofastack.tech/activities/sofa-talk-1/</link>
<pubDate>Wed, 14 Sep 2022 15:00:00 +0800</pubDate>
<guid>https://sofastack.github.io/sofastack.tech/activities/sofa-talk-1/</guid>
<description>概要 活动主题:SOFATalk#1 SOFARegistry 源码解析:推送延迟 trace 活动时间:09 月 14 日,周三晚 19 点 活动形式:线上直播 直播回放:点击观看 资料下载:戳这里</description>