Skip to content

Commit f60bcf5

Browse files
Convert markdown links to JSX Link components in Flink and Spark tableData
- Converted [Hive] and [AWS Glue] markdown links to JSX Link components in Flink tableData - Converted [Hive Metastore] and [AWS Glue] markdown links to JSX Link components in Spark tableData - Added Link import to spark.mdx - Links now properly render as clickable elements with blue-link styling
1 parent caa78a5 commit f60bcf5

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

docs-iceberg-query-engine/flink.mdx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,11 @@ export const flinkTableData = {
532532
tooltip: "Support for all major catalog implementations"
533533
},
534534
details: {
535-
value: "[Hive](/docs/writers/iceberg/catalog/hive/), Hadoop, REST (incl. Nessie), [AWS Glue](/docs/writers/iceberg/catalog/glue/), JDBC, custom implementations",
535+
value: (
536+
<>
537+
<Link to="/docs/writers/iceberg/catalog/hive/" className="blue-link">Hive</Link>, Hadoop, REST (incl. Nessie), <Link to="/docs/writers/iceberg/catalog/glue/" className="blue-link">AWS Glue</Link>, JDBC, custom implementations
538+
</>
539+
),
536540
tooltip: "CREATE CATALOG statements with flexible catalog-type and catalog-impl options"
537541
},
538542
version: { value: "1.18+" }

docs-iceberg-query-engine/snowflake.mdx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ export const snowflakeFeatures = [
480480
chip: "External Engine Access",
481481
description: (
482482
<>
483-
UniForm exposes Snowflake tables through Iceberg-compatible REST catalog so external engines (Spark, <Link to="/iceberg/query-engine/trino" className="blue-link">Trino</Link>) can read them. Cross-cloud support via External Volumes
483+
UniForm exposes Snowflake tables through Iceberg-compatible REST catalog so <Link to="/iceberg/query-engine/" className="blue-link">external engines</Link> (Spark, <Link to="/iceberg/query-engine/trino" className="blue-link">Trino</Link>) can read them. Cross-cloud support via External Volumes
484484
</>
485485
),
486486
icon: <ArrowPathIcon className="w-6 h-6" />,
@@ -825,7 +825,11 @@ export const snowflakeUseCases = [
825825
description: "UniForm interoperability for diverse analytical tools",
826826
scenarios: [
827827
"Real-world example: A media company stores video analytics data in Snowflake Iceberg tables. Their data science team uses Snowflake SQL for business intelligence, while their ML engineers use Apache Spark (accessing via UniForm) for model training. Both teams work with the same data without ETL pipelines or data duplication, reducing costs and eliminating sync issues",
828-
"Data sharing between Snowflake and [external engines (Spark, Trino)](/iceberg/query-engine/) without duplication",
828+
(
829+
<>
830+
Data sharing between Snowflake and <Link to="/iceberg/query-engine/" className="blue-link">external engines (Spark, Trino)</Link> without duplication
831+
</>
832+
),
829833
"Hybrid analytical architectures with multiple processing engines and tools",
830834
"Cross-cloud and cross-region data access scenarios with unified governance"
831835
]

docs-iceberg-query-engine/spark.mdx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -657,6 +657,7 @@ export const sparkUseCases = [
657657

658658

659659
import { QueryEngineLayout } from '@site/src/components/Iceberg/QueryEngineLayout';
660+
import Link from '@docusaurus/Link';
660661
import {
661662
ServerStackIcon,
662663
// DatabaseIcon,
@@ -1171,7 +1172,11 @@ export const sparkTableData = {
11711172
tooltip: "Support for all major catalog implementations"
11721173
},
11731174
details: {
1174-
value: "[Hive Metastore](/docs/writers/iceberg/catalog/hive/), Hadoop warehouse, REST, [AWS Glue](/docs/writers/iceberg/catalog/glue/), JDBC, Nessie, custom plug-ins",
1175+
value: (
1176+
<>
1177+
<Link to="/docs/writers/iceberg/catalog/hive/" className="blue-link">Hive Metastore</Link>, Hadoop warehouse, REST, <Link to="/docs/writers/iceberg/catalog/glue/" className="blue-link">AWS Glue</Link>, JDBC, Nessie, custom plug-ins
1178+
</>
1179+
),
11751180
tooltip: "Most comprehensive catalog support in the ecosystem"
11761181
},
11771182
version: { value: "3.0+" }

0 commit comments

Comments
 (0)