-
Notifications
You must be signed in to change notification settings - Fork 1
/
glossary.html
1502 lines (943 loc) · 54.4 KB
/
glossary.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Starburst | Glossary</title>
<meta name="viewport" content="width=device-width">
<meta property="og:type" content="website">
<meta property="og:title" content="Starburst - Glossary">
<meta property="og:description" content="Your hub to all knowledge about Starburst products.">
<meta property="og:image" content="/assets/img/starburst-og-image.png">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded">
<!-- <link rel="stylesheet" href="/assets/fontawesome/css/all.css"> -->
<link rel="stylesheet" href="/assets/css/bootstrap.min.css">
<link rel="stylesheet" href="/assets/css/mdb.min.css">
<link rel="stylesheet" href="/assets/css/highlight.css">
<link rel="stylesheet" href="/assets/css/fonts.css">
<link rel="stylesheet" href="/assets/css/style.css">
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CY10FQPGJS"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-CY10FQPGJS');
</script>
<script type="text/javascript">
window.heap=window.heap||[],heap.load=function(e,t){window.heap.appid=e,window.heap.config=t=t||{};var r=document.createElement("script");r.type="text/javascript",r.async=!0,r.src="https://cdn.heapanalytics.com/js/heap-"+e+".js";var a=document.getElementsByTagName("script")[0];a.parentNode.insertBefore(r,a);for(var n=function(e){return function(){heap.push([e].concat(Array.prototype.slice.call(arguments,0)))}},p=["addEventProperties","addUserProperties","clearEventProperties","identify","resetIdentity","removeEventProperty","setEventProperties","track","unsetEventProperty"],o=0;o<p.length;o++)heap[p[o]]=n(p[o])};
heap.load("588835629");
</script>
<script>
var ALGOLIA_INSIGHTS_SRC = "https://cdn.jsdelivr.net/npm/[email protected]";
!function(e,a,t,n,s,i,c){e.AlgoliaAnalyticsObject=s,e[s]=e[s]||function(){
(e[s].queue=e[s].queue||[]).push(arguments)},i=a.createElement(t),c=a.getElementsByTagName(t)[0],
i.async=1,i.src=n,c.parentNode.insertBefore(i,c)
}(window,document,"script",ALGOLIA_INSIGHTS_SRC,"aa");
</script>
<!-- Begin Jekyll SEO tag v2.8.0 -->
<title>Glossary | Starburst</title>
<meta name="generator" content="Jekyll v4.2.2" />
<meta property="og:title" content="Glossary" />
<meta property="og:locale" content="en_US" />
<meta name="description" content="Your hub to all knowledge about Starburst products." />
<meta property="og:description" content="Your hub to all knowledge about Starburst products." />
<link rel="canonical" href="https://docs.starburst.io/glossary.html" />
<meta property="og:url" content="https://docs.starburst.io/glossary.html" />
<meta property="og:site_name" content="Starburst" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary" />
<meta property="twitter:title" content="Glossary" />
<script type="application/ld+json">
{"@context":"https://schema.org","@type":"WebPage","description":"Your hub to all knowledge about Starburst products.","headline":"Glossary","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://docs.starburst.io/assets/img/logo/starburst-reverse.png"}},"url":"https://docs.starburst.io/glossary.html"}</script>
<!-- End Jekyll SEO tag -->
</head>
<body>
<div class="wrap">
<header class="main-header navbar-expand-md">
<div class="navbar fixed-top navbar-dark">
<div class="container">
<div class="navbar-left-container">
<a class="navbar-brand" href="https://www.starburst.io/">
<img src="/assets/img/logo/Starburst_Logo_White+Blue.svg" height="25" alt="Starburst">
</a>
<span class="navbar-divider"></span>
<a href="/" class="header-text">Documentation</a>
</div>
<div class="nav-item dropdown" id="site-search">
<div id="dropdownSearchDisplay" aria-labelledby="dropdownSearch">
<div id="algolia-search">
<div id="searchbox"></div>
<div
class="refinement-list"
id="versionsRefinementList"
style="display: none"
></div>
<div class="refinement-list" id="product-list">
<h6>Product:</h6>
</div>
<div id="hits"></div>
<div id="stats"></div>
</div>
</div>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
</div>
<nav class="primary-nav">
<div class="container collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-layout navbar-nav mr-auto">
<li class="nav-item dropdown">
<a id="introduction"
class="nav-link dropdown-toggle"
aria-haspopup="true" aria-label="Introduction" data-is-click="false"
href="/introduction/index.html">Introduction</a>
<div class="dropdown-menu dropdown-docs">
<a class="dropdown-item" href="/introduction/concepts.html">Concepts</a>
<a class="dropdown-item" href="/introduction/architecture.html">Architecture</a>
<a class="dropdown-item" href="/introduction/choose-your-starburst-product.html">Choose your Starburst product</a>
<a class="dropdown-item" href="/introduction/data-sources-catalogs.html">Data sources and catalogs</a>
<a class="dropdown-item" href="/introduction/data-lake.html">Data lakes</a>
<a class="dropdown-item" href="/introduction/object-storage.html">Using object storage systems</a>
<a class="dropdown-item" href="/introduction/metastores.html">Metastore options</a>
<a class="dropdown-item" href="/introduction/security.html">Security</a>
<a class="dropdown-item" href="/introduction/querying-data.html">Querying data with Starburst products</a>
<a class="dropdown-item" href="/introduction/starburst-sql.html">Using SQL</a>
<a class="dropdown-item" href="/introduction/migration.html">Migrating queries to Starburst</a>
<a class="dropdown-item" href="/introduction/query-performance.html">Query performance</a>
<a class="dropdown-item" href="/introduction/performance-features.html">Performance features</a>
</div>
</li>
<li class="nav-item dropdown">
<a id="clients"
class="nav-link dropdown-toggle"
aria-haspopup="true" aria-label="Clients" data-is-click="false"
href="/clients/index.html">Clients</a>
<div class="dropdown-menu dropdown-docs">
<a class="dropdown-item" href="/clients/index.html">All clients</a>
<a class="dropdown-item" href="/clients/gather-connection-information.html">Gather connection information</a>
<a class="dropdown-item" href="/clients/cli.html">Trino CLI</a>
<a class="dropdown-item" href="/clients/jdbc.html">JDBC driver</a>
<a class="dropdown-item" href="/clients/odbc.html">ODBC driver</a>
<a class="dropdown-item" href="/clients/machine-learning.html">Machine learning</a>
</div>
</li>
<li class="nav-item dropdown">
<a id="starburst-galaxy"
class="nav-link dropdown-toggle"
aria-haspopup="true" aria-label="Starburst Galaxy" data-is-click="false"
href="/starburst-galaxy/index.html">Starburst Galaxy</a>
<div class="dropdown-menu dropdown-docs">
<a class="dropdown-item" href="/starburst-galaxy/get-started/index.html">Get started</a>
<a class="dropdown-item" href="/starburst-galaxy/get-started/get-support.html">Help center</a>
<a class="dropdown-item" href="/starburst-galaxy/working-with-data/index.html">Working with data</a>
<a class="dropdown-item" href="/starburst-galaxy/working-with-data/query-data/index.html"> Query data</a>
<a class="dropdown-item" href="/starburst-galaxy/working-with-data/explore-data/index.html"> Explore data</a>
<a class="dropdown-item" href="/starburst-galaxy/working-with-data/create-catalogs/index.html">Manage catalogs</a>
<a class="dropdown-item" href="/starburst-galaxy/working-with-data/explore-data/browse-data-products.html">Data products</a>
<a class="dropdown-item" href="/starburst-galaxy/data-engineering/index.html">Data engineering</a>
<a class="dropdown-item" href="/starburst-galaxy/cluster-administration/index.html">Cluster administration</a>
<a class="dropdown-item" href="/starburst-galaxy/security-and-compliance/index.html">Security and compliance</a>
<a class="dropdown-item" href="/starburst-galaxy/troubleshooting/index.html">Troubleshooting</a>
<a class="dropdown-item" href="/starburst-galaxy/developer-tools/python/index.html">Python</a>
<a class="dropdown-item" href="/starburst-galaxy/reference/sql/index.html">SQL</a>
<a class="dropdown-item" href="/starburst-galaxy/reference/index.html">Reference</a>
</div>
</li>
<li class="nav-item dropdown">
<a id="starburst-enterprise"
class="nav-link dropdown-toggle"
aria-haspopup="true" aria-label="Get started" data-is-click="false"
href="/starburst-enterprise/index.html">Starburst Enterprise</a>
<div class="dropdown-menu dropdown-docs">
<a class="dropdown-item" href="/latest/index.html">Latest documentation</a>
<a class="dropdown-item" href="/latest/language.html">SQL reference</a>
<a class="dropdown-item" href="/latest/connector.html">Connect to data sources</a>
<a class="dropdown-item" href="/latest/admin-topics.html">Administration topics</a>
<a class="dropdown-item" href="/latest/security.html">Security</a>
<a class="dropdown-item" href="/latest/versions.html">Version information</a>
</div>
</li>
<li class="nav-item dropdown">
<a id="resources"
class="nav-link dropdown-toggle active"
aria-haspopup="true" aria-label="resources" data-is-click="false"
href="/resources.html">Resources</a>
<div class="dropdown-menu dropdown-docs">
<a class="dropdown-item" href="/support.html">Support</a>
<a class="dropdown-item" href="https://www.starburst.io/community/forum/">Community forum</a>
<a class="dropdown-item" href="https://www.starburst.io/blog/technical">Technical blog</a>
<a class="dropdown-item" href="/security/index.html">Security</a>
<a class="dropdown-item" href="https://academy.starburst.io/">Starburst Academy</a>
<a class="dropdown-item" href="/videos/index.html">Video library</a>
<a class="dropdown-item" href="/glossary.html">Glossary</a>
<a class="dropdown-item" href="/conventions.html">Conventions</a>
<a class="dropdown-item" href="/iconography.html">Iconography</a>
</div>
</li>
</ul>
</div>
</nav>
</header>
<div class="container content">
<div class="row">
<div class="col-md-3 side-navigation">
<div class="spacer-60 toc-sticky left-nav">
<div>
<h6 class="overline product-nav-title">Resources</h6>
</div>
<hr />
<li >
<a href="/resources.html" >Overview</a>
</li>
<li >
<a href="/support.html" >Support</a>
</li>
<li >
<a href="https://www.starburst.io/community/forum/" >Starburst forum</a>
</li>
<li >
<a href="https://www.starburst.io/blog/technical" >Technical blog</a>
</li>
<li >
<a href="/security/index.html" >Security</a>
</li>
<li >
<a href="https://academy.starburst.io/" >Starburst Academy</a>
</li>
<li >
<a href="/videos/index.html" >Video library</a>
</li>
<li class="active">
<a href="/glossary.html" >Glossary</a>
</li>
<li >
<a href="/conventions.html" >Conventions</a>
</li>
<li >
<a href="/iconography.html" >Iconography</a>
</li>
</div>
</div>
<div class="col-md-9 col-lg-6 spacer-30 docs-content">
<div class="breadcrumbs">
<p>
Glossary
</p>
</div>
<h1 id="glossary">
Glossary <a href="#glossary" class="titleAnchor">#</a>
</h1>
<h5 id="terms-a-e">
Terms A-E <a href="#terms-a-e" class="titleAnchor">#</a>
</h5>
<h6 id="amazon-aws-marketplace">
Amazon AWS marketplace <a href="#amazon-aws-marketplace" class="titleAnchor">#</a>
</h6>
<p>A provider for all aspects of the required infrastructure. This includes using
AWS CloudFormation for provisioning, Amazon Simple Storage Service (S3) for
storage, Amazon Machine Images (AMI), and Amazon Elastic Compute Cloud (EC2) for
computes, Amazon Glue as metadata catalog, and others.</p>
<p><a name="bare-metal"></a></p>
<h6 id="bare-metal-server">
Bare-metal server <a href="#bare-metal-server" class="titleAnchor">#</a>
</h6>
<p>A physical computer server dedicated to a single consumer. See <a href="https://wikipedia.org/wiki/Bare-metal_server">bare-metal
server</a>.</p>
<div class="row-with-logo">
<div class="row-with-logo-text-container">
<h6 id="catalog">
Catalog <a href="#catalog" class="titleAnchor">#</a>
</h6>
<p>Configures a connection to a data source. Catalogs are generally defined by a
<a href="#data-engineer-persona">data engineer</a>. Each catalog’s configuration specifies
a <a href="#connector">connector</a> to define which data source the catalog connects to.
For more information about catalogs, see
<a href="./get-started/data-sources-catalogs.html">catalog</a>.</p>
</div>
<div class="row-with-logo-image-container">
<img class="img-fluid" src="assets/img/icons/icon-catalog-default.svg" alt="Catalog" />
</div>
</div>
<h6 id="certificate">
Certificate <a href="#certificate" class="titleAnchor">#</a>
</h6>
<p>A public key <a href="https://wikipedia.org/wiki/Public_key_certificate">certificate</a>
issued by a CA, sometimes abbreviated as cert, that verifies the ownership of a
server’s keys. Certificate format is specified in the
<a href="https://wikipedia.org/wiki/X.509">X.509</a> standard.</p>
<h6 id="certificate-authority-ca">
Certificate Authority (CA) <a href="#certificate-authority-ca" class="titleAnchor">#</a>
</h6>
<p>A trusted organization that signs and issues certificates. Its signatures are
used to verify the validity of <a href="#certificate">certificates</a>.</p>
<div class="row-with-logo">
<div class="row-with-logo-text-container">
<h6 id="client">
Client <a href="#client" class="titleAnchor">#</a>
</h6>
<p>Client applications send queries to Trino clusters and receive
results from connected data sources. Client applications can be command line-,
desktop-, or browser-based.</p>
</div>
<div class="row-with-logo-image-container">
<img class="img-fluid" src="assets/img/icons/icon-clients-default.svg" alt="Clients" />
</div>
</div>
<h6 id="clock-time">
Clock time <a href="#clock-time" class="titleAnchor">#</a>
</h6>
<p>See the definition for <a href="#wall-time">wall time</a>.</p>
<div class="row-with-logo">
<div class="row-with-logo-text-container">
<h6 id="cluster">
Cluster <a href="#cluster" class="titleAnchor">#</a>
</h6>
<p>Provides the resources to run queries against numerous data sources. For more
information, see <a href="./platform-administrator/cluster.html">cluster basics</a>.</p>
</div>
<div class="row-with-logo-image-container">
<img class="img-fluid" src="assets/img/icons/icon-trino-based-cluster-default.svg" alt="Trino-based cluster" />
</div>
</div>
<div class="row-with-logo">
<div class="row-with-logo-text-container">
<h6 id="connector">
Connector <a href="#connector" class="titleAnchor">#</a>
</h6>
<p>Translates data from a data source into Starburst Galaxy or SEP
schemas, tables, columns, rows, and data types. A <a href="#connector">connector</a> is
specific to a data source and is used in <a href="#catalog">catalogs</a> to define the data
source type. For more information, see <a href="./get-started/data-sources-catalogs.html#connectors">Data sources and
catalogs</a>.</p>
</div>
<div class="row-with-logo-image-container">
<img class="img-fluid" src="assets/img/icons/icon-connector-default.svg" alt="Connector" />
</div>
</div>
<h6 id="container">
Container <a href="#container" class="titleAnchor">#</a>
</h6>
<p>A lightweight virtual package of software that contains libraries, binaries,
code, configuration files, and other dependencies needed to deploy an
application. A running container does not include an operating system. It uses
the operating system of the host machine. To learn more, read about containers
in the <a href="https://kubernetes.io/docs/concepts/containers/">Kubernetes
documentation</a>.</p>
<div class="row-with-logo">
<div class="row-with-logo-text-container">
<h6 id="coordinator">
Coordinator <a href="#coordinator" class="titleAnchor">#</a>
</h6>
<p>A server that handles incoming queries, and manages <a href="#worker">workers</a> to
execute the queries. A cluster has only one coordinator.</p>
</div>
<div class="row-with-logo-image-container">
<img class="img-fluid" src="assets/img/icons/icon-coordinator-default.svg" alt="Coordinator" />
</div>
</div>
<h6 id="cots">
COTS <a href="#cots" class="titleAnchor">#</a>
</h6>
<p>Common off-the-shelf. Refers to commodity hardware components.</p>
<h6 id="data-consumer-persona">
Data consumer persona <a href="#data-consumer-persona" class="titleAnchor">#</a>
</h6>
<p>Owns data products such as reports, dashboards, models, and the quality of
analysis.</p>
<h6 id="data-engineer-persona">
Data engineer persona <a href="#data-engineer-persona" class="titleAnchor">#</a>
</h6>
<p>Owns schemas and is responsible for the source data quality and ETL SLA.</p>
<div class="row-with-logo">
<div class="row-with-logo-text-container">
<h6 id="data-lake">
Data lake <a href="#data-lake" class="titleAnchor">#</a>
</h6>
<p>A single repository for storing and processing structured, semistructured, or
unstructured data from multiple sources in native format. For more information
about data lake and data lakehouse architectures, see <a href="./get-started/data-lake.html">Data
lake</a>.</p>
</div>
<div class="row-with-logo-image-container">
<img class="img-fluid" src="assets/img/icons/icon-data-lake-default.svg" alt="Data lake" />
</div>
</div>
<div class="row-with-logo">
<div class="row-with-logo-text-container">
<h6 id="data-lakehouse">
Data lakehouse <a href="#data-lakehouse" class="titleAnchor">#</a>
</h6>
<p>A data storage architecture that combines features of a <a href="#data-lake">data lake</a>
and a <a href="#data-warehouse">data warehouse</a>. Data lakehouses use the same underlying
storage technologies as data lakes along with ACID-compliant table formats such
as Iceberg, Hudi, and Delta Lake. For more information about data lake and data
lakehouse architectures, see <a href="./get-started/data-lake.html">Data lake</a>.</p>
</div>
<div class="row-with-logo-image-container">
<img class="img-fluid" src="assets/img/icons/icon-data-lakehouse-default.svg" alt="Data lakehouse" />
</div>
</div>
<div class="row-with-logo">
<div class="row-with-logo-text-container">
<h6 id="data-source">
Data source <a href="#data-source" class="titleAnchor">#</a>
</h6>
<p>A system from which data is retrieved, for example, PostgreSQL, or Iceberg
tables stored on S3. Users query data sources with <a href="#catalog">catalogs</a> that
connect to each source. See <a href="./get-started/data-sources-catalogs.html">Data sources and
catalogs</a>.</p>
</div>
<div class="row-with-logo-image-container">
<img class="img-fluid" src="assets/img/icons/icon-other-sources-default.svg" alt="Other sources" />
</div>
</div>
<h6 id="data-virtualization">
Data virtualization <a href="#data-virtualization" class="titleAnchor">#</a>
</h6>
<p><a href="https://wikipedia.org/wiki/Data_virtualization">Data virtualization</a> is a
method of abstracting an interaction with multiple <a href="#data-source">heterogeneous data
sources</a> without needing to know the distributed nature of the
data, its format, or any other technical details involved in presenting the
data.</p>
<div class="row-with-logo">
<div class="row-with-logo-text-container">
<h6 id="data-warehouse">
Data warehouse <a href="#data-warehouse" class="titleAnchor">#</a>
</h6>
<p>A purpose-built database system that is optimized for reporting and analysis by
data consumers.</p>
</div>
<div class="row-with-logo-image-container">
<img class="img-fluid" src="assets/img/icons/icon-data-warehouse-default.svg" alt="Data warehouse" />
</div>
</div>
<h6 id="driver">
Driver <a href="#driver" class="titleAnchor">#</a>
</h6>
<p>A driver is a sequence of operator instances. Drivers act upon data and combine
<a href="#operator">operators</a> to produce output that is aggregated by a <a href="#task">task</a>,
and then delivered to another task in another <a href="#stage">stage</a>.</p>
<h6 id="exchange">
Exchange <a href="#exchange" class="titleAnchor">#</a>
</h6>
<p>Exchanges transfer data between cluster nodes for different stages of
a query. <a href="#task">Tasks</a> move data into an output buffer and consume data from
other tasks using an exchange client.</p>
<h6 id="external-id-aws">
External ID (AWS) <a href="#external-id-aws" class="titleAnchor">#</a>
</h6>
<p>An external ID is an identifier in AWS that is required for using
Starburst Galaxy. It is used to ensure that only trusted AWS accounts are given
permission to operate the Starburst Galaxy clusters based on their assigned
role and trust policy. For more information on AWS Identity and Access
Management, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_create_for-user_externalid.html">How to use an external ID when granting access to your AWS
resources to a third
party</a>.</p>
<h5 id="terms-f-j">
Terms F-J <a href="#terms-f-j" class="titleAnchor">#</a>
</h5>
<h6 id="google-cloud-marketplace">
Google Cloud Marketplace <a href="#google-cloud-marketplace" class="titleAnchor">#</a>
</h6>
<p>Deploy in the Google Cloud Marketplace or using the Starburst Kubernetes
solution on the Google Kubernetes Engine (GKE). GKE is a secure, production
ready, managed Kubernetes service in Google Cloud managing for containerized
applications.</p>
<h6 id="gzip">
gzip <a href="#gzip" class="titleAnchor">#</a>
</h6>
<p>A file format and program that compresses and decompresses files. The most
common extension for gzip-compressed files is <code class="language-plaintext highlighter-rouge">.gz</code>.</p>
<h6 id="hdfs">
HDFS <a href="#hdfs" class="titleAnchor">#</a>
</h6>
<p>A scalable, <a href="#open-source">open source</a> filesystem created to store large
amounts of data for the <a href="https://wikipedia.org/wiki/Apache_Hadoop">Hadoop
ecosystem</a>.</p>
<h6 id="hive-metastore-service-hms">
Hive Metastore Service (HMS) <a href="#hive-metastore-service-hms" class="titleAnchor">#</a>
</h6>
<p>Manages metadata for data stores that do not necessarily have a catalog, such as
HDFS, Object Stores (S3, ADLS, GKS, Min.IO, etc). The metadata is stored in a
RDBMS like PostgreSQL.</p>
<h6 id="java-keystore-jks">
Java KeyStore (JKS) <a href="#java-keystore-jks" class="titleAnchor">#</a>
</h6>
<p>The system of public key cryptography supported as one part of the Java security
APIs. The legacy JKS system recognizes keys and <a href="#certificate">certificates</a>
stored in <em>keystore</em> files, typically with the <code class="language-plaintext highlighter-rouge">.jks</code> extension. By default, it
relies on a system-level list of <a href="#certificate-authority-ca">CAs</a> in
<em>truststore</em> files installed as part of Java.</p>
<h5 id="terms-k-o">
Terms K-O <a href="#terms-k-o" class="titleAnchor">#</a>
</h5>
<h6 id="key">
Key <a href="#key" class="titleAnchor">#</a>
</h6>
<p>A cryptographic key specified as a pair of public and private strings generally
used in the context of <a href="#transport-layer-security-tls">TLS</a> to secure public
network traffic.</p>
<h6 id="lake-data-non-delta">
Lake data (non-Delta) <a href="#lake-data-non-delta" class="titleAnchor">#</a>
</h6>
<p>Data stored in a traditional lake method as files in an object store.</p>
<h6 id="load-balancer-lb">
Load Balancer (LB) <a href="#load-balancer-lb" class="titleAnchor">#</a>
</h6>
<p>Software or a hardware device that sits on a network edge and accepts network
connections on behalf of servers behind that wall, distributing traffic across
network and server infrastructure to balance the load on networked services.</p>
<h6 id="marketplace">
Marketplace <a href="#marketplace" class="titleAnchor">#</a>
</h6>
<p>Purchase a preconfigured set of machine images, containers, and other needed
resources to run SEP on their cloud hosts under your control.</p>
<h6 id="metastore">
Metastore <a href="#metastore" class="titleAnchor">#</a>
</h6>
<p>A database used to catalog the metadata of a data collection. The metadata can
include tables, columns, schemas, file paths, and storage formats.</p>
<h6 id="microsoft-azure-marketplace">
Microsoft Azure marketplace <a href="#microsoft-azure-marketplace" class="titleAnchor">#</a>
</h6>
<p>Deploy using in the Azure Marketplace or using the Starburst Kubernetes solution
onto the Azure Kubernetes Services (AKS). AKS is a secure, production-ready,
managed Kubernetes service on Azure for managing for containerized applications.</p>
<div class="row-with-logo">
<div class="row-with-logo-text-container">
<h6 id="object-storage">
Object storage <a href="#object-storage" class="titleAnchor">#</a>
</h6>
<p><a href="https://en.wikipedia.org/wiki/Object_storage">Object storage</a> is a file
storage mechanism. Examples of compatible object stores include the
following:</p>
<ul>
<li><a href="https://aws.amazon.com/s3">Amazon S3</a></li>
<li><a href="https://cloud.google.com/storage">Google Cloud Storage</a></li>
<li><a href="https://azure.microsoft.com/en-us/products/storage/blobs">Azure Blob Storage</a></li>
<li><a href="https://min.io">MinIO</a> and other S3-compatible stores</li>
<li><a href="#hdfs">HDFS</a></li>
</ul>
</div>
<div class="row-with-logo-image-container">
<img class="img-fluid" src="assets/img/icons/icon-object-store-default.svg" alt="Object store" />
</div>
</div>
<h6 id="open-source">
Open-source <a href="#open-source" class="titleAnchor">#</a>
</h6>
<p>Typically refers to <a href="https://wikipedia.org/wiki/Open-source_software">open-source
software</a>, which is software
that has the source code available for others to see, use, and modify. Allowed
usage varies depending on the license. Trino is licensed under the
<a href="https://wikipedia.org/wiki/Apache_License">Apache license</a> and is maintained by
a community of contributors from across the globe.</p>
<h6 id="operator">
Operator <a href="#operator" class="titleAnchor">#</a>
</h6>
<p>An operator consumes, transforms and produces data. For example, a <em>table scan
operator</em> fetches data from a <a href="#connector">connector</a> and produces data that can
be consumed by other operators. A <em>filter operator</em> consumes data and
produces a subset by applying a predicate over the input data.</p>
<h5 id="terms-p-t">
Terms P-T <a href="#terms-p-t" class="titleAnchor">#</a>
</h5>
<h6 id="parser">
Parser <a href="#parser" class="titleAnchor">#</a>
</h6>
<p>Analyses the Service Provider Interface (SPI) metadata for information about
tables, columns, and types to validate SQL semantics, and to perform security
checks and type checking of expressions in the original query.</p>
<h6 id="pem-file-format">
PEM file format <a href="#pem-file-format" class="titleAnchor">#</a>
</h6>
<p>A format for storing and sending cryptographic keys and certificates. PEM format
can contain both a key and its certificate, plus the chain of certificates from
authorities back to the root <a href="#certificate-authority-(ca)">CA</a>, or back to a CA
vendor’s intermediate CA.</p>
<h6 id="personal-information-pi-">
Personal information (PI) <a name="pinfo"></a> <a href="#personal-information-pi-" class="titleAnchor">#</a>
</h6>
<p>Personal information (PI) is broader in scope than <a href="https://www.wikipedia.org/wiki/Personal_data">personally identifiable
information (PII)</a>, encompassing
additional information such as IP address, sexual orientation, and union
membership.</p>
<h6 id="pkcs-12">
PKCS #12 <a href="#pkcs-12" class="titleAnchor">#</a>
</h6>
<p>A binary archive used to store <a href="#key">keys</a> and <a href="#certificate">certificates</a> or
certificate chains that validate a key. PKCS #12 files have <code class="language-plaintext highlighter-rouge">.p12</code> or <code class="language-plaintext highlighter-rouge">.pfx</code>
extensions.</p>
<h6 id="planner">
Planner <a href="#planner" class="titleAnchor">#</a>
</h6>
<p>Uses the Statistics SPI to obtain information about row counts and table sizes
to perform cost-based query optimizations during planning.</p>
<h6 id="platform-administrator-persona">
Platform administrator persona <a href="#platform-administrator-persona" class="titleAnchor">#</a>
</h6>
<p>Owns platforms and services (ITIL-style). Has service SLA responsibility for the
infrastructure supporting the cluster.</p>
<h6 id="presto-and-prestosql">
Presto and PrestoSQL <a href="#presto-and-prestosql" class="titleAnchor">#</a>
</h6>
<p>The old name for Trino. To learn more about the name change to
Trino, read <a href="https://wikipedia.org/wiki/Trino_(SQL_query_engine)#History">the
history</a>.</p>
<div class="row-with-logo">
<div class="row-with-logo-text-container">
<h6 id="query">
Query <a href="#query" class="titleAnchor">#</a>
</h6>
<p>A <a href="#statement">statement</a> in a query language that results in data being
returned from a <a href="#data-source">data source</a>, or operations being performed on
data in the data source.</p>
</div>
<div class="row-with-logo-image-container">
<img class="img-fluid" src="assets/img/icons/icon-sql-query-default.svg" alt="SQL query" />
</div>
</div>
<h6 id="query-federation">
Query Federation <a href="#query-federation" class="titleAnchor">#</a>
</h6>
<p>A type of <a href="#data-virtualization">data virtualization</a> that provides a common
access point and data model across two or more heterogeneous data sources. A
popular data model used by many query federation engines is translating
different data sources to <a href="#sql">SQL</a> tables.</p>
<h6 id="queue">
Queue <a href="#queue" class="titleAnchor">#</a>