forked from snird/awesome-data-engineering-learning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resources.json
704 lines (704 loc) · 25.3 KB
/
resources.json
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
{
"sql": {
"display_name": "SQL",
"description": "Querying data using SQL is an essential skill for anyone who works with data",
"essentiality": 3,
"resources": [
{
"resource_type": "book",
"is_free": false,
"title": "Head First SQL: Your Brain on SQL",
"author": "Lynn Beighley",
"subject_coverage": 5,
"depth": 4,
"link": "https://www.amazon.com/Head-First-SQL-Brain-Learners/dp/0596526849"
},
{
"resource_type": "book",
"is_free": false,
"title": "Learning SQL: Generate, Manipulate, and Retrieve Data 3rd Edition",
"author": "Alan Beaulieu",
"subject_coverage": 5,
"depth": 5,
"link": "https://www.amazon.com/Learning-SQL-Generate-Manipulate-Retrieve/dp/1492057614"
},
{
"resource_type": "tutorial",
"is_free": true,
"title": "Tutorials Point SQL tutorial",
"author": "tutorials point",
"subject_coverage": 4,
"depth": 2,
"link": "https://www.tutorialspoint.com/sql/index.htm"
},
{
"resource_type": "tutorial",
"is_free": true,
"title": "Code academy SQL tutorial - interactive",
"author": "code academy",
"subject_coverage": 3,
"depth": 2,
"link": "https://www.codecademy.com/learn/learn-sql"
},
{
"resource_type": "tutorial",
"is_free": true,
"title": "SQLbolt SQL tutorial - interactive",
"author": "SQLBolt",
"subject_coverage": 4,
"depth": 3,
"link": "https://sqlbolt.com"
},
{
"resource_type": "course",
"is_free": true,
"title": "Khan Academy SQL video course - interactive",
"author": "Khan Academy",
"subject_coverage": 3,
"depth": 3,
"link": "https://www.khanacademy.org/computing/computer-programming/sql/"
},
{
"resource_type": "course",
"is_free": false,
"title": "The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert (Udemy course)",
"author": "Nassim Badaoui",
"subject_coverage": 5,
"depth": 5,
"link": "https://www.udemy.com/course/the-ultimate-mysql-bootcamp-go-from-sql-beginner-to-expert/"
}
]
},
"programming": {
"display_name": "Programming language",
"description": "As a data engineer you'll be writing a lot of code to handle various business cases such as ETLs, data pipelines, etc. The de facto standard language for data engineering is Python (not to be confused with R or nim that are used for data science, they have no use in data engineering).",
"essentiality": 3,
"resources": [
{
"resource_type": "book",
"is_free": false,
"title": "Python Crash Course: A Hands-On, Project-Based Introduction to Programming",
"author": "Eric Matthes",
"subject_coverage": 5,
"depth": 4,
"link": "https://www.amazon.com/Python-Crash-Course-2nd-Edition/dp/1593279280"
},
{
"resource_type": "book",
"is_free": false,
"title": "Learning Python, 5th Edition",
"author": "Mark Lutz",
"subject_coverage": 5,
"depth": 5,
"link": "https://www.amazon.com/Learning-Python-5th-Mark-Lutz/dp/1449355730"
},
{
"resource_type": "tutorial",
"is_free": true,
"title": "The Python Tutorial",
"author": "Python documentation",
"subject_coverage": 5,
"depth": 5,
"link": "https://docs.python.org/3/tutorial/"
},
{
"resource_type": "course",
"is_free": false,
"title": "Learn Python Programming Masterclass",
"author": "Tim Buchalka",
"subject_coverage": 5,
"depth": 5,
"link": "https://www.udemy.com/course/python-the-complete-python-developer-course/"
},
{
"resource_type": "course",
"is_free": false,
"title": "Learn Python Programming (Python 3)",
"author": "Jason Cannon",
"subject_coverage": 5,
"depth": 5,
"link": "https://www.udemy.com/course/python-programming-projects/"
},
{
"resource_type": "course",
"is_free": true,
"title": "Python for Everybody",
"author": "University Of Michigan",
"subject_coverage": 5,
"depth": 5,
"link": "https://www.coursera.org/specializations/python"
},
]
},
"relational_db": {
"display_name": "Relational Databases - Design & Architecture",
"description": "RDBMS are the basic building blocks for any application data. A data engineer should know how to design and architect their structures, and learn about concepts that are related to them.",
"essentiality": 3,
"resources": [
{
"resource_type": "course",
"is_free": true,
"title": "Database Design Course (freeCodeCamp)",
"author": "Caleb Curry",
"subject_coverage": 5,
"depth": 4,
"link": "https://www.youtube.com/watch?v=ztHopE5Wnpc"
},
{
"resource_type": "book",
"is_free": false,
"title": "Designing Data-Intensive Applications",
"author": "Martin Kleppmann",
"subject_coverage": 5,
"depth": 5,
"link": "https://www.amazon.com/Designing-Data-Intensive-Applications-Reliable-Maintainable/dp/1449373321"
},
{
"resource_type": "tutorial",
"is_free": true,
"title": "Normalization of Database",
"author": "studytonight.com",
"subject_coverage": 4,
"depth": 4,
"link": "https://www.studytonight.com/dbms/database-normalization.php"
},
{
"resource_type": "book",
"is_free": false,
"title": "Database Design for Mere Mortals: A Hands-On Guide to Relational Database Design",
"author": "Michael Hernandez",
"subject_coverage": 5,
"depth": 5,
"link": "https://www.amazon.com/Database-Design-Mere-Mortals-Hands/dp/0321884493"
},
{
"resource_type": "article",
"is_free": true,
"title": "DBMS Architecture: 1-Tier, 2-Tier & 3-Tier",
"author": "Guru99",
"subject_coverage": 4,
"depth": 3,
"link": "https://www.guru99.com/dbms-architecture.html"
},
{
"resource_type": "article",
"is_free": true,
"title": "An Introduction to High Availability Computing: Concepts and Theory",
"author": "David Clinton",
"subject_coverage": 4,
"depth": 4,
"link": "https://www.freecodecamp.org/news/high-availability-concepts-and-theory/"
}
]
},
"nosql_db": {
"display_name": "noSql",
"description": "noSQL is a term for any non-relational database model: key-value, document, column, graph, and more. A basic acquaintance is required, but going deeper into any model depends on the job (except columnar, in the next section).",
"essentiality": 2,
"resources": [
{
"resource_type": "book",
"is_free": false,
"title": "NoSQL Distilled: A Brief Guide to the Emerging World of Polyglot Persistence",
"author": "Martin Fowler, Pramod J. Sadalage",
"subject_coverage": 5,
"depth": 3,
"link": "https://www.amazon.com/NoSQL-Distilled-Emerging-Polyglot-Persistence-ebook/dp/B0090J3SYW"
},
{
"resource_type": "book",
"is_free": false,
"title": "NoSQL for Mere Mortals",
"author": "Dan Sullivan",
"subject_coverage": 5,
"depth": 3,
"link": "https://www.amazon.com/gp/product/0134023218"
},
{
"resource_type": "course",
"is_free": true,
"title": "NoSQL systems (Coursera)",
"author": "María del Pilar Ángeles",
"subject_coverage": 4,
"depth": 3,
"link": "https://www.coursera.org/learn/nosql-databases#about"
},
{
"resource_type": "book",
"is_free": false,
"title": "Seven Databases in Seven Weeks: A Guide to Modern Databases and the NoSQL Movement",
"author": "Luc Perkins, Eric Redmond, Jim Wilson",
"subject_coverage": 4,
"depth": 2,
"link": "https://www.amazon.com/Seven-Databases-Weeks-Modern-Movement/dp/1680502530"
},
{
"resource_type": "article",
"is_free": true,
"title": "NoSQL Tutorial: Learn NoSQL Features, Types, What is, Advantages",
"author": "Guru99",
"subject_coverage": 3,
"depth": 2,
"link": "https://www.guru99.com/nosql-tutorial.html"
},
{
"resource_type": "course",
"is_free": false,
"title": "MongoDB - The Complete Developer's Guide 2020",
"author": "Academind",
"subject_coverage": 5,
"depth": 4,
"link": "https://www.udemy.com/course/mongodb-the-complete-developers-guide/"
},
{
"resource_type": "book",
"is_free": false,
"title": "MongoDB: The Definitive Guide: Powerful and Scalable Data Storage",
"author": "Kristina Chodorow",
"subject_coverage": 5,
"depth": 4,
"link": "https://www.amazon.com/MongoDB-Definitive-Powerful-Scalable-Storage/dp/1449344682"
},
{
"resource_type": "tutorial",
"is_free": true,
"title": "MongoDB Tutorials - official docs",
"author": "MongoDB",
"subject_coverage": 5,
"depth": 3,
"link": "https://docs.mongodb.com/manual/tutorial/"
},
{
"resource_type": "video",
"is_free": true,
"title": "Redis Crash Course Tutorial",
"author": "Traversy Media",
"subject_coverage": 3,
"depth": 3,
"link": "https://www.youtube.com/watch?v=Hbt56gFj998"
},
]
},
"columnar_db": {
"display_name": "Columnar Databases",
"description": "Column databases are a kind of nosql databases. They deserve their own section as they are essential for the data engineer as working with Big Data online (as opposed to offline batching) usually requires a columnar back-end.",
"essentiality": 2,
"resources": [
{
"resource_type": "article",
"is_free": true,
"title": "Data Processing Holy Grail? Row vs. Columnar Databases",
"author": "Joao Sousa",
"subject_coverage": 3,
"depth": 2,
"link": "https://dzone.com/articles/the-data-processing-holy-grail-row-vs-columnar-dat",
},
{
"resource_type": "video",
"is_free": true,
"title": "Why We Built Our Own Distributed Column Store (42:40)",
"author": "Sam Stokes at strangeloop",
"subject_coverage": 4,
"depth": 4,
"link": "https://www.youtube.com/watch?v=tr2KcekX2kk",
},
{
"resource_type": "article",
"is_free": true,
"title": "Why Column Stores?",
"author": "John Schulz",
"subject_coverage": 3,
"depth": 2,
"link": "https://blog.pythian.com/why-column-stores/",
},
]
},
"data_warehouses": {
"display_name": "Data warehouses",
"description": "Understand the concepts behind data warehouses and familiarize youself with common data warehouse solutions",
"essentiality": 3,
"resources": [
{
"resource_type": "article",
"is_free": true,
"title": "What is Data Warehouse? Types, Definition & Example",
"author": "Guru99",
"subject_coverage": 3,
"depth": 3,
"link": "https://www.guru99.com/data-warehousing.html"
},
{
"resource_type": "book",
"is_free": false,
"title": "The Data Warehouse Toolkit",
"author": "Ralph Kimball",
"subject_coverage": 5,
"depth": 5,
"link": "https://www.amazon.com/Data-Warehouse-Toolkit-Definitive-Dimensional/dp/1118530802"
},
{
"resource_type": "book",
"is_free": false,
"title": "Building the Data Warehouse",
"author": "W. H. Inmon",
"subject_coverage": 5,
"depth": 5,
"link": "https://www.amazon.com/Building-Data-Warehouse-W-Inmon/dp/0764599445"
},
{
"resource_type": "video",
"is_free": true,
"title": "What is a Data Warehouse - Explained with real life example (9:36)",
"author": "IT k Funde",
"subject_coverage": 3,
"depth": 3,
"link": "https://www.youtube.com/watch?v=jmwGNhUXn_o"
},
{
"resource_type": "course",
"is_free": false,
"title": "Data Warehouse Fundamentals for Beginners",
"author": "Alan Simon",
"subject_coverage": 5,
"depth": 5,
"link": "https://www.udemy.com/course/data-warehouse-fundamentals-for-beginners/"
},
{
"resource_type": "course",
"is_free": false,
"title": "Data Warehouse Concepts: Basic to Advanced concepts",
"author": "Sid Inf",
"subject_coverage": 5,
"depth": 5,
"link": "https://www.udemy.com/course/master-datawarehouse-concepts-step-by-step-from-scratch/"
},
{
"resource_type": "video",
"is_free": true,
"title": "Data Warehousing With BigQuery: Best Practices (Cloud Next '19) (43:07)",
"author": "Ryan McDowell",
"subject_coverage": 4,
"depth": 3,
"link": "https://www.youtube.com/watch?v=ZVgt1-LfWW4"
},
{
"resource_type": "article",
"is_free": true,
"title": "Snowflake’s Cloud Data Warehouse — What I Learned and Why I’m Rethinking the Data Warehous",
"author": "Ed Fron",
"subject_coverage": 3,
"depth": 3,
"link": "https://medium.com/hashmapinc/snowflakes-cloud-data-warehouse-what-i-learned-and-why-i-m-rethinking-the-data-warehouse-75a5daad271c"
},
{
"resource_type": "video",
"is_free": true,
"title": "Best Practices for Data Warehousing with Amazon Redshift (18:03)",
"author": "AWS",
"subject_coverage": 3,
"depth": 3,
"link": "https://www.youtube.com/watch?v=ZvAqJtZ5JRs"
},
]
},
"olap_data_modeling": {
"display_name": "OLAP Data modeling",
"description": "OLAP (analytical) databases (used in data warehouses) data modeling concepts, modeling the data correctly is essential for a functioning data warehouse",
"essentiality": 2,
"resources": [
{
"resource_type": "book",
"is_free": false,
"title": "The Data Warehouse Toolkit",
"author": "Ralph Kimball",
"subject_coverage": 5,
"depth": 5,
"link": "https://www.amazon.com/Data-Warehouse-Toolkit-Definitive-Dimensional/dp/1118530802"
},
{
"resource_type": "video",
"is_free": true,
"title": "Data warehouse schema design - dimensional modeling and star schema",
"author": "Snir David",
"subject_coverage": 3,
"depth": 4,
"link": "https://snir.dev/talks/data-warehouse-schema-design"
},
{
"resource_type": "video",
"is_free": true,
"title": "Slowly changing dimensions in depth",
"author": "Snir David",
"subject_coverage": 3,
"depth": 4,
"link": "https://snir.dev/talks/slowly-changing-dimensions-in-depth"
},
{
"resource_type": "article",
"is_free": true,
"title": "Understand star schema and the importance for Power BI",
"author": "Various at Microsoft",
"subject_coverage": 3,
"depth": 3,
"link": "https://docs.microsoft.com/en-us/power-bi/guidance/star-schema"
},
{
"resource_type": "article",
"is_free": true,
"title": "Slowly Changing Dimension in Data Warehousing",
"author": "Muhammad Salah El-Okda",
"subject_coverage": 3,
"depth": 2,
"link": "https://medium.com/@Muhammad7Salah/slowly-changing-dimension-in-data-warehouse-7ca21e0e8c9"
},
{
"resource_type": "book",
"is_free": false,
"title": "Agile Data Warehouse Design: Collaborative Dimensional Modeling, from Whiteboard to Star Schema",
"author": "Lawrence Corr, Jim Stagnitto",
"subject_coverage": 5,
"depth": 5,
"link": "https://www.amazon.com/Agile-Data-Warehouse-Design-Collaborative/dp/0956817203"
},
]
},
"batch_data_processing_and_map_reduce": {
"before_segment_note": {
"title": "Data processing - Batch, MapReduce, Streaming",
"text": "The next 2 categories are all about data processing mechanisms. We'll start with batch processing and MapReduce, typically with Hadoop. This is considered the first gen of data processing. From there we'll go to stream processing, typically done with Spark. These subjects are deeply connected. For example, Spark can operate on HDFS which is the file system for Hadoop. Even though it would seem outdated to learn about batch processing with Hadoop, it is essential to understand the subject even if you plan to live the streaming data life."
},
"display_name": "Batch data processing & MapReduce",
"description": "The \"first\" generation of data processing, using Hadoop and Spring. Everyone should know how it works, but going deep into the details and operations are recommended only if necessary. Focus more on streaming with tools like Spark today.",
"essentiality": 1,
"resources": [
{
"resource_type": "article",
"is_free": true,
"title": "Beginner’s Guide to Batch Processing",
"author": "talend",
"subject_coverage": 3,
"depth": 2,
"link": "https://www.talend.com/resources/batch-processing/"
},
{
"resource_type": "article",
"is_free": true,
"title": "What is MapReduce? How it Works - Hadoop MapReduce Tutorial",
"author": "Guru99",
"subject_coverage": 3,
"depth": 3,
"link": "https://www.guru99.com/introduction-to-mapreduce.html"
},
{
"resource_type": "article",
"is_free": true,
"title": "How do Hadoop and Spark Stack Up?",
"author": "Amir Kalron",
"subject_coverage": 3,
"depth": 3,
"link": "https://logz.io/blog/hadoop-vs-spark/"
},
{
"resource_type": "book",
"is_free": false,
"title": "Hadoop: The Definitive Guide: Storage and Analysis at Internet Scale",
"author": "Tom White",
"subject_coverage": 5,
"depth": 5,
"link": "https://www.amazon.com/Hadoop-Definitive-Storage-Analysis-Internet/dp/1491901632"
},
{
"resource_type": "video",
"is_free": true,
"title": "Batch Processing with Spring",
"author": "Michael Minella, Mahmoud Ben Hassine",
"subject_coverage": 3,
"depth": 4,
"link": "https://www.youtube.com/watch?v=bhFBtNiZYYY"
},
{
"resource_type": "course",
"is_free": false,
"title": "The Ultimate Hands-On Hadoop - Tame your Big Data",
"author": "Frank Kane",
"subject_coverage": 5,
"depth": 5,
"link": "https://www.udemy.com/course/the-ultimate-hands-on-hadoop-tame-your-big-data/"
},
]
},
"stream_data_processing": {
"display_name": "Stream data processing",
"description": "The \"next\" generation of data processing. Suggested to get a good grasp of the subject from the \"Streaming Systems\" book and then dive deep into a specific tool like Kafka, Spark, Flink, etc.",
"essentiality": 2,
"resources": [
{
"resource_type": "book",
"is_free": false,
"title": "Streaming Systems: The What, Where, When, and How of Large-Scale Data Processing",
"author": "Tyler Akidau, Slava Chernyak, Reuven Lax",
"subject_coverage": 5,
"depth": 5,
"link": "https://www.amazon.com/Streaming-Systems-Where-Large-Scale-Processing/dp/1491983876"
},
{
"resource_type": "book",
"is_free": false,
"title": "Spark: The Definitive Guide: Big Data Processing Made Simple",
"author": "Bill Chambers, Matei Zaharia",
"subject_coverage": 5,
"depth": 5,
"link": "https://www.amazon.com/Spark-Definitive-Guide-Processing-Simple/dp/1491912219"
},
{
"resource_type": "book",
"is_free": false,
"title": "Stream Processing with Apache Flink: Fundamentals, Implementation, and Operation of Streaming Applications",
"author": "Fabian Hueske, Vasiliki Kalavri",
"subject_coverage": 5,
"depth": 5,
"link": "https://www.amazon.com/Stream-Processing-Apache-Flink-Implementation/dp/149197429X"
},
{
"resource_type": "course",
"is_free": false,
"title": "Kafka Streams for Data Processing",
"author": "Stephane Maarek",
"subject_coverage": 5,
"depth": 5,
"link": "https://www.udemy.com/course/kafka-streams/"
},
{
"resource_type": "course",
"is_free": false,
"title": "Streaming Big Data with Spark Streaming & Scala",
"author": "Frank Kane",
"subject_coverage": 5,
"depth": 5,
"link": "https://www.udemy.com/course/taming-big-data-with-spark-streaming-hands-on/"
},
{
"resource_type": "article",
"is_free": true,
"title": "What is Streaming Data?",
"author": "Confluent",
"subject_coverage": 3,
"depth": 2,
"link": "https://www.confluent.io/learn/data-streaming/"
},
{
"resource_type": "video",
"is_free": true,
"title": "Intro to Streams | Apache Kafka (10:11)",
"author": "Confluent",
"subject_coverage": 2,
"depth": 2,
"link": "https://www.youtube.com/watch?v=Z3JKCLG3VP4"
},
{
"resource_type": "video",
"is_free": true,
"title": "Data Stream Processing Concepts and Implementations (45:29)",
"author": "Matthias Niehoff at Devoxx conf",
"subject_coverage": 3,
"depth": 3,
"link": "https://www.youtube.com/watch?v=5inVCagXc2A"
},
]
},
"pipelines": {
"display_name": "Pipeline / Workflow Management",
"description": "Scheduling tools for data processing. Airflow is considered to be the defacto standard, but any understanding of DAGs - directed acyclical graphs for tasks will be good.",
"essentiality": 2,
"resources": [
{
"resource_type": "article",
"is_free": true,
"title": "Directed Acyclic Graph (DAG)",
"author": "hazelcast",
"subject_coverage": 3,
"depth": 3,
"link": "https://hazelcast.com/glossary/directed-acyclic-graph/"
},
{
"resource_type": "article",
"is_free": true,
"title": "Airflow docs - Concepts (Demonstrated with Airflow but the concepts are generic)",
"author": "Airflow documentation",
"subject_coverage": 4,
"depth": 3,
"link": "https://airflow.apache.org/docs/stable/concepts.html"
},
{
"resource_type": "book",
"is_free": false,
"title": "Data Pipelines with Apache Airflow",
"author": "Bas P. Harenslak, Julian Rutger de Ruiter",
"subject_coverage": 5,
"depth": 5,
"link": "https://www.amazon.com/Data-Pipelines-Apache-Airflow-Harenslak/dp/1617296902"
},
{
"resource_type": "video",
"is_free": true,
"title": "Data Pipeline Frameworks: The Dream and the Reality (35:33)",
"author": "Mark Weiss",
"subject_coverage": 4,
"depth": 4,
"link": "https://www.youtube.com/watch?v=C6Abv87D5dU"
},
]
},
"security_and_privacy": {
"display_name": "Security and privacy",
"description": "How to manage sensitive data, compliance with regulation (GDPR) and more",
"essentiality": 1,
"resources": [
{
"resource_type": "article",
"is_free": true,
"title": "What is data security?",
"author": "IBM",
"subject_coverage": 3,
"depth": 3,
"link": "https://www.ibm.com/topics/data-security"
},
{
"resource_type": "article",
"is_free": true,
"title": "What Do Data Scientists and Data Engineers Need to Know about GDPR?",
"author": "Andrew Burt",
"subject_coverage": 3,
"depth": 3,
"link": "https://www.infoq.com/articles/effective-data-management-age-GDPR/"
},
{
"resource_type": "book",
"is_free": false,
"title": "IT Governance: An International Guide to Data Security and ISO 27001/ISO 27002",
"author": "Alan Calder, Steve Watkins",
"subject_coverage": 5,
"depth": 5,
"link": "https://www.amazon.com/Governance-International-Guide-Security-27001/dp/0749496959"
},
{
"resource_type": "book",
"is_free": false,
"title": "Information Privacy Engineering and Privacy by Design",
"author": "William Stallings",
"subject_coverage": 5,
"depth": 5,
"link": "https://www.amazon.com/Information-Privacy-Engineering-Design-Understanding-ebook/dp/B082FMW1XX"
},
{
"resource_type": "video",
"is_free": true,
"title": "Data Security Essentials",
"author": "Oracle developers",
"subject_coverage": 4,
"depth": 3,
"link": "https://www.youtube.com/watch?v=9WckTTqpD_M"
},
]
}
}