-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.yml
1168 lines (1168 loc) · 60.3 KB
/
data.yml
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
landscape:
- category:
name: Materials
subcategories:
- subcategory:
name: Courses
items:
- item:
description: Basic database concepts and principles by Andy Pavlo
homepage_url: https://15445.courses.cs.cmu.edu/fall2023/schedule.html
logo: cmudb.svg
name: CMU 15-445/645 Database Systems
repo_url: https://github.com/cmu-db/bustub
twitter: https://twitter.com/andy_pavlo
- item:
description: 6.5840 is a core 12-unit graduate subject with lectures, readings, programming labs, an optional project, a mid-term exam, and a final exam. It will present abstractions and implementation techniques for engineering distributed systems. Major topics include fault tolerance, replication, and consistency. Much of the class consists of studying and discussing case studies of distributed systems.
homepage_url: https://pdos.csail.mit.edu/6.824/schedule.html
logo: mit.svg
name: Distributed Systems
repo_url: https://github.com/cncf/landscape2
twitter: https://twitter.com/CloudNativeFdn
- item:
description: fast.ai Making neural nets uncool again
homepage_url: https://course.fast.ai/
logo: fastai.svg
name: fast.ai
repo_url: https://github.com/fastai/fastai
twitter: https://twitter.com/fastdotai?s=20
- item:
description: This self-paced course will discuss the major ideas used today in the implementation of programming language compilers, including lexical analysis, parsing, syntax-directed translation, abstract syntax trees, types and type checking, intermediate languages, dataflow analysis, program optimization, code generation, and runtime systems. As a result, you will learn how a program written in a high-level language designed for humans is systematically translated into a program written in low-level assembly more suited to machines. Along the way we will also touch on how programming languages are designed, programming language semantics, and why there are so many different kinds of programming languages.
homepage_url: https://www.edx.org/learn/computer-science/stanford-university-compilers
logo: stanford.svg
name: Stanford Compilers
- item:
description: Reinforcement Learning by David Silver
homepage_url: https://www.davidsilver.uk/teaching/
logo: deepmind.svg
name: RL Course by David Silver
# project: graduated
twitter: https://twitter.com/GoogleDeepMind
- item:
description: An educational OLAP database system
homepage_url: https://github.com/risinglightdb/risinglight
repo_url: https://github.com/risinglightdb/risinglight
logo: risinglight.svg
name: RisingLight
- item:
description: Distributed SQL database in Rust, written as a learning project
homepage_url: https://github.com/erikgrinaker/toydb
repo_url: https://github.com/erikgrinaker/toydb
logo: toydb.svg
name: ToyDB
- item:
description: This may not be the best deep learning framework, but it is a deep learning framework. Due to its extreme simplicity, it aims to be the easiest framework to add new accelerators to, with support for both inference and training. If XLA is CISC, tinygrad is RISC.
homepage_url: https://tinygrad.org/
repo_url: https://github.com/tinygrad/tinygrad
logo: tinygrad.svg
name: Tinygrad
# - subcategory:
# name: Documents
# items:
# - item:
# description: This is the description of item 4
# homepage_url: https://cncf.io
# logo: cncf.svg
# name: Database Internals
# repo_url: https://github.com/cncf/landscape2
# twitter: https://twitter.com/CloudNativeFdn
- category:
name: Research
subcategories:
- subcategory:
name: Distributed Systems
items:
- item:
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
description: This is the description of item 6
homepage_url: https://cncf.io
logo: cncf.svg
name: TAO
# project: graduated
repo_url: https://github.com/cncf/landscape2
twitter: https://twitter.com/CloudNativeFdn
- subcategory:
name: Databases
items:
- item:
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
description: This is the description of item 9
homepage_url: https://cncf.io
logo: cncf.svg
name: Calvin
repo_url: https://github.com/cncf/landscape2
twitter: https://twitter.com/CloudNativeFdn
- category:
name: Taste
subcategories:
- subcategory:
name: ML
items:
- item:
name: Haystack
description: 🔍 LLM orchestration framework to build customizable, production-ready LLM applications. Connect components (models, vector DBs, file converters) to pipelines or agents that can interact with your data. With advanced retrieval methods, it's best suited for building RAG, question answering, semantic search or conversational agent chatbots.
homepage_url: https://docs.haystack.deepset.ai/docs
logo: haystack.svg
repo_url: https://github.com/cncf/landscape2
- subcategory:
name: SaaS
items:
- item:
name: Supabase
description: Supabase is an open source Firebase alternative.Start your project with a Postgres database, Authentication, instant APIs, Edge Functions, Realtime subscriptions, Storage, and Vector embeddings.
homepage_url: https://supabase.com/
logo: supabase.svg
repo_url: https://github.com/supabase/supabase
- item:
name: PocketBase
description: Open Source realtime backend in 1 file
homepage_url: https://pocketbase.io/
logo: pocketbase.svg
repo_url: https://github.com/pocketbase/pocketbase
- item:
name: Fingerprint
description: Browser fingerprinting library. Accuracy of this version is 40-60%, accuracy of the commercial Fingerprint Identification is 99.5%. V4 of this library is BSL licensed.
homepage_url: https://fingerprint.com/
logo: fingerprint.svg
repo_url: https://github.com/fingerprintjs/fingerprintjs/
- item:
name: rocket.chat
description: The communications platform that puts data protection first.
homepage_url: https://www.rocket.chat/
logo: rocketchat.svg
repo_url: https://github.com/RocketChat/Rocket.Chat
- item:
name: Documenso
description: The Open Source DocuSign Alternative.
homepage_url: https://documenso.com/
logo: documenso.svg
repo_url: https://github.com/documenso/documenso
- subcategory:
name: Engineering
items:
- item:
name: Bun
description: Incredibly fast JavaScript runtime, bundler, test runner, and package manager – all in one
homepage_url: https://bun.sh/
logo: bun.svg
repo_url: https://github.com/oven-sh/bun
- item:
name: ReadytSet
description: ReadySet is a lightweight SQL cache that enhances the performance and scalability of your DB without any code changes.
homepage_url: https://readyset.io/
logo: readyset.svg
repo_url: https://github.com/readysettech/readyset
- item:
name: FlowFuse
description: The FlowFuse Platform
homepage_url: https://flowfuse.com/
logo: flowfuse.svg
repo_url: https://github.com/FlowFuse/flowfuse
- item:
name: Jitsu
description: Jitsu is an open-source Segment alternative. Fully-scriptable data ingestion engine for modern data teams. Set-up a real-time data pipeline in minutes, not days.
homepage_url: https://temporal.io/
logo: jitsu.svg
repo_url: https://github.com/jitsucom/jitsu
- item:
name: Temporal
description: Temporal is an open source programming model that can simplify your code, make your applications more reliable, and help you deliver more features faster.
homepage_url: https://temporal.io/
logo: temporal.svg
repo_url: https://github.com/temporalio/temporal
- item:
name: cube
description: Cube — The Semantic Layer for Building Data Applications
homepage_url: https://cube.dev/
logo: cube.svg
repo_url: https://github.com/cube-js/cube
- item:
name: NOCODB
description: 🔥 🔥 🔥 Open Source Airtable Alternative
homepage_url: https://nocodb.com/
logo: nocodb.svg
repo_url: https://github.com/nocodb/nocodb
- item:
name: appsmith
description: Platform to build admin panels, internal tools, and dashboards. Integrates with 15+ databases and any API.
homepage_url: https://www.appsmith.com/
logo: appsmith.svg
repo_url: https://github.com/appsmithorg/appsmith
- item:
name: openobserve
description: 🚀 10x easier, 🚀 140x lower storage cost, 🚀 high performance, 🚀 petabyte scale - Elasticsearch/Splunk/Datadog alternative for 🚀 (logs, metrics, traces).
homepage_url: https://openobserve.ai/
logo: openobserve.svg
repo_url: https://github.com/openobserve/openobserve
- item:
name: GrowthBook
description: Open Source Feature Flagging and A/B Testing Platform
homepage_url: https://www.growthbook.io/
logo: growthbook.svg
repo_url: https://github.com/openobserve/openobserve
- item:
name: Mermaid Chart
description: Generation of diagrams like flowcharts or sequence diagrams from text in a similar manner as markdown
homepage_url: https://www.mermaidchart.com/
logo: mermaid.svg
repo_url: https://github.com/mermaid-js/mermaid
- item:
name: ToolJet
description: Create custom internal tools quickly and easily, with less code and fewer resources. Boost productivity, cut costs, and deploy your tools faster, all while ensuring enterprise-grade security.
homepage_url: https://www.tooljet.com/
logo: tooljet.svg
repo_url: https://github.com/ToolJet/ToolJet
- item:
name: Acron
description: A simple application deployment framework built on Kubernetes
homepage_url: https://docs.acorn.io/
logo: acron.svg
repo_url: https://github.com/acorn-io/runtime
- item:
name: Dagster
description: An orchestration platform for the development, production, and observation of data assets.
homepage_url: https://dagster.io/
logo: dagster.svg
repo_url: https://github.com/acorn-io/runtime
- subcategory:
name: Static Site Generator
items:
- item:
name: Astro
description: The web framework that scales with you — Build fast content sites, powerful web applications, dynamic server APIs, and everything in-between ⭐️ Star to support our work!
homepage_url: https://astro.build/
logo: astro.svg
repo_url: https://github.com/withastro/astro
- item:
name: Svelte
description: web development, streamlined
homepage_url: https://kit.svelte.dev/
logo: svelte.svg
repo_url: https://svelte.dev/
- item:
name: Docusaurus
description: Easy to maintain open source documentation websites.
homepage_url: https://docusaurus.io/
logo: docusaurus.svg
repo_url: https://github.com/facebook/docusaurus
- item:
name: NEXT.JS
description: The React Framework
homepage_url: https://nextjs.org/
logo: nextjs.svg
repo_url: https://github.com/vercel/next.js
- item:
name: Hugo
description: The world’s fastest framework for building websites.
homepage_url: https://gohugo.io/
logo: hugo.svg
repo_url: https://github.com/gohugoio/hugo
- subcategory:
name: Application
items:
- item:
name: OPENBB
description: Investment Research for Everyone, Everywhere.
homepage_url: https://my.openbb.co/app/terminal
logo: openbb.svg
repo_url: https://github.com/OpenBB-finance/OpenBBTerminal
- item:
name: Spacedrive
description: Spacedrive is an open source cross-platform file explorer, powered by a virtual distributed filesystem written in Rust.
homepage_url: https://www.spacedrive.com/
logo: spacedrive.svg
repo_url: https://github.com/spacedriveapp/spacedrive
- subcategory:
name: Community
items:
- item:
name: FOREM
description: Forem is an open source platform for building modern, independent, and safe communities.
homepage_url: https://www.forem.com/
logo: forem.svg
repo_url: https://github.com/forem/forem
- item:
name: Discourse
description: A platform for community discussion. Free, open, simple.
homepage_url: https://www.discourse.org/
logo: discourse.svg
repo_url: https://github.com/discourse/discourse
- subcategory:
name: CMS
items:
- item:
name: strapi
description: 🚀 Strapi is the leading open-source headless CMS. It’s 100% JavaScript/TypeScript, fully customizable and developer-first.
homepage_url: https://strapi.io/
logo: strapi.svg
repo_url: https://github.com/strapi/strapi
- category:
name: Go
subcategories:
- subcategory:
name: HTTP Framework
items:
- item:
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
description: This is the description of item 6
homepage_url: https://cncf.io
logo: cncf.svg
name: Item 6
# project: graduated
repo_url: https://github.com/cncf/landscape2
twitter: https://twitter.com/CloudNativeFdn
- item:
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
description: This is the description of item 7
homepage_url: https://cncf.io
logo: cncf.svg
name: Item 7
# project: sandbox
repo_url: https://github.com/cncf/landscape2
twitter: https://twitter.com/CloudNativeFdn
- item:
description: This is the description of item 8
homepage_url: https://cncf.io
logo: cncf.svg
name: Item 8
- subcategory:
name: ORM
items:
- item:
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
description: This is the description of item 9
homepage_url: https://cncf.io
logo: cncf.svg
name: Item 9
repo_url: https://github.com/cncf/landscape2
twitter: https://twitter.com/CloudNativeFdn
- category:
name: Databases
subcategories:
- subcategory:
name: Transactional
items:
- item:
name: PostgreSQL
homepage_url: https://www.postgresql.org/
repo_url: https://github.com/postgres/postgres
logo: postgre-sql.svg
crunchbase: https://www.crunchbase.com/organization/postgresql
- item:
name: NEON
description: Neon - Serverless Postgres. We separated storage and compute to offer autoscaling, branching, and bottomless storage.
homepage_url: https://neon.tech/
repo_url: https://github.com/neondatabase/neon
logo: neon.svg
- item:
name: CockroachDB
homepage_url: https://www.cockroachlabs.com/
repo_url: https://github.com/cockroachdb/cockroach
logo: cockroach-labs.svg
twitter: https://twitter.com/CockroachDB
- item:
name: Vitess
description: MySQL-compatible, horizontally scalable, cloud-native database solution.
homepage_url: https://vitess.io/
repo_url: https://github.com/vitessio/vitess
additional_repos:
- repo_url: https://github.com/vitessio/website
- repo_url: https://github.com/vitessio/arewefastyet
- repo_url: https://github.com/vitessio/enhancements
logo: vitess.svg
twitter: https://twitter.com/vitessio
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
extra:
accepted: "2018-02-05"
incubating: "2018-02-05"
graduated: "2019-11-05"
dev_stats_url: https://vitess.devstats.cncf.io/
artwork_url: https://github.com/cncf/artwork/blob/master/examples/graduated.md#vitess-logos
stack_overflow_url: https://stackoverflow.com/questions/tagged/vitess
blog_url: https://vitess.io/blog/
cncf_tags:
- https://github.com/cncf/tag-storage
mailing_list_url: https://lists.cncf.io/g/cncf-vitess-users
summary_personas: Infrastructure teams
summary_tags: Scalable, reliable, MySQL, distributed, cloud-native, kubernetes, cloud, database
summary_use_case: Scaling out existing MySQL deployments, or building out internal database solutions for application teams to build products on.
summary_business_use_case: Scalability, Reliability, reduce human cost of running databases.
summary_release_rate: Every 4 months
summary_integration: |
Kubernetes Operator, Debezium
summary_intro_url: https://www.youtube.com/watch?v=Sny8rITrdvE
clomonitor_name: vitess
audits:
- date: "2019-02-01"
type: security
url: https://vitess.io/files/VIT-01-report.pdf
vendor: Cure53
- date: "2021-05-19"
type: fuzzing
url: https://github.com/vitessio/vitess/blob/master/doc/VIT-02-report-fuzzing-audit.pdf
vendor: AdaLogics
- date: "2023-06-05"
type: security
url: https://github.com/vitessio/vitess/blob/main/doc/VIT-03-report-security-audit.pdf
vendor: Ada Logics
- item:
name: Crunchy Postgres Operator
homepage_url: https://www.crunchydata.com
repo_url: https://github.com/CrunchyData/postgres-operator
logo: crunchy-data.svg
crunchbase: https://www.crunchbase.com/organization/crunchy-data-solutions-inc-
- item:
name: Litestream
homepage_url: https://litestream.io/
repo_url: https://github.com/benbjohnson/litestream
logo: litestream.svg
- item:
name: VoltDB
description: VoltDB is a high-velocity decisioning engine, powering real-time applications that must react in milliseconds.
homepage_url: https://www.voltactivedata.com
repo_url: https://github.com/voltdb/voltdb
logo: voltdb.svg
crunchbase: https://www.crunchbase.com/organization/voltdb
- item:
name: YugabyteDB
homepage_url: https://www.yugabyte.com/yugabytedb/
repo_url: https://github.com/YugaByte/yugabyte-db
logo: yugabytedb.svg
crunchbase: https://www.crunchbase.com/organization/yugabyte
- item:
name: Litefs
homepage_url: https://fly.io/docs/litefs/
repo_url: https://github.com/superfly/litefs
description: FUSE-based file system for replicating SQLite databases across a cluster of machines
logo: flyio.svg
- item:
name: TigerBeetle
homepage_url: https://tigerbeetle.com/
repo_url: https://github.com/tigerbeetle/tigerbeetle
description: The distributed financial transactions database designed for mission critical safety and performance
logo: tigerbeetle.svg
- subcategory:
name: Analytical
items:
- item:
description: DuckDB is an in-process SQL OLAP Database Management System
homepage_url: https://duckdb.org/
logo: duckdb.svg
name: DuckDB
repo_url: https://github.com/duckdb/duckdb
- item:
name: ClickHouse
homepage_url: https://clickhouse.com
repo_url: https://github.com/ClickHouse/ClickHouse
logo: clickhouse.svg
twitter: https://twitter.com/clickhousedb
crunchbase: https://www.crunchbase.com/organization/clickhouse
- item:
description: The data warehouse for operational workloads.
homepage_url: https://materialize.com/
logo: materialize.svg
name: Materialize
repo_url: https://github.com/MaterializeInc/materialize
- item:
description: Tile38 is an open source (MIT licensed), in-memory geolocation data store, spatial index, and realtime geofencing server. It supports a variety of object types including lat/lon points, bounding boxes, XYZ tiles, Geohashes, and GeoJSON.
homepage_url: https://tile38.com/
logo: tile38.svg
name: TILE38
- item:
description: The streaming database redefining stream processing 🌊. PostgreSQL-compatible, highly performant, scalable, elastic, and reliable ☁️
homepage_url: https://risingwave.com/
logo: risingwave.svg
repo_url: https://github.com/risingwavelabs/risingwave
name: RisingWave
- item:
description: ❄️ Coolest database around 🧊 Embeddable column database written in Go
homepage_url: https://www.polarsignals.com/
logo: frostdb.svg
repo_url: https://github.com/polarsignals/frostdb
name: FrostDB
- subcategory:
name: Key Value
items:
- item:
description: Fast key-value DB in Go.
homepage_url: https://dgraph.io/docs/badger/
logo: badgerdb.svg
name: BadgerDB
repo_url: https://github.com/dgraph-io/badger
- item:
name: DragonflyDB
homepage_url: https://dragonflydb.io/
repo_url: https://github.com/dragonflydb/dragonfly
logo: dragonflydb.svg
crunchbase: https://www.crunchbase.com/organization/dragonflydb
- item:
name: JunoDB
description: JunoDB is PayPal's home-grown secure, consistent and highly available key-value store providing low, single digit millisecond, latency at any scale.
homepage_url: https://dragonflydb.io/
repo_url: https://github.com/paypal/junodb
logo: paypal.svg
- item:
name: TiKV
description: >-
A distributed transactional key-value database. Based on the design of Google Spanner and HBase, but simpler to manage and without dependencies on
any distributed filesystem
homepage_url: https://tikv.org
repo_url: https://github.com/tikv/tikv
logo: tikv.svg
twitter: https://twitter.com/tikvproject
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
extra:
accepted: "2018-08-28"
incubating: "2018-08-28"
graduated: "2020-09-02"
cncf_tags:
- https://github.com/cncf/tag-storage
dev_stats_url: https://tikv.devstats.cncf.io/
artwork_url: https://github.com/cncf/artwork/blob/master/examples/sandbox.md#tikv-logos
stack_overflow_url: https://stackoverflow.com/questions/tagged/tikv
blog_url: https://tikv.org/blog/
mailing_list_url: https://tikv.org/community/community/
youtube_url: https://www.youtube.com/channel/UCXyuUR4qEm0HLDniz46k6sg
summary_personas: Application Developers, ML Engineers, DevOps Engineers, Architects, Platform Engineers, DBA
summary_tags: Key-value database,Cloud storage,Transactional,TiDB,Strong consistency,Raft,RocksDB,Titan,Raft-Engine
summary_use_case: >-
TiKV excels at working with large-scale data by supporting petabyte-scale deployments spanning trillions of rows. It aims to solve the technical
issue of scaling and reliably storing data in distributed systems that require high performance and strong consistency. TiKV addresses the
technical pain points of traditional databases by offering horizontal scalability, strong consistency, high availability, and fault tolerance.
It's particularly useful for building real-time data processing apps.
summary_business_use_case: >-
TiKV provides a scalable, reliable, and easy-to-use storage engine for building distributed systems. It helps organizations improve the
performance, reliability, and availability of their systems. TiKV helps organizations reduce risk by providing strong consistency. It helps
ensure data integrity and accuracy. TiKV helps organizations increase their responsiveness to customer demand by allowing them to scale their
systems horizontally as needed to handle increasing amounts of data and workload.
summary_release_rate: Per month
summary_integration: >-
TiKV provides both raw and ACID-compliant transactional key-value API, which is widely used in online serving services, such as the metadata
storage system for object storage service, the storage system for recommendation systems, the online feature store, etc. TiKV is also widely
used as the storage layer for database management systems, for example, TiDB, Zetta, Tidis, Titan, and JuiceFS. TiKV can also be deployed on
Kubernetes via TiDB Operator and monitored by Prometheus.
summary_intro_url: ""
clomonitor_name: tikv
audits:
- date: "2020-03-05"
type: security
url: https://tikv.org/blog/TiKV-Security-Audit.pdf
vendor: Cure53
- subcategory:
name: Graph
items:
- item:
name: Dgraph
homepage_url: https://dgraph.io/
repo_url: https://github.com/dgraph-io/dgraph
logo: dgraph.svg
crunchbase: https://www.crunchbase.com/organization/dgraph
- item:
name: Memgraph
homepage_url: https://memgraph.com/
repo_url: https://github.com/memgraph/memgraph
logo: memgraph.svg
description: Open-source graph database, built for real-time streaming data, compatible with Neo4j.
- item:
name: EdgeDB
homepage_url: https://www.edgedb.com/
repo_url: https://github.com/edgedb/edgedb
logo: edgedb.svg
description: A graph-relational database with declarative schema, built-in migration system, and a next-generation query language
- item:
name: SurrealDB
repo_url: https://github.com/surrealdb/surrealdb
homepage_url: https://surrealdb.com/
description: A scalable, distributed, collaborative, document-graph database, for the realtime web
logo: surrealdb.svg
- subcategory:
name: Column Family
items:
- item:
name: Scylla
homepage_url: https://www.scylladb.com/
repo_url: https://github.com/scylladb/scylla
logo: scylla.svg
twitter: https://twitter.com/ScyllaDB
crunchbase: https://www.crunchbase.com/organization/scylladb
- item:
name: Cassandra
homepage_url: https://cassandra.apache.org/_/index.html
repo_url: https://github.com/apache/cassandra
logo: cassandra.svg
twitter: https://twitter.com/cassandra
crunchbase: https://www.crunchbase.com/organization/apache
- subcategory:
name: ML & Indexing
items:
- item:
name: Qdrant
description: Vector Database for the next generation of AI applications.
homepage_url: https://qdrant.tech
repo_url: https://github.com/qdrant/qdrant
logo: qdrant.svg
crunchbase: https://www.crunchbase.com/organization/qdrant
extra:
youtube_url: https://www.youtube.com/channel/UC6ftm8PwH1RU_LM1jwG0LQA
- item:
name: MindsDB
description: By connecting your database with popular AI frameworks, MindsDB radically simplifies the process of applying machine learning to your end-user applications.
homepage_url: https://mindsdb.com/
repo_url: https://github.com/mindsdb/mindsdb
logo: mindsdb.svg
- item:
name: LanceDB
description: Developer-friendly, serverless vector database for AI applications. Easily add long-term memory to your LLM apps!
homepage_url: https://lancedb.github.io/lancedb/
repo_url: https://github.com/lancedb/lancedb
logo: lancedb.svg
- item:
name: Meilisearch
description: A lightning-fast search engine that fits effortlessly into your apps, websites, and workflow.
homepage_url: https://www.meilisearch.com/
repo_url: https://github.com/meilisearch/meilisearch
logo: meilisearch.svg
- item:
name: Weaviate
description: Weaviate is an open source vector database that stores both objects and vectors, allowing for combining vector search with structured filtering with the fault-tolerance and scalability of a cloud-native database, all accessible through GraphQL, REST, and various language clients.
homepage_url: https://weaviate.io/
repo_url: https://github.com/weaviate/weaviate
logo: weaviate.svg
- item:
name: TileDB
description: The Universal Storage Engine
homepage_url: https://tiledb.com/
repo_url: https://github.com/TileDB-Inc/TileDB
logo: tiledb.svg
- item:
name: ZincSearch
description: ZincSearch - A lightweight alternative to elasticsearch that requires minimal resources, written in Go.
homepage_url: https://zincsearch-docs.zinc.dev/
repo_url: https://github.com/zincsearch/zincsearch
logo: zincsearch.svg
- item:
name: chroma
description: the AI-native open-source embedding database
homepage_url: https://www.trychroma.com/
repo_url: https://github.com/chroma-core/chroma
logo: chroma.svg
- item:
name: FeatureBase
description: A crazy fast analytical database, built on bitmaps. Perfect for ML applications
homepage_url: https://docs.featurebase.com/
repo_url: https://github.com/featurebasedb/featurebase
logo: featurebase.svg
- item:
name: FeatureForm
description: The Virtual Feature Store. Turn your existing data infrastructure into a feature store
homepage_url: https://www.featureform.com/
repo_url: https://github.com/featureform/featureform
logo: featureform.svg
- item:
name: Vald
description: Vald. A Highly Scalable Distributed Vector Search Engine
homepage_url: https://vald.vdaas.org/
repo_url: https://github.com/vdaas/vald
logo: vald.svg
- subcategory:
name: Time Series
items:
- item:
name: GreptimeDB
description: GreptimeDB is an open-source, cloud-native time series database which also has powerful analytical features
homepage_url: https://greptime.com/
repo_url: https://github.com/grepTimeTeam/greptimedb
logo: greptimedb.svg
crunchbase: https://www.crunchbase.com/organization/greptime
- item:
name: InfluxData
homepage_url: https://www.influxdata.com/
repo_url: https://github.com/influxdata/influxdb
logo: influxdata.svg
crunchbase: https://www.crunchbase.com/organization/influxdb
- item:
name: M3
homepage_url: https://www.m3db.io/
repo_url: https://github.com/m3db/m3
logo: m3.svg
crunchbase: https://www.crunchbase.com/organization/uber
- item:
name: Timescale
homepage_url: https://www.timescale.com/
repo_url: https://github.com/timescale/timescaledb
logo: timescaledb.svg
description: An open-source time-series SQL database optimized for fast ingest and complex queries. Packaged as a PostgreSQL extension.
- subcategory:
name: Data Ops
items:
- item:
name: Bytebase
description: World's most advanced database DevOps and CI/CD for Developer, DBA and Platform Engineering teams.
homepage_url: https://www.bytebase.com/
repo_url: https://github.com/bytebase/bytebase
logo: bytebase.svg
- category:
name: Infrastructure
subcategories:
- subcategory:
name: Orchestration & Management
items:
- item:
name: Kubernetes
description: Kubernetes is an open-source system for automating deployment, scaling, and management of containerized applications
homepage_url: https://kubernetes.io/
repo_url: https://github.com/kubernetes/kubernetes
logo: kubernetes.svg
twitter: https://twitter.com/kubernetesio
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
allow_duplicate_repo: true
extra:
accepted: "2016-03-10"
incubating: "2016-03-10"
graduated: "2018-03-06"
cncf_tags:
- https://github.com/cncf/tag-runtime
dev_stats_url: https://k8s.devstats.cncf.io/
artwork_url: https://github.com/cncf/artwork/blob/master/examples/graduated.md#kubernetes-logos
stack_overflow_url: https://stackoverflow.com/questions/tagged/kubernetes
blog_url: http://blog.kubernetes.io/
mailing_list_url: https://groups.google.com/forum/#!forum/kubernetes-dev
slack_url: http://slack.k8s.io/
youtube_url: https://www.youtube.com/channel/UCZ2bu0qutTOM0tHYa_jkIwg
clomonitor_name: kubernetes
audits:
- date: "2019-08-06"
type: security
url: https://github.com/kubernetes/sig-security/tree/main/sig-security-external-audit/security-audit-2019/findings
vendor: Trail of Bits and Atredis Partners
- date: "2023-04-19"
type: security
url: https://github.com/kubernetes/sig-security/tree/main/sig-security-external-audit/security-audit-2021-2022/findings
vendor: NCC Group
- subcategory:
name: Service Mesh & API Gateway
items:
- item:
name: Istio
description: Simplify observability, traffic management, security, and policy with the Istio service mesh.
homepage_url: https://istio.io/
repo_url: https://github.com/istio/istio
logo: istio.svg
twitter: https://twitter.com/IstioMesh
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
allow_duplicate_repo: true
extra:
accepted: "2022-09-30"
incubating: "2022-09-30"
graduated: "2023-07-12"
cncf_tags:
- https://github.com/cncf/tag-network
dev_stats_url: https://istio.devstats.cncf.io/
stack_overflow_url: https://stackoverflow.com/questions/tagged/istio
blog_url: https://istio.io/blog/
slack_url: https://slack.istio.io/
summary_business_use_case: Security, Traffic Management, Observability, Policy Enforcement.
summary_integrations: https://istio.io/latest/docs/ops/integrations/
summary_intro_url: https://www.youtube.com/watch?v=hkR1M6qwpnw
summary_personas: SREs, DevOps Engineers, Architects, Platform Engineers
summary_release_rate: Every 3 months
summary_tags: observability, Service Mesh, mTLS, traffic management, multi-cluster, load balancing, policy, security, extensibility
summary_use_case: >-
Istio addresses the challenges developers and operators face with a distributed or microservices architecture. Whether you're building from
scratch or migrating existing applications to cloud native, Istio can help. Read more at: https://istio.io/latest/about/solutions/
youtube_url: https://www.youtube.com/c/Istio
clomonitor_name: istio
audits:
- date: "2023-01-30"
type: security
url: https://istio.io/latest/blog/2023/ada-logics-security-assessment/Istio%20audit%20report%20-%20ADA%20Logics%20-%202023-01-30%20-%20v1.0.pdf
vendor: ADA Logics
- item:
name: Kong
homepage_url: https://konghq.com/
repo_url: https://github.com/Kong/kong
logo: kong.svg
crunchbase: https://www.crunchbase.com/organization/konghq
- subcategory:
name: Storage
items:
- item:
name: MinIO
homepage_url: https://min.io/
repo_url: https://github.com/minio/minio
logo: min-io.svg
crunchbase: https://www.crunchbase.com/organization/minio-inc
- item:
description: The Koor Data Control Center is a monitoring, management and automation platform that makes it easy to operate large-scale data stores yourself. This is your data control plane for Rook Ceph data storage.
homepage_url: https://about.koor.tech/
logo: koor.svg
name: KOOR
repo_url: https://github.com/koor-tech/koor
- subcategory:
name: Coordination & Service Discovery
items:
- item:
name: etcd
homepage_url: https://etcd.io/
repo_url: https://github.com/etcd-io/etcd
logo: etcd.svg
twitter: https://twitter.com/etcdio
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
extra:
accepted: "2018-12-11"
incubating: "2018-12-11"
graduated: "2020-11-24"
cncf_tags:
- https://github.com/cncf/tag-storage
dev_stats_url: https://etcd.devstats.cncf.io/
artwork_url: https://github.com/cncf/artwork/blob/master/examples/graduated.md#etcd-logos
stack_overflow_url: https://stackoverflow.com/questions/tagged/etcd
mailing_list_url: https://groups.google.com/forum/?hl=en#!forum/etcd-dev
slack_url: http://slack.k8s.io/
chat_channel: "#etcd"
clomonitor_name: etcd
audits:
- date: "2020-08-05"
type: security
url: https://github.com/etcd-io/etcd/blob/master/security/SECURITY_AUDIT.pdf
vendor: Trail of Bits
- date: "2022-03-11"
type: fuzzing
url: https://github.com/etcd-io/etcd/blob/main/security/FUZZING_AUDIT_2022.PDF
vendor: ADA Logics
summary_personas: Architects, Platform Engineers, SREs
summary_tags: distributed, key-value, consistent, datastore, reliability
summary_use_case: >-
Etcd is a distributed, reliable key-value store for the most critical data of a distributed system. By using etcd, developers can ensure that
their applications have access to up-to-date configuration data, even as they scale up or down, and can maintain consistency, fault tolerance
and coordination across multiple instances of the application.
summary_business_use_case: >-
Etcd can be used by businesses to manage the configuration data and coordination needs of their applications, ensuring consistent and reliable
performance at scale.
summary_release_rate: Major or Minor release approximately every 2 years, and patch release every 1-3 months
summary_integrations: >-
Due to etcd's flexible and extensible architecture it has been integrated as a data store for many projects such as Kubernetes, CoreDNS and
Hashicorp Vault.
summary_intro_url: https://etcd.io/docs/v3.6/learning/
- subcategory:
name: Streaming & Messaging
items:
- item:
name: NATS
description: >-
NATS.io is a connective technology for distributed systems and is a perfect fit to connect devices, edge, cloud or hybrid deployments. True
multi-tenancy makes NATS ideal for SaaS and self-healing and scaling technology allows for topology changes anytime with zero downtime.
homepage_url: https://nats.io/
project: incubating
repo_url: https://github.com/nats-io/nats-server
url_for_bestpractices: https://github.com/nats-io
additional_repos:
- repo_url: https://github.com/nats-io/nats.go
- repo_url: https://github.com/nats-io/nats.js
- repo_url: https://github.com/nats-io/nats.py
- repo_url: https://github.com/nats-io/nats.java
- repo_url: https://github.com/nats-io/nats.net
- repo_url: https://github.com/nats-io/nats.c
- repo_url: https://github.com/nats-io/nats.rs
- repo_url: https://github.com/nats-io/nats.deno
- repo_url: https://github.com/nats-io/k8s
- repo_url: https://github.com/nats-io/nats-surveyor
- repo_url: https://github.com/nats-io/natscli
- repo_url: https://github.com/nats-io/nats-architecture-and-design
- repo_url: https://github.com/nats-io/nats.docs
- repo_url: https://github.com/nats-io/nack
- repo_url: https://github.com/nats-io/nats-top
- repo_url: https://github.com/nats-io/terraform-provider-jetstream
- repo_url: https://github.com/nats-io/jetstream-gh-action
logo: nats.svg
twitter: https://twitter.com/nats_io
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
extra:
accepted: "2018-03-15"
incubating: "2018-03-15"
dev_stats_url: https://nats.devstats.cncf.io/
artwork_url: https://github.com/cncf/artwork/blob/master/examples/incubating.md#nats-logos
stack_overflow_url: https://stackoverflow.com/questions/tagged/nats.io
mailing_list_url: https://nats.io/blog/
slack_url: >-
https://natsio.slack.com/join/shared_invite/enQtMzE2NDkxNDI2NTE1LTc5ZDEzYTkwYWZkYWQ5YjY1MzBjMWZmYzA5OGQxMzlkMGQzMjYxNGM3MWYxMjNiYmNjNzIwMTVjMWE2ZDgxZGM
summary_personas: Developers, Architects, Engineers, Platform teams, Cloud Architects
summary_tags: Edge, Muli-cloud, Messaging, Streaming Data, PubSub, KeyValue, Microservices, Kubernetes
summary_use_case: >
The NATS Server acts as a central nervous system for building distributed applications. Client APIs are provided in over 40 languages and
frameworks including Go, Java, JavaScript/TypeScript, Python, C, .Net, and Rust. NATS supports multiple microservices patterns including PubSub,
Request-Reply, KeyValue and Object store via a simple API.
summary_business_use_case: >-
NATS is used to develop & deploy globally distributed Edge & Multi-cloud applications as part of a digital transformation or modernization
initiative. Users may deploy NATS as part of a private cloud, hybrid , or SaaS model. Applications can be developed locally and then be scaled
from single node, to clusters, to global superclusters independently of cloud providers, geography or requirements for additional infrastructure
such as load balancers, firewalls, etc... All with a zero trust security model and integrated multi-tenant platform capabilities
summary_release_rate: null
summary_integrations: Docker, Kubernetes, K3S, WASMCloud, CloudEvents, Helm, Argo, DAPR, Prometheus, Benthos
summary_intro_url: https://rethink.synadia.com/episodes/1/
clomonitor_name: nats
audits:
- date: "2019-02-06"
type: security
url: https://github.com/nats-io/nats-general/blob/master/reports/Cure53_NATS_Audit.pdf
vendor: Cure53
- item:
name: Tremor
homepage_url: https://www.tremor.rs/
repo_url: https://github.com/tremor-rs/tremor-runtime
url_for_bestpractices: https://github.com/tremor-rs
logo: tremor.svg
twitter: https://twitter.com/TremorDEBS
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
extra:
accepted: "2020-09-08"
annual_review_url: https://github.com/cncf/toc/pull/949
annual_review_date: "2022-10-19"
dev_stats_url: https://tremor.devstats.cncf.io/
clomonitor_name: tremor
- item:
name: Memphis
homepage_url: https://memphis.dev
repo_url: https://github.com/memphisdev/memphis-broker
url_for_bestpractices: https://github.com/memphisdev
logo: memphis.svg
crunchbase: https://www.crunchbase.com/organization/memphis-dev
extra:
discord_url: https://discord.gg/zq7Wx8akSX
- subcategory:
name: Runtime
items:
- item:
name: Kata Containers
homepage_url: https://katacontainers.io
repo_url: https://github.com/kata-containers/kata-containers
logo: kata.svg
twitter: https://twitter.com/KataContainers
crunchbase: https://www.crunchbase.com/organization/open-infrastructure-foundation
- item:
name: Krustlet
homepage_url: https://krustlet.dev
repo_url: https://github.com/krustlet/krustlet
logo: krustlet.svg
twitter: https://twitter.com/krustlet
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
allow_duplicate_repo: true
extra:
accepted: "2021-07-13"
clomonitor_name: krustlet
- item:
name: Firecracker
homepage_url: https://firecracker-microvm.github.io/
repo_url: https://github.com/firecracker-microvm/firecracker
logo: firecracker.svg
crunchbase: https://www.crunchbase.com/organization/amazon-web-services
- subcategory:
name: Monitoring
items:
- item:
name: Prometheus
homepage_url: https://prometheus.io/
repo_url: https://github.com/prometheus/prometheus
logo: prometheus.svg
twitter: https://twitter.com/PrometheusIO
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
extra:
accepted: "2016-05-09"
incubating: "2016-05-09"
graduated: "2018-08-09"
cncf_tags:
- https://github.com/cncf/tag-observability
dev_stats_url: https://prometheus.devstats.cncf.io/
artwork_url: https://github.com/cncf/artwork/blob/master/examples/graduated.md#prometheus-logos
stack_overflow_url: https://stackoverflow.com/questions/tagged/prometheus
blog_url: https://prometheus.io/blog/
mailing_list_url: https://prometheus.io/community/
youtube_url: https://www.youtube.com/channel/UC4pLFely0-Odea4B2NL1nWA
slack_url: https://libera.chat/
chat_channel: "#prometheus"
summary_personas: Cluster Administrators, Developers, SREs, Platform Engineers, Network Engineers
summary_tags: monitoring, alerting, observability, instrumentation
summary_use_case: metrics-based monitoring and alerting
summary_business_use_case: ""
summary_release_rate: every 6 weeks for prometheus/prometheus
summary_integrations: >-
See [exporters](https://prometheus.io/docs/instrumenting/exporters/) and [clientlibs](https://prometheus.io/docs/instrumenting/clientlibs/) plus
many service discoveries.
summary_intro_url: ""
clomonitor_name: prometheus
audits:
- date: "2018-06-11"
type: security
url: https://prometheus.io/assets/downloads/2018-06-11--cure53_security_audit.pdf
vendor: Cure53
- date: "2020-07-21"
type: security
url: https://prometheus.io/assets/downloads/2020-07-21--cure53_security_audit_node_exporter.pdf