-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathindex.astro
More file actions
76 lines (74 loc) · 2.48 KB
/
index.astro
File metadata and controls
76 lines (74 loc) · 2.48 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
---
import Layout from "../layouts/Layout.astro";
import {
DiagramSection,
HeroSection,
KeyFeaturesSection,
LatestUpdatesSection,
ValuePropsSection,
WhitepaperSection,
} from "../components/Home";
import AnnouncementSection from "../components/AnnouncementSection.astro";
import { BookDownloadSection } from "../components/BookDownloadSection";
import { ContributorsSection } from "../components/ContributorsSection";
import CommunitySection from "../components/CommunitySection.astro";
import { ProjectGovernanceSection } from "../components/ProjectGovernanceSection";
const diagramOffsets = {
sm: "35px",
md: "48px",
lg: "63px",
xl: "66px",
};
---
<Layout title="Home">
<AnnouncementSection
title="Announcing Delta Lake 4.0 on Apache Spark™ 4.0"
description="Try out the latest release today!"
url="https://github.com/delta-io/delta/releases/tag/v4.0.0"
/>
<HeroSection
title="Build Lakehouses with Delta Lake"
ctaLabel="Get Started"
ctaUrl="/learn/getting-started"
offsets={diagramOffsets}
>
<Fragment slot="description">
<p class="hero-description">
<a
href="https://databricks.com/wp-content/uploads/2020/08/p975-armbrust.pdf"
target="_blank"
class="description-link">Delta Lake</a
>{" "}
is an open-source storage framework that enables building a format agnostic
<a
href="http://cidrdb.org/cidr2021/papers/cidr2021_paper17.pdf"
target="_blank"
class="description-link">Lakehouse architecture</a
>{" "}
with compute engines including Spark, PrestoDB, Flink, Trino, Hive, Snowflake,
Google BigQuery, Athena, Redshift, Databricks, Azure Fabric and APIs for
Scala, Java, Rust, and Python. With{" "}
<a
href="https://docs.delta.io/latest/delta-uniform.html"
target="_blank"
class="description-link">Delta Universal Format</a
>{" "}
aka UniForm, you can now read Delta tables with Iceberg and Hudi clients.
</p>
</Fragment>
</HeroSection>
<DiagramSection offsets={diagramOffsets} />
<ValuePropsSection />
<LatestUpdatesSection />
<KeyFeaturesSection />
<BookDownloadSection />
<WhitepaperSection />
<ContributorsSection />
<CommunitySection />
<AnnouncementSection
title="Check out Last Week in a Byte newsletter"
description="for the latest Delta events...a week late!"
url="http://go.delta.io/lastweek"
/>
<ProjectGovernanceSection />
</Layout>