forked from r0light/cna-quality-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathliterature.ts
685 lines (683 loc) · 30.6 KB
/
literature.ts
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
type LiteratureSpec = {
title: string,
year: number,
authors: string,
publisher: string,
url: string
}
export const literature = {
"Davis2019": {
"title": "Cloud Native Patterns",
"year": 2019,
"authors": "Cornelia Davis",
"publisher": "Manning",
"url": "https://www.manning.com/books/cloud-native-patterns"
},
"Garrison2017": {
"title": "Cloud Native Infrastructure",
"year": 2017,
"authors": "Justin Garrison and Kris Nova",
"publisher": "O'Reilly",
"url": "https://www.oreilly.com/library/view/cloud-native-infrastructure/9781491984291/"
},
"Bastani2017": {
"title": "Cloud Native Java",
"year": 2017,
"authors": "Kenny Bastani and Josh Long",
"publisher": "O'Reilly",
"url": "https://www.oreilly.com/library/view/cloud-native-java/9781449374631/"
},
"Scholl2019": {
"title": "Cloud Native",
"year": 2019,
"authors": "Boris Scholl, Trent Swanson, and Peter Jausovec",
"publisher": "O'Reilly",
"url": "https://www.oreilly.com/library/view/cloud-native/9781492053811/"
},
"Richardson2019": {
"title": "Microservices Patterns",
"year": 2019,
"authors": "Chris Richardson",
"publisher": "Manning",
"url": "https://www.manning.com/books/microservices-patterns"
},
"Reznik2019": {
"title": "Cloud Native Transformation",
"year": 2019,
"authors": "Pini Reznik, Jamie Dobson, and Michelle Gienow",
"publisher": "O'Reilly",
"url": "https://www.oreilly.com/library/view/cloud-native-transformation/9781492048893/"
},
"Arundel2019": {
"title": "Cloud Native DevOps with Kubernetes",
"year": 2019,
"authors": "John Arundel and Justin Domingus",
"publisher": "O'Reilly",
"url": "https://www.oreilly.com/library/view/cloud-native-devops/9781492040750/"
},
"Ibryam2020": {
"title": "Kubernetes Patterns",
"year": 2020,
"authors": "Bilgin Ibryam and Roland Huß",
"publisher": "O'Reilly",
"url": "https://www.oreilly.com/library/view/kubernetes-patterns/9781492050278/"
},
"Adkins2020": {
"title": "Building Secure and Reliable Systems",
"year": 2020,
"authors": "Heather Adkins, Betsy Beyer, Paul Blankinship, Piotr Lewandowski, Ana Oprea, and Adam Stubblefield",
"publisher": "O'Reilly",
"url": "https://www.oreilly.com/library/view/building-secure-and/9781492083115/"
},
"Indrasiri2021": {
"title": "Design Patterns for Cloud Native Applications",
"year": 2021,
"authors": "Kasun Indrasiri and Sriskandarajah Suhothayan",
"publisher": "O'Reilly",
"url": "https://www.oreilly.com/library/view/design-patterns-for/9781492090700/"
},
"Ruecker2021": {
"title": "Practical Process Automation",
"year": 2021,
"authors": "Bernd Rücker",
"publisher": "O'Reilly",
"url": "https://www.oreilly.com/library/view/practical-process-automation/9781492061441/"
},
"Goniwada2021": {
"title": "Cloud Native Architecture and Design",
"year": 2021,
"authors": "Shivakumar Goniwada",
"publisher": "Apress",
"url": "https://link.springer.com/book/10.1007/978-1-4842-7226-8"
},
"AbdelBaky2019": {
"title": "A general performance and QoS model for distributed software-defined environments",
"year": 2019,
"authors": "Moustafa AbdelBaky and Manish Parashar",
"publisher": "",
"url": "https://doi.org/10.1109/TSC.2019.2928300"
},
"Alam2016": {
"title": "A cloud platform-as-a-service for multimedia conferencing service provisioning",
"year": 2016,
"authors": "Ahmad F. B. Alam and Abbas Soltanian and Sami Yangui and Mohammad A. Salahuddin and Roch Glitho and Halima Elbiaze",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/iscc.2016.7543756"
},
"Apel2019": {
"title": "Towards a metrics-based software quality rating for a microservice architecture",
"year": 2019,
"authors": "Sebastian Apel and Florian Hertrampf and Steffen Späthe",
"publisher": "Springer International Publishing",
"url": "https://doi.org/10.1007%2F978-3-030-22482-0_15"
},
"Arumugam2017": {
"title": "Secure and QoS guaranteed selection resource for storing health care information of cloud users",
"year": 2017,
"authors": "K. Arumugam and P. Sumathi",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/iccmc.2017.8282657"
},
"Athanasopoulos2011": {
"title": "Fine-grained metrics of cohesion lack for service interfaces",
"year": 2011,
"authors": "Dionysis Athanasopoulos and Apostolos V. Zarras",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/icws.2011.27"
},
"Athanasopoulos2015": {
"title": "Cohesion-driven decomposition of service interfaces without access to source code",
"year": 2015,
"authors": "Dionysis Athanasopoulos and Apostolos V. Zarras and George Miskos and Valerie Issarny and Panos Vassiliadis",
"publisher": "Institute of Electrical; Electronics Engineers (IEEE)",
"url": "https://doi.org/10.1109/tsc.2014.2310195"
},
"BaniIsmail2018": {
"title": "A survey of existing evaluation frameworks for service identification methods: Towards a comprehensive evaluation framework",
"year": 2018,
"authors": "Basel Bani-Ismail and Youcef Baghdadi",
"publisher": "Springer International Publishing",
"url": "https://doi.org/10.1007%2F978-3-319-95204-8_17"
},
"Baranwal2014": {
"title": "A framework for selection of best cloud service provider using ranked voting method",
"year": 2014,
"authors": "Gaurav Baranwal and Deo Prakash Vidyarthi",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/iadcc.2014.6779430"
},
"Baranwal2016": {
"title": "A cloud service selection model using improved ranked voting method",
"year": 2016,
"authors": "Gaurav Baranwal and Deo Prakash Vidyarthi",
"publisher": "Wiley",
"url": "https://doi.org/10.1002/cpe.3740"
},
"BASCI2009": {
"title": "Data complexity metrics for XML web services",
"year": 2009,
"authors": "D. BASCI and S. MISRA",
"publisher": "Universitatea Stefan cel Mare din Suceava",
"url": "https://doi.org/10.4316/aece.2009.02002"
},
"Becker2015": {
"title": "Systematically deriving quality metrics for cloud computing systems",
"year": 2015,
"authors": "Matthias Becker and Sebastian Lehrig and Steffen Becker",
"publisher": "Association for Computing Machinery",
"url": "https://doi.org/10.1145/2668930.2688043"
},
"Bento2021": {
"title": "Automated analysis of distributed tracing: Challenges and research directions",
"year": 2021,
"authors": "Andre Bento and Jaime Correia and Ricardo Filipe and Filipe Araujo and Jorge Cardoso",
"publisher": "Springer Science; Business Media LLC",
"url": "https://doi.org/10.1007/s10723-021-09551-5"
},
"Bogner2020": {
"title": "Collecting service-based maintainability metrics from RESTful API descriptions: Static analysis and threshold derivation",
"year": 2020,
"authors": "Justus Bogner and Stefan Wagner and Alfred Zimmermann",
"publisher": "Springer International Publishing",
"url": "https://doi.org/10.1007%2F978-3-030-59155-7_16"
},
"Bogner2017": {
"title": "Automatically measuring the maintainability of service- and microservice-based systems: A literature review",
"year": 2017,
"authors": "Justus Bogner and Stefan Wagner and Alfred Zimmermann",
"publisher": "Association for Computing Machinery",
"url": "https://doi.org/10.1145/3143434.3143443"
},
"Brito2021": {
"title": "Identification of microservices from monolithic applications through topic modelling",
"year": 2021,
"authors": "Miguel Brito and Jácome Cunha and João Saraiva",
"publisher": "Association for Computing Machinery",
"url": "https://doi.org/10.1145/3412841.3442016"
},
"Souza2016": {
"title": "Architectural recovering model for distributed databases: A reliability, availability and serviceability approach",
"year": 2016,
"authors": "Ramon Hugo Souza and Paulo Arion Flores and Mario Antonio Ribeiro Dantas and Frank Siqueira",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/iscc.2016.7543799"
},
"Engel2018": {
"title": "Evaluation of microservice architectures: A metric and tool-based approach",
"year": 2018,
"authors": "Thomas Engel and Melanie Langermeier and Bernhard Bauer and Alexander Hofmann",
"publisher": "Springer International Publishing",
"url": "https://doi.org/10.1007%2F978-3-319-92901-9_8"
},
"Garg2013": {
"title": "A framework for ranking of cloud computing services",
"year": 2013,
"authors": "Saurabh Kumar Garg and Steve Versteeg and Rajkumar Buyya",
"publisher": "Elsevier BV",
"url": "https://doi.org/10.1016/j.future.2012.06.006"
},
"Guerout2014": {
"title": "Quality of service modeling for green scheduling in clouds",
"year": 2014,
"authors": "Tom Guérout and Samir Medjiah and Georges Da Costa and Thierry Monteil",
"publisher": "Elsevier BV",
"url": "https://doi.org/10.1016/j.suscom.2014.08.006"
},
"Guerron2020": {
"title": "A taxonomy of quality metrics for cloud services",
"year": 2020,
"authors": "Ximena Guerron and Silvia Abrahão and Emilio Insfran and Marta Fernández-Diego and Fernando González-Ladrón-De-Guevara",
"publisher": "",
"url": "https://doi.org/10.1109/ACCESS.2020.3009079"
},
"Haupt2017": {
"title": "A framework for the structural analysis of REST APIs",
"year": 2017,
"authors": "Florian Haupt and Frank Leymann and Anton Scherer and Karolina Vukojevic-Haupt",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/icsa.2017.40"
},
"Hirzalla2009": {
"title": "A metrics suite for evaluating flexibility and complexity in service oriented architectures",
"year": 2009,
"authors": "Mamoun Hirzalla and Jane Cleland-Huang and Ali Arsanjani",
"publisher": "Springer Berlin Heidelberg",
"url": "https://doi.org/10.1007/978-3-642-01247-1_5"
},
"Hofmeister2008": {
"title": "Supporting service-oriented design with metrics",
"year": 2008,
"authors": "Helge Hofmeister and Guido Wirtz",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/edoc.2008.13"
},
"Hu2016": {
"title": "Elasticity evaluation of IaaS cloud based on mixed workloads",
"year": 2016,
"authors": "Yazhou Hu and Bo Deng and Yu Yang and Dongxia Wang",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/ispdc.2016.28"
},
"Jin2021": {
"title": "Service candidate identification from monolithic systems based on execution traces",
"year": 2021,
"authors": "Wuxia Jin and Ting Liu and Yuanfang Cai and Rick Kazman and Ran Mo and Qinghua Zheng",
"publisher": "Institute of Electrical; Electronics Engineers (IEEE)",
"url": "https://doi.org/10.1109/tse.2019.2910531"
},
"Jin2018": {
"title": "Functionality-oriented microservice extraction based on execution trace clustering",
"year": 2018,
"authors": "Wuxia Jin and Ting Liu and Qinghua Zheng and Di Cui and Yuanfang Cai",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/icws.2018.00034"
},
"Karhikeyan2012": {
"title": "A metrics suite and fuzzy model for measuring coupling in service oriented architecture",
"year": 2012,
"authors": "T. Karhikeyan and J. Geetha",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/racss.2012.6212677"
},
"Kazemi2011": {
"title": "An information retrieval based approach for measuring service conceptual cohesion",
"year": 2011,
"authors": "Ali Kazemi and Ali Rostampour and Amin Zamiri and Pooyan Jamshidi and Hassan Haghighi and Fereidoon Shams",
"publisher": "IEEE",
"url": "https://doi.org/"
},
"KAZEMI2013": {
"title": "ABSIM: AN AUTOMATED BUSINESS SERVICE IDENTIFICATION METHOD",
"year": 2013,
"authors": "ALI KAZEMI and HASSAN HAGHIGHI and FEREIDOON SHAMS",
"publisher": "World Scientific Pub Co Pte Lt",
"url": "https://doi.org/"
},
"Kuhlenkamp2019": {
"title": "An evaluation of FaaS platforms as a foundation for serverless big data processing",
"year": 2019,
"authors": "Jörn Kuhlenkamp and Sebastian Werner and Maria C. Borges and Karim El Tal and Stefan Tai",
"publisher": "Association for Computing Machinery",
"url": "https://doi.org/10.1145/3344341.3368796"
},
"La2013": {
"title": "Framework for evaluating reusability of component-as-a-service (CaaS)",
"year": 2013,
"authors": "Hyun Jung La and Jin Sun Her and Soo Dong Kim",
"publisher": "IEEE",
"url": "https://doi.org/"
},
"Lehmann2017": {
"title": "A framework for evaluating continuous microservice delivery strategies",
"year": 2017,
"authors": "Martin Lehmann and Frode Eika Sandnes",
"publisher": "Association for Computing Machinery",
"url": "https://doi.org/10.1145/3018896.3018961"
},
"Li2020": {
"title": "Quantitative modeling and analytical calculation of elasticity in cloud computing",
"year": 2020,
"authors": "Keqin Li",
"publisher": "",
"url": "https://doi.org/10.1109/TCC.2017.2665549"
},
"Ma2009": {
"title": "Evaluating service identification with design metrics on business process decomposition",
"year": 2009,
"authors": "Qian Ma and Nianjun Zhou and Yanfeng Zhu and Hao Wang",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/scc.2009.44"
},
"Manuel2013": {
"title": "A trust model of cloud computing based on quality of service",
"year": 2013,
"authors": "Paul Manuel",
"publisher": "Springer Science; Business Media LLC",
"url": "https://doi.org/10.1007/s10479-013-1380-x"
},
"NikDaud2014": {
"title": "Static and dynamic classifications for SOA structural attributes metrics",
"year": 2014,
"authors": "Nik Marsyahariani Nik Daud and Wan M. N. Wan Kadir",
"publisher": "",
"url": "https://doi.org/10.1109/MySec.2014.6986002"
},
"Ntentos2020a": {
"title": "Assessing architecture conformance to coupling-related patterns and practices in microservices",
"year": 2020,
"authors": "Evangelos Ntentos and Uwe Zdun and Konstantinos Plakidas and Sebastian Meixner and Sebastian Geiger",
"publisher": "Springer International Publishing",
"url": "https://doi.org/10.1007%2F978-3-030-58923-3_1"
},
"Ntentos2020": {
"title": "Metrics for assessing architecture conformance to microservice architecture patterns and practices",
"year": 2020,
"authors": "Evangelos Ntentos and Uwe Zdun and Konstantinos Plakidas and Sebastian Meixner and Sebastian Geiger",
"publisher": "Springer",
"url": "https://doi.org/10.1007/978-3-030-65310-1_42"
},
"Oh2011": {
"title": "A reusability evaluation suite for cloud services",
"year": 2011,
"authors": "Sang Hun Oh and Hyun Jung La and Soo Dong Kim",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/icebe.2011.27"
},
"Oliveira2018": {
"title": "SOA reuse: Systematic literature review updating and research directions",
"year": 2018,
"authors": "Joyce Aline Oliveira and Matheus Vargas and Roni Rodrigues",
"publisher": "Association for Computing Machinery",
"url": "https://doi.org/10.1145/3229345.3229419"
},
"Perepletchikov2007": {
"title": "Cohesion metrics for predicting maintainability of service-oriented software",
"year": 2007,
"authors": "Mikhail Perepletchikov and Caspar Ryan and Keith Frampton",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/qsic.2007.4385516"
},
"Perepletchikov2007a": {
"title": "Coupling metrics for predicting maintainability in service-oriented designs",
"year": 2007,
"authors": "Mikhail Perepletchikov and Caspar Ryan and Keith Frampton and Zahir Tari",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/aswec.2007.17"
},
"PTQ2009": {
"title": "Dynamic coupling metrics for service – oriented software",
"year": 2009,
"authors": "undefined undefined and Huynh Quyet Thang",
"publisher": "Zenodo",
"url": "https://doi.org/10.5281/ZENODO.1058263"
},
"Qian2006": {
"title": "Decoupling metrics for services composition",
"year": 2006,
"authors": "Kai Qian and Jigang Liu and F. Tsui",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/icis-comsar.2006.30"
},
"Raj2018": {
"title": "Microservices: A perfect SOA based solution for enterprise applications compared to web services",
"year": 2018,
"authors": "Vinay Raj and S. Ravichandra",
"publisher": "",
"url": "https://doi.org/10.1109/RTEICT42901.2018.9012140"
},
"Raj2021": {
"title": "Evaluation of SOA-based web services and microservices architecture using complexity metrics",
"year": 2021,
"authors": "Vinay Raj and Ravichandra Sadam",
"publisher": "Springer Science; Business Media LLC",
"url": "https://doi.org/10.1007%2Fs42979-021-00767-6"
},
"Rizvi2017": {
"title": "Three-step approach to QoS maintenance in cloud computing using a third-party auditor",
"year": 2017,
"authors": "Syed Rizvi and Hannah Roddy and Joseph Gualdoni and Ilva Myzyri",
"publisher": "Elsevier BV",
"url": "https://doi.org/10.1016/j.procs.2017.09.014"
},
"Rosa2020": {
"title": "How “micro” are your services?",
"year": 2020,
"authors": "Thatiane de Oliveira Rosa and Alfredo Goldman and Eduardo Martins Guerra",
"publisher": "",
"url": "https://doi.org/10.1109/ICSA-C50368.2020.00023"
},
"Rud2006": {
"title": "Product Metrics for Service-Oriented Infrastructures",
"year": 2006,
"authors": "Dmytro Rud and Andreas Schmietendorf and Reiner R. Dumke",
"publisher": "",
"url": ""
},
"Shim2008": {
"title": "A design quality model for service-oriented architecture",
"year": 2008,
"authors": "Bingu Shim and Siho Choue and Suntae Kim and Sooyong Park",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/apsec.2008.32"
},
"Singh2015": {
"title": "Q-aware: Quality of service based cloud resource provisioning",
"year": 2015,
"authors": "Sukhpal Singh and Inderveer Chana",
"publisher": "Elsevier BV",
"url": "https://doi.org/10.1016/j.compeleceng.2015.02.003"
},
"Slimani2020": {
"title": "Service-oriented replication strategies for improving quality-of-service in cloud computing: A survey",
"year": 2020,
"authors": "Sarra Slimani and Tarek Hamrouni and Faouzi Ben Charrada",
"publisher": "Springer Science; Business Media LLC",
"url": "https://doi.org/10.1007/s10586-020-03108-z"
},
"Taherizadeh2017": {
"title": "Incremental learning from multi-level monitoring data and its application to component based software engineering",
"year": 2017,
"authors": "Salman Taherizadeh and Vlado Stankovski",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/compsac.2017.148"
},
"Talwar2005": {
"title": "Comparison of approaches to service deployment",
"year": 2005,
"authors": "V. Talwar and Qinyi Wu and C. Pu and Wenchang Yan and Gueyoung Jung and D. Milojicic",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/icdcs.2005.18"
},
"Tiwari2014": {
"title": "In-out interaction complexity metrics for component-based software",
"year": 2014,
"authors": "Umesh Tiwari and Santosh Kumar",
"publisher": "Association for Computing Machinery",
"url": "https://doi.org/10.1145/2659118.2659135"
},
"Vedam2012": {
"title": "Demystifying cloud benchmarking paradigm - an in depth view",
"year": 2012,
"authors": "Venu Vedam and Jayanti Vemulapati",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/compsac.2012.61"
},
"Wang2009": {
"title": "Metrics for evaluating coupling and service granularity in service oriented architecture",
"year": 2009,
"authors": "Xiao-jun Wang",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/iciecs.2009.5362767"
},
"Xiong2015": {
"title": "Ensuring cloud service guarantees via service level agreement (SLA)-based resource allocation",
"year": 2015,
"authors": "Kaiqi Xiong and Xiao Chen",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/icdcsw.2015.18"
},
"Zdun2017": {
"title": "Ensuring and assessing architecture conformance to microservice decomposition patterns",
"year": 2017,
"authors": "Uwe Zdun and Elena Navarro and Frank Leymann",
"publisher": "Springer International Publishing",
"url": "https://doi.org/10.1007%2F978-3-319-69035-3_29"
},
"Zhang2009": {
"title": "Complexity metrics for service-oriented systems",
"year": 2009,
"authors": "Qingqing Zhang and Li Xinke",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/kam.2009.90"
},
"Zimmermann2015": {
"title": "Metrics for architectural synthesis and evaluation: Requirements and compilation by viewpoint: An industrial experience report",
"year": 2015,
"authors": "Olaf Zimmermann",
"publisher": "IEEE Press",
"url": "https://doi.org/10.1109/SAM.2015.9"
},
"Camilli2022": {
"title": "Microservices integrated performance and reliability testing",
"year": 2022,
"authors": "Matteo Camilli and Antonio Guerriero and Andrea Janes and Barbara Russo and Stefano Russo",
"publisher": "Association for Computing Machinery",
"url": "https://doi.org/10.1145/3524481.3527233"
},
"Filippone2023": {
"title": "From monolithic to microservice architecture: An automated approach based on graph clustering and combinatorial optimization",
"year": 2023,
"authors": "Gianluca Filippone and Nadeem Qaisar Mehmood and Marco Autili and Fabrizio Rossi and Massimo Tivoli",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/icsa56044.2023.00013"
},
"Genfer2021": {
"title": "Identifying domain-based cyclic dependencies in microservice APIs using source code detectors",
"year": 2021,
"authors": "Patric Genfer and Uwe Zdun",
"publisher": "Springer International Publishing",
"url": "https://doi.org/10.1007/978-3-030-86044-8_15"
},
"Henning2022": {
"title": "A configurable method for benchmarking scalability of cloud-native applications",
"year": 2022,
"authors": "Sören Henning and Wilhelm Hasselbring",
"publisher": "Springer Science; Business Media LLC",
"url": "https://doi.org/10.1007/s10664-022-10162-1"
},
"Moreira2022": {
"title": "Analysis of microservice evolution using cohesion metrics",
"year": 2022,
"authors": "Mateus Gabi Moreira and Breno Bernard Nicolau De França",
"publisher": "Association for Computing Machinery",
"url": "https://doi.org/10.1145/3559712.3559716"
},
"Ntentos2022": {
"title": "Assessing architecture conformance to security-related practices in infrastructure as code based deployments",
"year": 2022,
"authors": "Evangelos Ntentos and Uwe Zdun and Ghareeb Falazi and Uwe Breitenbucher and Frank Leymann",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/scc55611.2022.00029"
},
"Peng2022": {
"title": "Trace analysis based microservice architecture measurement",
"year": 2022,
"authors": "Xin Peng and Chenxi Zhang and Zhongyuan Zhao and Akasaka Isami and Xiaofeng Guo and Yunna Cui",
"publisher": "Association for Computing Machinery",
"url": "https://doi.org/10.1145/3540250.3558951"
},
"Silva2023": {
"title": "Quality metrics in software architecture",
"year": 2023,
"authors": "Samira Silva and Adiel Tuyishime and Tiziano Santilli and Patrizio Pelliccione and Ludovico Iovino",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/icsa56044.2023.00014"
},
"Straesser2023": {
"title": "A systematic approach for benchmarking of container orchestration frameworks",
"year": 2023,
"authors": "Martin Straesser and Jonas Mathiasch and André Bauer and Samuel Kounev",
"publisher": "Association for Computing Machinery",
"url": "https://doi.org/10.1145/3578244.3583726"
},
"Yussupov2022": {
"title": "Serverless or serverful? A pattern-based approach for exploring hosting alternatives",
"year": 2022,
"authors": "Vladimir Yussupov and Uwe Breitenbücher and Antonio Brogi and Lukas Harzenetter and Frank Leymann and Jacopo Soldani",
"publisher": "Springer International Publishing",
"url": "https://doi.org/10.1007/978-3-031-18304-1_3"
},
"Zdun2023": {
"title": "Microservice security metrics for secure communication, identity management, and observability",
"year": 2023,
"authors": "Uwe Zdun and Pierre-Jean Queval and Georg Simhandl and Riccardo Scandariato and Somik Chakravarty and Marjan Jelic and Aleksandar Jovanovic",
"publisher": "Association for Computing Machinery (ACM)",
"url": "https://doi.org/10.1145/3532183"
},
"Venkitachalam2017": {
"title": "Automated continuous evaluation of AUTOSAR software architecture for complex powertrain systems",
"year": 2017,
"authors": "Hariharan Venkitachalam and Kalkin Anand Powale and Christian Granrath and Johannes Richenhagen",
"publisher": "Gesellschaft für Informatik, Bonn",
"url": ""
},
"Abgaz2023": {
"title": "Decomposition of Monolith Applications Into Microservices Architectures: A Systematic Review",
"year": 2023,
"authors": "Abgaz, Yalemisew and McCarren, Andrew and Elger, Peter and Solan, David and Lapuz, Neil and Bivol, Marin and Jackson, Glenn and Yilmaz, Murat and Buckley, Jim and Clarke, Paul",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/TSE.2023.3287297"
},
"AlDebagy2020": {
"title": "A Metrics Framework for Evaluating Microservices Architecture Designs",
"year": 2020,
"authors": "Al-Debagy, O. and Martinek, P.",
"publisher": "IEEE",
"url": "https://doi.org/10.13052/jwe1540-9589.19341"
},
"Asik2017": {
"title": "Policy enforcement upon software based on microservice architecture",
"year": 2017,
"authors": "Asik, Tugrul and Selcuk, Yunus Emre",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/SERA.2017.7965739"
},
"Assuncao2021": {
"title": "A Multi-Criteria Strategy for Redesigning Legacy Features as Microservices: An Industrial Case Study",
"year": 2021,
"authors": "Assuncao, Wesley K. G. and Colanzi, Thelma Elita and Carvalho, Luiz and Pereira, Juliana Alves and Garcia, Alessandro and de Lima, Maria Julia and Lucena, Carlos",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/saner50967.2021.00042"
},
"Daniel2023": {
"title": "Towards the Detection of Microservice Patterns Based on Metrics",
"year": 2023,
"authors": "Daniel, João and Guerra, Eduardo and Rosa, Thatiane and Goldman, Alfredo",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/SEAA60479.2023.00029"
},
"Desai2021": {
"title": "Graph Neural Network to Dilute Outliers for Refactoring Monolith Application",
"year": 2021,
"authors": "Desai, Utkarsh and Bandyopadhyay, Sambaran and Tamilselvam, Srikanth",
"publisher": "PKP PS",
"url": "https://doi.org/10.1609/aaai.v35i1.16079"
},
"Gamage2021": {
"title": "Using dependency graph and graph theory concepts to identify anti-patterns in a microservices system: A tool-based approach",
"year": 2021,
"authors": "Gamage, Isuru Udara Piyadigama and Perera, Indika",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/MERCon52712.2021.9525743"
},
"Ntentos2021": {
"title": "Evaluating and Improving Microservice Architecture Conformance to Architectural Design Decisions",
"year": 2021,
"authors": "Ntentos, Evangelos and Zdun, Uwe and Plakidas, Konstantinos and Geiger, Sebastian",
"publisher": "IEEE",
"url": "https://doi.org/10.1007/978-3-030-91431-8_12"
},
"Perera2018": {
"title": "TheArchitect: A Serverless-Microservices Based High-level Architecture Generation Tool",
"year": 2018,
"authors": "Perera, K. J. P. G. and Perera, I.",
"publisher": "Springer",
"url": "https://doi.org/10.1109/ICIS.2018.8466390"
},
"Perera2018a": {
"title": "A Rule-based System for Automated Generation of Serverless-Microservices Architecture",
"year": 2018,
"authors": "Perera, K. J. P. G. and Perera, I.",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/SysEng.2018.8544423"
},
"Zdun2023a": {
"title": "Detection Strategies for Microservice Security Tactics",
"year": 2023,
"authors": "Zdun, Uwe and Queval, Pierre-Jean and Simhandl, Georg and Scandariato, Riccardo and Chakravarty, Somik and Jelić, Marjan and Jovanović, Aleksandar",
"publisher": "IEEE",
"url": "https://doi.org/10.1109/TDSC.2023.3276487"
},
} satisfies {[literatureKey: string]: LiteratureSpec }
const literatureKeys = Object.freeze(literature);
export type LiteratureKey = keyof typeof literatureKeys;