-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathblogs.json
More file actions
1918 lines (1914 loc) · 78.7 KB
/
blogs.json
File metadata and controls
1918 lines (1914 loc) · 78.7 KB
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
{
"blogs": [
{
"title": "3 Surprising Truths About the Free Apache Polaris-Based Dremio Open Catalog",
"date": "2025-12-22",
"url": "https://www.dremio.com/blog/3-surprising-truths-about-the-free-apache-polaris-based-dremio-open-catalog/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.alexmerced.com/data",
"project_slugs": ["iceberg", "polaris"],
"tags": ["Apache Iceberg", "Apache Polaris"]
},
{
"title": "5 Counter-Intuitive Dremio Performance Tips for Lightning-Fast Iceberg Queries",
"date": "2025-12-22",
"url": "https://www.dremio.com/blog/5-counter-intuitive-dremio-performance-tips-for-lightning-fast-iceberg-queries/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.alexmerced.com/data",
"project_slugs": ["iceberg", "polaris"],
"tags": ["Apache Iceberg", "Apache Polaris"]
},
{
"title": "Data Ingestion Patterns Using Dremio: From Raw Data to Apache Iceberg",
"date": "2025-12-19",
"url": "https://www.dremio.com/blog/data-ingestion-patterns-using-dremio-from-raw-data-to-apache-iceberg/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.alexmerced.com/data",
"project_slugs": ["iceberg", "polaris"],
"tags": ["Apache Iceberg", "Apache Polaris"]
},
{
"title": "5 Steps to Supercharge Your Analytics with Dremio’s AI Agent and Apache Iceberg",
"date": "2025-12-18",
"url": "https://www.dremio.com/blog/5-steps-to-supercharge-your-analytics-with-dremios-ai-agent-and-apache-iceberg/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.alexmerced.com/data",
"project_slugs": ["iceberg", "polaris"],
"tags": ["Apache Iceberg", "Apache Polaris"]
},
{
"title": "5 Dremio Features That Will Change How You Think About The Apache Iceberg Lakehouse",
"date": "2025-12-10",
"url": "https://www.dremio.com/blog/5-dremio-features-that-will-change-how-you-think-about-the-apache-iceberg-lakehouse/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.alexmerced.com/data",
"project_slugs": ["iceberg", "polaris"],
"tags": ["Apache Iceberg", "Apache Polaris"]
},
{
"title": "Ingesting Data into Apache Iceberg Using Python Tools with Dremio Catalog",
"date": "2025-11-24",
"url": "https://www.dremio.com/blog/ingesting-data-into-apache-iceberg-using-python-tools-with-a-dremio-catalog/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.alexmerced.com/data",
"project_slugs": ["iceberg", "polaris"],
"tags": ["Apache Iceberg", "Apache Polaris"]
},
{
"title": "Try Apache Polaris (incubating) on Your Laptop with Minio",
"date": "2025-10-14",
"url": "https://www.dremio.com/blog/try-apache-polaris-incubating-on-your-laptop-with-minio/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.alexmerced.com/data",
"project_slugs": ["iceberg", "polaris"],
"tags": ["Apache Iceberg", "Apache Polaris"]
},
{
"title": "Apache Iceberg Table Performance Management with Dremio’s OPTIMIZE",
"date": "2025-10-02",
"url": "https://www.dremio.com/blog/apache-iceberg-table-performance-management-with-dremios-optimize/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.alexmerced.com/data",
"project_slugs": ["iceberg", "polaris"],
"tags": ["Apache Iceberg", "Apache Polaris"]
},
{
"title": "Apache Iceberg Table Storage Management with Dremio’s VACUUM TABLE",
"date": "2025-10-02",
"url": "https://www.dremio.com/blog/apache-iceberg-table-storage-management-with-dremios-vacuum-table/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.alexmerced.com/data",
"project_slugs": ["iceberg", "polaris"],
"tags": ["Apache Iceberg", "Apache Polaris"]
},
{
"title": "How Apache Iceberg Branching transforms Data Management",
"date": "2025-09-09",
"url": "https://www.starburst.io/blog/iceberg-branching-data-management/",
"company": "Starburst",
"author": "Starburst",
"author_url": "https://starburst.io",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Iceberg v3 + Starburst",
"date": "2025-09-04",
"url": "https://www.starburst.io/blog/iceberg-v3/",
"company": "Starburst",
"author": "Starburst",
"author_url": "https://starburst.io",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Iceberg Partitioning vs. Hive Partitioning",
"date": "2025-05-13",
"url": "https://olake.io/iceberg/hive-partitioning-vs-iceberg-partitioning",
"company": "OLake",
"author": "Sandeep Devarapalli",
"author_url": "https://olake.io",
"project_slugs": ["iceberg", "hive"],
"tags": ["Apache Iceberg", "Hive", "Partitioning", "OLake"]
},
{
"title": "Apache Hive vs Apache Iceberg: Choosing the Right Data Lakehouse Technology",
"date": "2025-09-15",
"url": "https://olake.io/blog/apache-iceberg-hive-comparison",
"company": "OLake",
"author": "Akshay Kumar Sharma",
"author_url": "https://olake.io",
"project_slugs": ["iceberg", "hive"],
"tags": ["Apache Iceberg", "Apache Hive", "Data Lakehouse"]
},
{
"title": "TPC-H Databricks vs Apache Iceberg - (OLake + AWS Glue + EMR)",
"date": "2025-10-28",
"url": "https://olake.io/iceberg/databricks-vs-iceberg/",
"company": "OLake",
"author": "Nayan Joshi",
"author_url": "https://olake.io",
"project_slugs": ["iceberg", "hive"],
"tags": ["Apache Iceberg", "Apache Hive", "Data Lakehouse"]
},
{
"title": "Comparison of Delete Strategies in Apache Iceberg and Delta Lake",
"date": "2025-09-04",
"url": "https://olake.io/blog/iceberg-delta-lake-delete-methods-comparison",
"company": "OLake",
"author": "OLake Team",
"author_url": "https://olake.io",
"project_slugs": ["iceberg", "delta"],
"tags": ["Apache Iceberg", "Delta Lake"]
},
{
"title": "The Ultimate Guide to Open Table Formats - Iceberg, Delta Lake, Hudi, Paimon, and DuckLake",
"date": "2025-09-24",
"url": "https://datalakehousehub.com/blog/2025-09-ultimate-guide-to-open-table-formats/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.alexmerced.com/data",
"project_slugs": ["iceberg", "delta", "paimon", "hudi"],
"tags": ["Apache Iceberg", "Delta Lake", "Apache Paimon", "Apache Hudi", "DuckLake"]
},
{
"title": "The 2025 & 2026 Ultimate Guide to the Data Lakehouse and the Data Lakehouse Ecosystem",
"date": "2025-09-23",
"url": "https://datalakehousehub.com/blog/2025-09-2026-guide-to-data-lakehouses/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.alexmerced.com/data",
"project_slugs": ["iceberg", "delta", "hudi", "paimon", "polaris", "gravitino"],
"tags": ["Apache Iceberg", "Delta Lake", "Apache Hudi", "Apache Paimon", "Apache Polaris", "Apache Gravitino"]
},
{
"title": "What's New in Apache Iceberg 1.10.0, and what comes next!",
"date": "2025-09-12",
"url": "https://www.dremio.com/blog/whats-new-in-apache-iceberg-1-10-0-and-what-comes-next/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.alexmerced.com/data",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Looking back the last year in Lakehouse OSS: Advances in Apache Arrow, Iceberg & Polaris (incubating)",
"date": "2025-09-05",
"url": "https://www.dremio.com/blog/looking-back-the-last-year-in-lakehouse-oss-advances-in-apache-arrow-iceberg-polaris-incubating/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.alexmerced.com/data",
"project_slugs": ["arrow", "iceberg", "polaris"],
"tags": ["Apache Arrow", "Apache Iceberg", "Apache Polaris"]
},
{
"title": "Scaling Data Lakes: Moving from Raw Parquet to Iceberg Lakehouses",
"date": "2025-09-05",
"url": "https://www.dremio.com/blog/scaling-data-lakes-moving-from-raw-parquet-to-iceberg-lakehouses/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.alexmerced.com/data",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Unlocking the Power of Agentic AI with Apache Iceberg and Dremio",
"date": "2025-09-05",
"url": "https://iceberglakehouse.com/posts/2025-09-agentic-ai-dremio-apache-iceberg/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.alexmerced.com/data",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Kafka to Iceberg - Exploring the Options",
"date": "2025-08-18",
"url": "https://rmoff.net/2025/08/18/kafka-to-iceberg-exploring-the-options/",
"company": "Confluent",
"author": "Robin Moffatt",
"author_url": "https://www.linkedin.com/in/robinmoffatt",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Optimizing Apache Iceberg Tables – Manual and Automatic",
"date": "2025-08-08",
"url": "https://www.dremio.com/blog/optimizing-iceberg-tables/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.alexmerced.com/data",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Optimizing Apache Iceberg for Agentic AI",
"date": "2025-08-01",
"url": "https://www.dremio.com/blog/optimizing-apache-iceberg-for-agentic-ai/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.alexmerced.com/data",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "5 Ways Dremio Makes Apache Iceberg Lakehouses Easy",
"date": "2025-07-29",
"url": "https://www.dremio.com/blog/5-ways-dremio-makes-apache-iceberg-lakehouses-easy/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.alexmerced.com/data",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "How to Load Data from MySQL to Iceberg in Real Time",
"date": "2025-07-10",
"url": "https://doc.bladepipe.com/blog/tech_share/mysql_iceberg_sync",
"company": "BladePipe",
"author": "BladePipe",
"author_url": "https://www.bladepipe.com",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Making Sense of Apache Iceberg Statistics",
"date": "2025-07-09",
"url": "https://www.ryft.io/blog/making-sense-of-apache-iceberg-statistics",
"company": "Ryft",
"author": "Guy Yasoor",
"author_url": "https://www.linkedin.com/in/guy-yasoor/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Quick Start with Apache Iceberg and Apache Polaris on your Laptop (quick setup notebook environment)",
"date": "2025-07-07",
"url": "https://www.dremio.com/blog/quick-start-with-apache-iceberg-and-apache-polaris-on-your-laptop-quick-setup-notebook-environment/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.alexmerced.com/data",
"project_slugs": ["iceberg", "polaris"],
"tags": ["Apache Iceberg", "Apache Polaris"]
},
{
"title": "Query Results Caching on Iceberg Tables",
"date": "2025-07-07",
"url": "https://www.dremio.com/blog/query-results-caching-on-iceberg-tables/",
"company": "Dremio",
"author": "Benny Chow",
"author_url": "https://www.dremio.com/authors/benny-chow/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Writing to Apache Iceberg on S3 using Kafka Connect with Glue catalog",
"date": "2025-07-04",
"url": "https://rmoff.net/2025/07/04/writing-to-apache-iceberg-on-s3-using-kafka-connect-with-glue-catalog/",
"company": "Confluent",
"author": "Robin Moffatt",
"author_url": "https://www.linkedin.com/in/robinmoffatt",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Benchmarking Framework for the Apache Iceberg Catalog, Polaris",
"date": "2025-07-01",
"url": "https://www.dremio.com/blog/query-results-caching-on-iceberg-tables/",
"company": "Dremio",
"author": "Pierre Laporte",
"author_url": "https://www.dremio.com/authors/pierre-laporte/",
"project_slugs": ["polaris", "iceberg"],
"tags": ["Apache Polaris", "Apache Iceberg"]
},
{
"title": "Writing to Apache Iceberg on S3 using Flink SQL with Glue catalog",
"date": "2025-06-24",
"url": "https://rmoff.net/2025/06/24/writing-to-apache-iceberg-on-s3-using-flink-sql-with-glue-catalog/",
"company": "Confluent",
"author": "Robin Moffatt",
"author_url": "https://www.linkedin.com/in/robinmoffatt",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Querying Apache Iceberg with Sub-Second Performance",
"date": "2025-06-11",
"url": "https://www.firebolt.io/blog/querying-apache-iceberg-with-sub-second-performance",
"company": "Firebolt",
"author": "Lorenz Hübschle",
"author_url": "https://www.linkedin.com/in/lorenzhs",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Extending Apache Iceberg: Best Practices for Storing and Discovering Custom Metadata",
"date": "2025-06-09",
"url": "https://www.dremio.com/blog/extending-apache-iceberg-best-practices-for-storing-and-discovering-custom-metadata/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.alexmerced.com/data",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Using Dremio with Confluent’s TableFlow for Real-Time Apache Iceberg Analytics",
"date": "2025-05-30",
"url": "https://www.dremio.com/blog/using-dremio-with-confluents-tableflow-for-real-time-apache-iceberg-analytics/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.alexmerced.com/data",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "What Are Apache Iceberg Tables? Benefits and challenges",
"date": "2025-05-21",
"url": "https://www.redpanda.com/blog/apache-iceberg-tables-benefits-challenges",
"company": "Redpanda",
"author": "Redpanda",
"author_url": "https://redpanda.com",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Real-Time Analytics on Apache Iceberg with Tinybird",
"date": "2025-05-20",
"url": "https://www.tinybird.co/blog-posts/real-time-analytics-on-apache-iceberg-with-tinybird",
"company": "Tinybird",
"author": "Alberto Romeu",
"author_url": "https://www.linkedin.com/in/alrocar/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Introducing Dremio Auth Manager for Apache Iceberg",
"date": "2025-05-01",
"url": "https://www.dremio.com/blog/introducing-dremio-auth-manager-for-apache-iceberg/",
"company": "Dremio",
"author": "Alex Dutra",
"author_url": "https://www.dremio.com/authors/alex-dutra/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "What’s New in Apache Iceberg Format Version 3?",
"date": "2025-04-30",
"url": "https://www.dremio.com/blog/apache-iceberg-v3/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.alexmerced.com/data",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Dremio’s Apache Iceberg Clustering: Technical Blog",
"date": "2025-04-28",
"url": "https://www.dremio.com/blog/dremios-apache-iceberg-clustering-technical-blog/",
"company": "Dremio",
"author": "Gang Xiao",
"author_url": "https://www.dremio.com/authors/gang-xiao/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Credential Vending with Iceberg REST Catalogs in Dremio",
"date": "2025-04-08",
"url": "https://www.dremio.com/blog/iceberg-credential-vending/",
"company": "Dremio",
"author": "Adam Szita & Tamas Mate",
"author_url": "https://www.dremio.com/authors/adam-szita/",
"project_slugs": ["iceberg", "polaris", "nessie"],
"tags": ["Apache Iceberg", "Apache Polaris", "Project Nessie"]
},
{
"title": "Disaster Recovery for Apache Iceberg Tables – Restoring from Backup and Getting Back Online",
"date": "2025-03-26",
"url": "https://www.dremio.com/blog/disaster-recovery-for-apache-iceberg-tables-restoring-from-backup-and-getting-back-online/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.alexmerced.com/data",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "How to Load Data into Apache Iceberg: A Step-by-Step Tutorial",
"date": "2025-03-20",
"url": "https://estuary.dev/blog/loading-data-into-apache-iceberg/",
"company": "Estuary",
"author": "Dani Pálma",
"author_url": "https://www.linkedin.com/in/danthelion",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "The Future of Apache Polaris (Incubating)",
"date": "2025-02-21",
"url": "https://www.dremio.com/blog/apache-polaris-roadmap-2025/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.alexmerced.com/data",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Building AI Agents with LangChain using Dremio, Iceberg, and Unified Data",
"date": "2025-02-01",
"url": "https://www.dremio.com/blog/ai-agents-with-dremio/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.alexmerced.com/data",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "3 Reasons Why Dremio Is the Best SQL Query Engine for Apache Iceberg",
"date": "2024-11-27",
"url": "https://www.dremio.com/blog/dremio-best-sql-engine-for-apache-iceberg/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.alexmerced.com/data",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Building a Data Lake with Debezium and Apache Iceberg",
"date": "2024-11-15",
"url": "https://medium.com/@ismail-simsek/building-a-data-lake-with-debezium-and-apache-iceberg-part-1-25124daf2a95",
"company": "Memiiso Community",
"author": "Ismail Simsek",
"author_url": "https://www.linkedin.com/in/ismailsimsek/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Adopting Apache Iceberg? How Dremio can enhance your Iceberg Journey",
"date": "2024-11-11",
"url": "https://www.dremio.com/blog/why-dremio-and-apache-iceberg/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.alexmerced.com/data",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Breaking Down the Benefits of Lakehouses, Apache Iceberg and Dremio",
"date": "2024-10-25",
"url": "https://www.dremio.com/blog/benefits-of-an-iceberg-lakehouse-with-dremio/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg", "nessie"],
"tags": ["Apache Iceberg", "Project Nessie"]
},
{
"title": "Hands-on with Apache Iceberg Tables using PyIceberg using Nessie and Minio",
"date": "2024-10-22",
"url": "https://www.dremio.com/blog/intro-to-pyiceberg/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg", "nessie"],
"tags": ["Apache Iceberg", "Project Nessie"]
},
{
"title": "A Brief Guide to the Governance of Apache Iceberg Tables",
"date": "2024-10-08",
"url": "https://medium.com/data-engineering-with-dremio/a-brief-guide-to-the-governance-of-apache-iceberg-tables-7c0a50316e22",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Ultimate Directory of Apache Iceberg Resources",
"date": "2024-10-07",
"url": "https://medium.com/data-engineering-with-dremio/ultimate-directory-of-apache-iceberg-resources-e3e02efac62e",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "A Guide to Change Data Capture (CDC) with Apache Iceberg",
"date": "2024-10-03",
"url": "https://www.dremio.com/blog/cdc-with-apache-iceberg/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Using Nessie’s REST Catalog Support for Working with Apache Iceberg Tables",
"date": "2024-10-03",
"url": "https://www.dremio.com/blog/use-nessie-with-iceberg-rest-catalog/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["nessie", "iceberg"],
"tags": ["Project Nessie", "Apache Iceberg"]
},
{
"title": "Using Nussknacker with Apache Iceberg: Periodical report example",
"date": "2024-09-27",
"url": "https://nussknacker.io/blog/nussknacker-iceberg-example",
"company": "Nussknacker",
"author": "Arkadiusz Burdach",
"author_url": "https://www.linkedin.com/in/arekburdach/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Hands-on with Apache Iceberg on Your Laptop: Deep Dive with Apache Spark, Nessie, Minio, Dremio, Polars and Seaborn",
"date": "2024-09-20",
"url": "https://medium.com/data-engineering-with-dremio/hands-on-with-apache-iceberg-on-your-laptop-deep-dive-with-apache-spark-nessie-minio-dremio-c5d689b01730",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg", "nessie"],
"tags": ["Apache Iceberg", "Project Nessie"]
},
{
"title": "Leveraging Apache Iceberg Metadata Tables in Dremio for Effective Data Lakehouse Auditing",
"date": "2024-09-16",
"url": "https://www.dremio.com/blog/apache-iceberg-metadata-tables/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Why Thinking about Apache Iceberg Catalogs Like Nessie and Apache Polaris (incubating) Matters",
"date": "2024-09-05",
"url": "https://www.dremio.com/blog/why-thinking-about-apache-iceberg-catalogs-like-nessie-and-apache-polaris-incubating-matters/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg", "nessie", "polaris"],
"tags": ["Apache Iceberg", "Project Nessie", "Apache Polaris"]
},
{
"title": "8 Tools For Ingesting Data Into Apache Iceberg",
"date": "2024-08-20",
"url": "https://www.dremio.com/blog/8-tools-for-ingesting-data-into-apache-iceberg/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Evolving the Data Lake: From CSV/JSON to Parquet to Apache Iceberg",
"date": "2024-08-19",
"url": "https://www.dremio.com/blog/evolving-the-data-lake-from-csv-json-to-parquet-to-apache-iceberg/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Guide to Maintaining an Apache Iceberg Lakehouse",
"date": "2024-08-12",
"url": "https://www.dremio.com/blog/guide-to-maintaining-an-apache-iceberg-lakehouse/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Migration Guide for Apache Iceberg Lakehouses",
"date": "2024-08-08",
"url": "https://www.dremio.com/blog/migration-guide-for-apache-iceberg-lakehouses/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Getting Hands-on with Polaris OSS, Apache Iceberg and Apache Spark",
"date": "2024-08-01",
"url": "https://www.dremio.com/blog/getting-hands-on-with-polaris-oss-apache-iceberg-and-apache-spark/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["polaris", "iceberg"],
"tags": ["Apache Polaris", "Apache Iceberg"]
},
{
"title": "Sending Data to Apache Iceberg from Apache Kafka with Apache Flink",
"date": "2024-07-18",
"url": "https://www.decodable.co/blog/kafka-to-iceberg-with-flink",
"company": "Decodable",
"author": "Robin Moffatt",
"author_url": "https://www.linkedin.com/in/robinmoffatt",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "What is a Data Lakehouse and a Table Format?",
"date": "2024-07-11",
"url": "https://www.dremio.com/blog/apache-iceberg-crash-course-what-is-a-data-lakehouse-and-a-table-format/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "How to get data from Apache Kafka to Apache Iceberg on S3 with Decodable",
"date": "2024-06-18",
"url": "https://www.decodable.co/blog/kafka-to-iceberg-with-decodable",
"company": "Decodable",
"author": "Robin Moffatt",
"author_url": "https://www.linkedin.com/in/robinmoffatt",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "The Nessie Ecosystem and the Reach of Git for Data for Apache Iceberg",
"date": "2024-05-28",
"url": "https://www.dremio.com/blog/the-nessie-ecosystem-and-the-reach-of-git-for-data-for-apache-iceberg/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["nessie", "iceberg"],
"tags": ["Project Nessie", "Apache Iceberg"]
},
{
"title": "The Evolution of Apache Iceberg Catalogs",
"date": "2024-05-24",
"url": "https://www.dremio.com/blog/the-evolution-of-apache-iceberg-catalogs/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "From JSON, CSV and Parquet to Dashboards with Apache Iceberg and Dremio",
"date": "2024-05-13",
"url": "https://www.dremio.com/blog/from-json-csv-and-parquet-to-dashboards-with-apache-iceberg-and-dremio/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "From Apache Druid to Dashboards with Dremio and Apache Iceberg",
"date": "2024-05-13",
"url": "https://www.dremio.com/blog/from-apache-druid-to-dashboards-with-dremio-and-apache-iceberg/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Ingesting Data into Nessie & Apache Iceberg with kafka-connect and querying it with Dremio",
"date": "2024-05-10",
"url": "https://www.dremio.com/blog/ingesting-data-into-nessie-apache-iceberg-with-kafka-connect-and-querying-it-with-dremio/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["nessie", "iceberg"],
"tags": ["Project Nessie", "Apache Iceberg"]
},
{
"title": "From MySQL to Dashboards with Dremio and Apache Iceberg",
"date": "2024-05-07",
"url": "https://www.dremio.com/blog/from-mysql-to-dashboards-with-dremio-and-apache-iceberg/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "From Elasticsearch to Dashboards with Dremio and Apache Iceberg",
"date": "2024-05-07",
"url": "https://www.dremio.com/blog/from-elasticsearch-to-dashboards-with-dremio-and-apache-iceberg/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Streaming and Batch Data Lakehouses with Apache Iceberg, Dremio and Upsolver",
"date": "2024-04-15",
"url": "https://www.dremio.com/blog/streaming-and-batch-data-lakehouses-with-apache-iceberg-dremio-and-upsolver/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "End-to-End Basic Data Engineering Tutorial (Apache Spark, Apache Iceberg, Dremio, Apache Superset, Nessie)",
"date": "2024-04-01",
"url": "https://medium.com/data-engineering-with-dremio/end-to-end-basic-data-engineering-tutorial-spark-dremio-superset-c076a56eaa75",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg", "nessie"],
"tags": ["Apache Iceberg", "Project Nessie"]
},
{
"title": "From MongoDB to Dashboards with Dremio and Apache Iceberg",
"date": "2024-03-29",
"url": "https://www.dremio.com/blog/from-mongodb-to-dashboards-with-dremio-and-apache-iceberg/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "From SQLServer to Dashboards with Dremio and Apache Iceberg",
"date": "2024-03-29",
"url": "https://www.dremio.com/blog/from-sqlserver-to-dashboards-with-dremio-and-apache-iceberg/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "BI Dashboards with Apache Iceberg Using AWS Glue and Apache Superset",
"date": "2024-03-29",
"url": "https://www.dremio.com/blog/bi-dashboards-with-apache-iceberg-using-aws-glue-and-apache-superset/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "From Postgres to Dashboards with Dremio and Apache Iceberg",
"date": "2024-03-28",
"url": "https://www.dremio.com/blog/from-postgres-to-dashboards-with-dremio-and-apache-iceberg/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Run Graph Queries on Apache Iceberg Tables with Dremio & Puppygraph",
"date": "2024-03-27",
"url": "https://www.dremio.com/blog/run-graph-queries-on-apache-iceberg-tables-with-dremio-puppygraph/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "The Apache Iceberg Lakehouse: The Great Data Equalizer",
"date": "2024-03-06",
"url": "https://amdatalakehouse.substack.com/p/the-apache-iceberg-lakehouse-the",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Data Lakehouse Versioning Comparison: (Nessie, Apache Iceberg, LakeFS)",
"date": "2024-03-05",
"url": "https://www.dremio.com/blog/data-lakehouse-versioning-comparison-nessie-apache-iceberg-lakefs/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["nessie", "iceberg"],
"tags": ["Project Nessie", "Apache Iceberg"]
},
{
"title": "What is Lakehouse Management?: Git-for-Data, Automated Apache Iceberg Table Maintenance and more",
"date": "2024-02-23",
"url": "https://www.dremio.com/blog/what-is-lakehouse-management-git-for-data-automated-apache-iceberg-table-maintenance-and-more/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg", "nessie"],
"tags": ["Apache Iceberg", "Project Nessie"]
},
{
"title": "What is DataOps? Automating Data Management on the Apache Iceberg Lakehouse",
"date": "2024-02-23",
"url": "https://www.dremio.com/blog/what-is-dataops-automating-data-management-on-the-apache-iceberg-lakehouse/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "What is the Data Lakehouse and the Role of Apache Iceberg, Nessie and Dremio?",
"date": "2024-02-21",
"url": "https://amdatalakehouse.substack.com/p/what-is-the-data-lakehouse-and-the",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg", "nessie"],
"tags": ["Apache Iceberg", "Project Nessie"]
},
{
"title": "Ingesting Data Into Apache Iceberg Tables with Dremio: A Unified Path to Iceberg",
"date": "2024-02-01",
"url": "https://www.dremio.com/blog/ingesting-data-into-apache-iceberg-tables-with-dremio-a-unified-path-to-iceberg/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Open Source and the Data Lakehouse: Apache Arrow, Apache Iceberg, Nessie and Dremio",
"date": "2024-02-01",
"url": "https://www.dremio.com/blog/open-source-and-the-data-lakehouse-apache-arrow-apache-iceberg-nessie-and-dremio/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["arrow", "iceberg", "nessie"],
"tags": ["Apache Arrow", "Apache Iceberg", "Project Nessie"]
},
{
"title": "How not to use Apache Iceberg",
"date": "2024-01-23",
"url": "https://medium.com/@ajanthabhat/how-not-to-use-apache-iceberg-046ae7e7c884",
"company": "Dremio",
"author": "Ajantha Bhat",
"author_url": "https://www.linkedin.com/in/ajanthabhat/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Apache Hive-4.x with Iceberg Branches & Tags",
"date": "2023-10-12",
"url": "https://medium.com/@ayushtkn/apache-hive-4-x-with-iceberg-branches-tags-3d52293ac0bf/",
"company": "Cloudera",
"author": "Ayush Saxena",
"author_url": "https://www.linkedin.com/in/ayush151/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Apache Hive 4.x With Apache Iceberg",
"date": "2023-10-12",
"url": "https://medium.com/@ayushtkn/apache-hive-4-x-with-apache-iceberg-part-i-355e7a380725/",
"company": "Cloudera",
"author": "Ayush Saxena",
"author_url": "https://www.linkedin.com/in/ayush151/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Getting Started with Flink SQL and Apache Iceberg",
"date": "2023-08-08",
"url": "https://www.dremio.com/blog/getting-started-with-flink-sql-and-apache-iceberg/",
"company": "Dremio",
"author": "Dipankar Mazumdar & Ajantha Bhat",
"author_url": "https://www.linkedin.com/in/dipankar-mazumdar/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Using Flink with Apache Iceberg and Nessie",
"date": "2023-07-28",
"url": "https://www.dremio.com/blog/using-flink-with-apache-iceberg-and-nessie/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg", "nessie"],
"tags": ["Apache Iceberg", "Project Nessie"]
},
{
"title": "From Hive Tables to Iceberg Tables: Hassle-Free",
"date": "2023-07-14",
"url": "https://blog.cloudera.com/from-hive-tables-to-iceberg-tables-hassle-free/",
"company": "Cloudera",
"author": "Srinivas Rishindra Pothireddi",
"author_url": "https://www.linkedin.com/in/srinivas-rishindra/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "12 Times Faster Query Planning With Iceberg Manifest Caching in Impala",
"date": "2023-07-13",
"url": "https://blog.cloudera.com/12-times-faster-query-planning-with-iceberg-manifest-caching-in-impala/",
"company": "Cloudera",
"author": "Riza Suminto",
"author_url": "https://www.linkedin.com/in/rizasuminto/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "lakeFS ♥️ Apache Iceberg",
"date": "2023-06-26",
"url": "https://lakefs.io/blog/using-lakefs-with-apache-iceberg/",
"company": "LakeFS",
"author": "Robin Moffatt",
"author_url": "https://www.linkedin.com/in/robinmoffatt",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "How Bilibili Builds OLAP Data Lakehouse with Apache Iceberg",
"date": "2023-06-14",
"url": "https://medium.com/@lirui.fudan/how-bilibili-builds-olap-data-lakehouse-with-apache-iceberg-9f3408e53f9",
"company": "Bilibili",
"author": "Rui Li",
"author_url": "https://www.linkedin.com/in/rui-li-19282979/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "How to Convert JSON Files Into an Apache Iceberg Table with Dremio",
"date": "2023-05-31",
"url": "https://www.dremio.com/blog/how-to-convert-json-files-into-an-apache-iceberg-table-with-dremio/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Deep Dive Into Configuring Your Apache Iceberg Catalog with Apache Spark",
"date": "2023-05-31",
"url": "https://www.dremio.com/blog/deep-dive-into-configuring-your-apache-iceberg-catalog-with-apache-spark/",
"company": "Dremio",
"author": "Alex Merced",
"author_url": "https://www.linkedin.com/in/alexmerced/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Streamlining Data Quality in Apache Iceberg with write-audit-publish & branching",
"date": "2023-05-19",
"url": "https://www.dremio.com/blog/streamlining-data-quality-in-apache-iceberg-with-write-audit-publish-branching/",
"company": "Dremio",
"author": "Dipankar Mazumdar & Ajantha Bhat",
"author_url": "https://www.linkedin.com/in/dipankar-mazumdar/",
"project_slugs": ["iceberg"],
"tags": ["Apache Iceberg"]
},
{
"title": "Introducing the Apache Iceberg Catalog Migration Tool",
"date": "2023-05-12",
"url": "https://www.dremio.com/blog/introducing-the-apache-iceberg-catalog-migration-tool/",
"company": "Dremio",
"author": "Dipankar Mazumdar & Ajantha Bhat",
"author_url": "https://www.linkedin.com/in/dipankar-mazumdar/",
"project_slugs": ["iceberg"],