This is an automated email from the ASF dual-hosted git repository. ashvin pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/incubator-xtable.git
commit 6a37a9004bdb3420542bd22ef305be5a1c001dae Author: Kyle Weller <[email protected]> AuthorDate: Wed Feb 28 22:04:35 2024 -0800 updated github links and favicon --- website/docs/biglake-metastore.md | 2 +- website/docs/demo/docker.md | 2 +- website/docs/features-and-limitations.md | 2 +- website/docs/glue-catalog.md | 2 +- website/docs/hms.md | 2 +- website/docs/how-to.md | 4 ++-- website/docs/setup.md | 4 ++-- website/docs/unity-catalog.md | 2 +- website/docusaurus.config.js | 6 +++--- website/static/404.html | 2 +- website/static/images/xtable-favicon.png | Bin 0 -> 2446 bytes website/static/index.html | 12 ++++++------ 12 files changed, 20 insertions(+), 20 deletions(-) diff --git a/website/docs/biglake-metastore.md b/website/docs/biglake-metastore.md index 2b108451..f6a6b6ba 100644 --- a/website/docs/biglake-metastore.md +++ b/website/docs/biglake-metastore.md @@ -24,7 +24,7 @@ This document walks through the steps to register a XTable synced Iceberg table ```shell export GOOGLE_APPLICATION_CREDENTIALS=/path/to/service_account_key.json ``` -5. Clone the XTable [repository](https://github.com/onetable-io/onetable) and create the +5. Clone the XTable [repository](https://github.com/apache/incubator-xtable) and create the `utilities-0.1.0-SNAPSHOT-bundled.jar` by following the steps on the [Installation page](/docs/setup) 6. Download the [BigLake Iceberg JAR](gs://spark-lib/biglake/biglake-catalog-iceberg1.2.0-0.1.0-with-dependencies.jar) locally. XTable requires the JAR to be present in the classpath. diff --git a/website/docs/demo/docker.md b/website/docs/demo/docker.md index d610a877..c28c4c3f 100644 --- a/website/docs/demo/docker.md +++ b/website/docs/demo/docker.md @@ -10,7 +10,7 @@ For this purpose, a self-contained data infrastructure is brought up as Docker c ## Pre-requisites * Install Docker in your local machine -* Clone [XTable GitHub repository](https://github.com/onetable-io/onetable) +* Clone [XTable GitHub repository](https://github.com/apache/incubator-xtable) :::note NOTE: This demo was tested in both x86-64 and AArch64 based macOS operating systems diff --git a/website/docs/features-and-limitations.md b/website/docs/features-and-limitations.md index d2290bc4..c94ffabb 100644 --- a/website/docs/features-and-limitations.md +++ b/website/docs/features-and-limitations.md @@ -29,7 +29,7 @@ This sync provides users with the following: - the metadata table (`hoodie.metadata.enable=true`) and - hive style partitioning (`hoodie.datasource.write.hive_style_partitioning=true`) wherever applicable when reading the data. - Be sure to enable `parquet.avro.write-old-list-structure=false` for proper compatibility with lists when syncing from Hudi to Iceberg. -- When using Hudi as the source for an Iceberg target, you may require field IDs set in the parquet schema. To enable that, follow the instructions [here](https://github.com/onetable-io/onetable/tree/main/hudi-support/extensions). +- When using Hudi as the source for an Iceberg target, you may require field IDs set in the parquet schema. To enable that, follow the instructions [here](https://github.com/apache/incubator-xtable/tree/main/hudi-support/extensions). ### Delta - When using Delta as the source for an Iceberg target, you may require field IDs set in the parquet schema. To enable that, follow the instructions for enabling column mapping [here](https://docs.delta.io/latest/delta-column-mapping.html). diff --git a/website/docs/glue-catalog.md b/website/docs/glue-catalog.md index 4f9a0e3a..9175de51 100644 --- a/website/docs/glue-catalog.md +++ b/website/docs/glue-catalog.md @@ -18,7 +18,7 @@ This document walks through the steps to register a XTable synced table in Glue [AWS docs](https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html) and also set up access credentials by following the steps [here](https://docs.aws.amazon.com/cli/latest/userguide/getting-started-quickstart.html) -3. Clone the XTable [repository](https://github.com/onetable-io/onetable) and create the +3. Clone the XTable [repository](https://github.com/apache/incubator-xtable) and create the `utilities-0.1.0-SNAPSHOT-bundled.jar` by following the steps on the [Installation page](/docs/setup) ## Steps diff --git a/website/docs/hms.md b/website/docs/hms.md index e9d26def..18c6c7ea 100644 --- a/website/docs/hms.md +++ b/website/docs/hms.md @@ -16,7 +16,7 @@ This document walks through the steps to register a XTable synced table on Hive 2. A compute instance where you can run Apache Spark. This can be your local machine, docker, or a distributed system like Amazon EMR, Google Cloud's Dataproc, Azure HDInsight etc. This is a required step to register the table in HMS using a Spark client. -3. Clone the XTable [repository](https://github.com/onetable-io/onetable) and create the +3. Clone the XTable [repository](https://github.com/apache/incubator-xtable) and create the `utilities-0.1.0-SNAPSHOT-bundled.jar` by following the steps on the [Installation page](/docs/setup) 4. This guide also assumes that you have configured the Hive Metastore locally or on EMR/Dataproc/HDInsight and is already running. diff --git a/website/docs/how-to.md b/website/docs/how-to.md index 21795da7..8b0d5c7b 100644 --- a/website/docs/how-to.md +++ b/website/docs/how-to.md @@ -12,7 +12,7 @@ import TabItem from '@theme/TabItem'; Using XTable to sync your source tables in different target format involves running sync on your current dataset using a bundled jar. You can create this bundled jar by following the instructions on the [Installation page](/docs/setup). Read through XTable's -[GitHub page](https://github.com/onetable-io/onetable#building-the-project-and-running-tests) for more information. +[GitHub page](https://github.com/apache/incubator-xtable#building-the-project-and-running-tests) for more information. ::: In this tutorial we will look at how to use XTable to add interoperability between table formats. @@ -23,7 +23,7 @@ history to enable proper point in time queries. ## Pre-requisites 1. A compute instance where you can run Apache Spark. This can be your local machine, docker, or a distributed service like Amazon EMR, Google Cloud's Dataproc, Azure HDInsight etc -2. Clone the XTable [repository](https://github.com/onetable-io/onetable) and create the +2. Clone the XTable [repository](https://github.com/apache/incubator-xtable) and create the `utilities-0.1.0-SNAPSHOT-bundled.jar` by following the steps on the [Installation page](/docs/setup) 3. Optional: Setup access to write to and/or read from distributed storage services like: * Amazon S3 by following the steps diff --git a/website/docs/setup.md b/website/docs/setup.md index cd8d86bf..92059ead 100644 --- a/website/docs/setup.md +++ b/website/docs/setup.md @@ -4,7 +4,7 @@ This page covers the essential steps to setup XTable in your environment. ## Pre-requisites 1. Building the project requires Java 11 and Maven to be setup and configured using PATH or environment variables. -2. Clone the XTable project GitHub [repository](https://github.com/onetable-io/onetable) in your environment. +2. Clone the XTable project GitHub [repository](https://github.com/apache/incubator-xtable) in your environment. ## Steps #### Building the project @@ -19,7 +19,7 @@ For skipping the tests while building, add `-DskipTests`. mvn clean package -DskipTests ``` -For more information on the steps, follow the project's GitHub [README.md](https://github.com/onetable-io/onetable/blob/main/README.md) +For more information on the steps, follow the project's GitHub [README.md](https://github.com/apache/incubator-xtable/blob/main/README.md) ## Next Steps See the [Quickstart](/docs/how-to) guide to learn to use XTable to add interoperability between diff --git a/website/docs/unity-catalog.md b/website/docs/unity-catalog.md index ce06f5e8..977565de 100644 --- a/website/docs/unity-catalog.md +++ b/website/docs/unity-catalog.md @@ -16,7 +16,7 @@ This document walks through the steps to register a XTable synced Delta table in * Follow the steps outlined [here](https://docs.databricks.com/en/storage/azure-storage.html) for Azure Data Lake Storage Gen2 and Blob Storage. 3. Create a Unity Catalog metastore in Databricks as outlined [here](https://docs.gcp.databricks.com/data-governance/unity-catalog/create-metastore.html#create-a-unity-catalog-metastore). 4. Create an external location in Databricks as outlined [here](https://docs.databricks.com/en/sql/language-manual/sql-ref-syntax-ddl-create-location.html). -5. Clone the XTable [repository](https://github.com/onetable-io/onetable) and create the +5. Clone the XTable [repository](https://github.com/apache/incubator-xtable) and create the `utilities-0.1.0-SNAPSHOT-bundled.jar` by following the steps on the [Installation page](/docs/setup) ## Steps diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js index 285a51d4..2933cde7 100644 --- a/website/docusaurus.config.js +++ b/website/docusaurus.config.js @@ -7,7 +7,7 @@ const darkCodeTheme = require('prism-react-renderer/themes/dracula'); /** @type {import('@docusaurus/types').Config} */ const config = { title: 'XTable', - favicon: 'images/onetable_favicon.png', + favicon: 'images/xtable-favicon.png', url: 'https://onetable.dev', baseUrl: '/', @@ -50,7 +50,7 @@ const config = { alt: 'XTable Logo', href: 'pathname:///', target: '_self', - src: 'images/xtable.png', + src: 'images/xtable-icon.png', }, items: [ { @@ -60,7 +60,7 @@ const config = { label: 'Docs', }, { - href: 'https://github.com/onetable-io/onetable', + href: 'https://github.com/apache/incubator-xtable', label: 'GitHub', position: 'right', }, diff --git a/website/static/404.html b/website/static/404.html index 1cb5d412..324309b1 100644 --- a/website/static/404.html +++ b/website/static/404.html @@ -16,7 +16,7 @@ <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script> <script type="text/javascript">WebFont.load({ google: { families: ["Material Icons:regular"] }});</script> <script type="text/javascript">!function(o,c){var n=c.documentElement,t=" w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script> - <link href="images/favicon.png" rel="shortcut icon" type="image/x-icon"> + <link href="images/xtable-favicon.png" rel="shortcut icon" type="image/x-icon"> <link href="images/webclip.png" rel="apple-touch-icon"> </head> <body> diff --git a/website/static/images/xtable-favicon.png b/website/static/images/xtable-favicon.png new file mode 100644 index 00000000..ae130926 Binary files /dev/null and b/website/static/images/xtable-favicon.png differ diff --git a/website/static/index.html b/website/static/index.html index 5480983d..544183f3 100644 --- a/website/static/index.html +++ b/website/static/index.html @@ -23,7 +23,7 @@ <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script> <script type="text/javascript">WebFont.load({ google: { families: ["Material Icons:regular"] }});</script> <script type="text/javascript">!function(o,c){var n=c.documentElement,t=" w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script> - <link href="images/favicon.png" rel="shortcut icon" type="image/x-icon"> + <link href="images/xtable-favicon.png" rel="shortcut icon" type="image/x-icon"> <link href="images/webclip.png" rel="apple-touch-icon"> </head> <body class="body"> @@ -34,7 +34,7 @@ <a href="#" class="nav-link w-nav-link">Home</a> <a href="https://onetable.dev/docs/setup/" class="nav-link w-nav-link">Docs</a> <a href="https://onetable.dev/blog" class="nav-link w-nav-link">Blogs</a><img src="images/break.svg" loading="lazy" alt="" class="image-10"> - <a href="https://github.com/onetable-io/onetable" class="nav-icon-link1 w-inline-block"><img src="images/Github.svg" loading="lazy" alt=""></a> + <a href="https://github.com/apache/incubator-xtable" class="nav-icon-link1 w-inline-block"><img src="images/Github.svg" loading="lazy" alt=""></a> <a href="https://www.linkedin.com/company/onetable-oss/" class="nav-icon-link1 w-inline-block"><img src="images/linkedin.svg" loading="lazy" alt=""></a> <a href="https://twitter.com/OnetableOSS" class="nav-icon-link1 w-inline-block"><img src="images/twitter.svg" loading="lazy" alt=""></a> </nav> @@ -50,7 +50,7 @@ <a href="#" class="nav-link-copy w-nav-link">Home</a> <a href="https://onetable.dev/docs/setup/" class="nav-link-copy w-nav-link">Docs</a> <a href="https://onetable.dev/blog" class="nav-link-copy w-nav-link">Blogs</a> - <a href="https://github.com/onetable-io/onetable" class="nav-link-copy w-nav-link">GitHub</a> + <a href="https://github.com/apache/incubator-xtable" class="nav-link-copy w-nav-link">GitHub</a> <a href="#" class="nav-link-copy w-nav-link">LinkedIn</a> <a href="#" class="nav-link-copy w-nav-link">Twitter</a> </nav> @@ -65,7 +65,7 @@ <img src="images/xtable-words-white.png" loading="lazy" alt="" class="xtable-title"> <div class="hero-textblock">Seamlessly interoperate cross-table between Apache Hudi, Delta Lake, and Apache Iceberg</div> <div class="button-group"> - <a href="https://github.com/onetable-io/onetable" class="primary-button w-button">Try it on GitHub</a> + <a href="https://github.com/apache/incubator-xtable" class="primary-button w-button">Try it on GitHub</a> <a href="https://onetable.dev/docs/setup/" class="secondary-button w-button">Learn More</a> </div> </div> @@ -132,7 +132,7 @@ <h1 class="heading-section-together">Let's <span class="text-span">build together</span></h1> <div class="text-block">XTable is a community driven open source project. Come join us on Github and find easy ways to contribute.</div> </div> - <a href="https://github.com/onetable-io/onetable" class="primary-button w-button">Try it on GitHub</a> + <a href="https://github.com/apache/incubator-xtable" class="primary-button w-button">Try it on GitHub</a> </div> </div> </section> @@ -223,7 +223,7 @@ <div class="div-block-25"><img src="images/xtable-white.png" loading="lazy" alt="" class="image-8"></div> <div class="footer-block-three"> <a href="https://onetable.dev/docs/setup/" class="footer-link-three">Docs</a> - <a href="https://github.com/onetable-io/onetable" class="footer-link-three">GitHub</a> + <a href="https://github.com/apache/incubator-xtable" class="footer-link-three">GitHub</a> <a href="https://www.linkedin.com/company/onetable-oss/" class="footer-link-three">LinkedIn</a> <a href="https://twitter.com/OnetableOSS" class="footer-link-three l">Twitter</a> </div>
