├── .asf.yaml ├── .github └── workflows │ └── asf-site.yml ├── .gitignore ├── LICENSE ├── README.md ├── data └── homePage.json ├── hugo.toml ├── i18n ├── en.toml └── zh.toml ├── layouts ├── _default │ ├── list.html │ └── single.html ├── custompage │ ├── news_table.html │ ├── powered.html │ └── release.html ├── index.html ├── partials │ ├── footer.html │ ├── header.html │ ├── navbar.html │ ├── release_table_head.html │ └── shaded_release_table_head.html └── release │ └── single.html ├── src ├── en │ ├── become_committer.md │ ├── become_pmc_member.md │ ├── developer-tools.md │ ├── improvement-proposals.md │ ├── issue_tracking.md │ ├── mailing_lists.md │ ├── new_committer_process.md │ ├── new_pmc_member_process.md │ ├── news │ │ ├── 2021-06-21-accept-incubator.md │ │ ├── 2021-09-14-release-1.3.0-incubating.md │ │ ├── 2021-10-25-release-1.3.1-incubating.md │ │ ├── 2021-12-10-release-1.4.0-incubating.md │ │ ├── 2021-12-25-new-committers.md │ │ ├── 2022-01-31-release-1.4.1-incubating.md │ │ ├── 2022-03-25-release-1.5.0-incubating.md │ │ ├── 2022-03-29-new-committers.md │ │ ├── 2022-04-21-release-1.5.1-incubating.md │ │ ├── 2022-05-24-new-committers.md │ │ ├── 2022-06-18-release-1.5.2-incubating.md │ │ ├── 2022-06-21-new-committers.md │ │ ├── 2022-07-20-new-committers.md │ │ ├── 2022-07-26-new-committers.md │ │ ├── 2022-09-06-release-1.6.0-incubating.md │ │ ├── 2022-09-13-new-ppmc-members.md │ │ ├── 2022-11-16-release-1.6.1-incubating.md │ │ ├── 2022-11-21-top-level-vote-pass.md │ │ ├── 2022-12-21-top-level-board-resolution.md │ │ ├── 2023-01-19-new-committers-1.md │ │ ├── 2023-01-19-new-committers-2.md │ │ ├── 2023-01-19-top-level-announce.md │ │ ├── 2023-01-31-new-pmc-members.md │ │ ├── 2023-03-08-release-1.7.0.md │ │ ├── 2023-04-07-new-committers.md │ │ ├── 2023-04-08-new-committers.md │ │ ├── 2023-04-10-new-committers.md │ │ ├── 2023-05-05-release-1.7.1.md │ │ ├── 2023-05-21-shaded-release-0.1.0.md │ │ ├── 2023-06-02-new-committers.md │ │ ├── 2023-09-18-release-1.7.2.md │ │ ├── 2023-09-25-release-1.7.3.md │ │ ├── 2023-10-11-new-committers.md │ │ ├── 2023-10-30-new-pmc-members.md │ │ ├── 2023-11-07-new-pmc-members.md │ │ ├── 2023-11-07-release-1.8.0.md │ │ ├── 2023-11-14-new-committers.md │ │ ├── 2023-12-07-shaded-release-0.2.0.md │ │ ├── 2024-01-29-new-committers.md │ │ ├── 2024-02-21-release-1.8.1.md │ │ ├── 2024-03-07-shaded-release-0.3.0.md │ │ ├── 2024-03-19-release-1.9.0.md │ │ ├── 2024-03-24-new-committers.md │ │ ├── 2024-04-09-shaded-release-0.4.0.md │ │ ├── 2024-04-26-release-1.7.4.md │ │ ├── 2024-04-26-release-1.8.2.md │ │ ├── 2024-06-03-release-1.9.1.md │ │ ├── 2024-06-25-new-committers.md │ │ ├── 2024-07-22-shaded-release-0.4.1.md │ │ ├── 2024-07-23-release-1.9.2.md │ │ ├── 2024-10-27-release-1.10.0.md │ │ ├── 2024-11-27-release-1.8.3.md │ │ ├── 2024-12-02-release-1.9.3.md │ │ ├── 2024-12-26-release-1.10.1.md │ │ ├── 2025-01-02-new-committers.md │ │ ├── 2025-05-22-shaded-release-0.5.0.md │ │ ├── 2025-05-27-release-1.10.2.md │ │ ├── 2025-05-27-release-1.9.4.md │ │ └── NOTE.txt │ ├── powered_by.md │ ├── project_history.md │ ├── public │ │ ├── categories │ │ │ └── index.xml │ │ ├── index.xml │ │ ├── sitemap.xml │ │ └── tags │ │ │ └── index.xml │ ├── pull_request.md │ ├── release │ │ ├── 1.10.0.md │ │ ├── 1.10.1.md │ │ ├── 1.10.2.md │ │ ├── 1.3.0-incubating.md │ │ ├── 1.3.1-incubating.md │ │ ├── 1.4.0-incubating.md │ │ ├── 1.4.1-incubating.md │ │ ├── 1.5.0-incubating.md │ │ ├── 1.5.1-incubating.md │ │ ├── 1.5.2-incubating.md │ │ ├── 1.6.0-incubating.md │ │ ├── 1.6.1-incubating.md │ │ ├── 1.7.0.md │ │ ├── 1.7.1.md │ │ ├── 1.7.2.md │ │ ├── 1.7.3.md │ │ ├── 1.7.4.md │ │ ├── 1.8.0.md │ │ ├── 1.8.1.md │ │ ├── 1.8.2.md │ │ ├── 1.8.3.md │ │ ├── 1.9.0.md │ │ ├── 1.9.1.md │ │ ├── 1.9.2.md │ │ ├── 1.9.3.md │ │ ├── 1.9.4.md │ │ └── NOTE.txt │ ├── releases.md │ ├── shaded-release │ │ ├── 0.1.0.md │ │ ├── 0.2.0.md │ │ ├── 0.3.0.md │ │ ├── 0.4.0.md │ │ ├── 0.4.1.md │ │ └── 0.5.0.md │ ├── version_control.md │ └── vote │ │ └── templates │ │ ├── committer_accept.md │ │ ├── committer_announcement.md │ │ ├── committer_completion.md │ │ ├── committer_discussion.md │ │ ├── committer_invitation.md │ │ ├── committer_vote.md │ │ └── committer_vote_close.md └── zh │ ├── become_committer.md │ ├── become_pmc_member.md │ ├── developer-tools.md │ ├── improvement-proposals.md │ ├── issue_tracking.md │ ├── mailing_lists.md │ ├── new_committer_process.md │ ├── new_pmc_member_process.md │ ├── news │ ├── 2021-06-21-accept-incubator.md │ ├── 2021-09-14-release-1.3.0-incubating.md │ ├── 2021-10-25-release-1.3.1-incubating.md │ ├── 2021-12-10-release-1.4.0-incubating.md │ ├── 2021-12-25-new-committers.md │ ├── 2022-01-31-release-1.4.1-incubating.md │ ├── 2022-03-25-release-1.5.0-incubating.md │ ├── 2022-03-29-new-committers.md │ ├── 2022-04-21-release-1.5.1-incubating.md │ ├── 2022-05-24-new-committers.md │ ├── 2022-06-18-release-1.5.2-incubating.md │ ├── 2022-06-21-new-committers.md │ ├── 2022-07-20-new-committers.md │ ├── 2022-07-26-new-committers.md │ ├── 2022-09-06-release-1.6.0-incubating.md │ ├── 2022-09-13-new-ppmc-members.md │ ├── 2022-11-16-release-1.6.1-incubating.md │ ├── 2023-01-19-new-committers-1.md │ ├── 2023-01-19-new-committers-2.md │ ├── 2023-01-31-new-pmc-members.md │ ├── 2023-03-08-release-1.7.0.md │ ├── 2023-04-07-new-committers.md │ ├── 2023-04-08-new-committers.md │ ├── 2023-04-10-new-committers.md │ ├── 2023-05-05-release-1.7.1.md │ ├── 2023-05-21-shaded-release-0.1.0.md │ ├── 2023-06-02-new-committers.md │ ├── 2023-09-18-release-1.7.2.md │ ├── 2023-09-25-release-1.7.3.md │ ├── 2023-10-11-new-committers.md │ ├── 2023-10-30-new-pmc-members.md │ ├── 2023-11-07-new-pmc-members.md │ ├── 2023-11-07-release-1.8.0.md │ ├── 2023-11-14-new-committers.md │ ├── 2023-12-07-shaded-release-0.2.0.md │ ├── 2024-01-29-new-committers.md │ ├── 2024-02-21-release-1.8.1.md │ ├── 2024-03-07-shaded-release-0.3.0.md │ ├── 2024-03-19-release-1.9.0.md │ ├── 2024-03-24-new-committers.md │ ├── 2024-04-09-shaded-release-0.4.0.md │ ├── 2024-04-26-release-1.7.4.md │ ├── 2024-04-26-release-1.8.2.md │ ├── 2024-06-03-release-1.9.1.md │ ├── 2024-06-25-new-committers.md │ ├── 2024-07-22-shaded-release-0.4.1.md │ ├── 2024-07-23-release-1.9.2.md │ ├── 2024-10-27-release-1.10.0.md │ ├── 2024-11-27-release-1.8.3.md │ ├── 2024-12-02-release-1.9.3.md │ ├── 2024-12-26-release-1.10.1.md │ ├── 2025-01-02-new-committers.md │ ├── 2025-05-22-shaded-release-0.5.0.md │ ├── 2025-05-27-release-1.10.2.md │ └── 2025-05-27-release-1.9.4.md │ ├── powered_by.md │ ├── project_history.md │ ├── pull_request.md │ ├── release │ ├── 1.10.0.md │ ├── 1.10.1.md │ ├── 1.10.2.md │ ├── 1.3.0-incubating.md │ ├── 1.3.1-incubating.md │ ├── 1.4.0-incubating.md │ ├── 1.4.1-incubating.md │ ├── 1.5.0-incubating.md │ ├── 1.5.1-incubating.md │ ├── 1.5.2-incubating.md │ ├── 1.6.0-incubating.md │ ├── 1.6.1-incubating.md │ ├── 1.7.0.md │ ├── 1.7.1.md │ ├── 1.7.2.md │ ├── 1.7.3.md │ ├── 1.7.4.md │ ├── 1.8.0.md │ ├── 1.8.1.md │ ├── 1.8.2.md │ ├── 1.8.3.md │ ├── 1.9.0.md │ ├── 1.9.1.md │ ├── 1.9.2.md │ ├── 1.9.3.md │ └── 1.9.4.md │ ├── releases.md │ ├── shaded-release │ ├── 0.1.0.md │ ├── 0.2.0.md │ ├── 0.3.0.md │ ├── 0.4.0.md │ ├── 0.4.1.md │ └── 0.5.0.md │ └── version_control.md └── static ├── activeShare.png ├── asf_logo_wide.png ├── css ├── homePage.css ├── kyuubi.css └── vendor │ ├── bootstrap-theme.min.css │ ├── bootstrap.min.css │ └── semantic.min.css ├── favicon.ico ├── homePageImg ├── bannerBg_m.png ├── community1.png ├── community2.png ├── community3.png ├── community4.png ├── community5.png ├── community6.png ├── ecoA1.png ├── ecoA2.png ├── ecoA3.png ├── ecoA4.png ├── ecoA5.png ├── ecoA6.png ├── ecoB1.png ├── ecoB2.png ├── ecoB3.png ├── ecoB4.png ├── ecoB5.png ├── ecoB6.png ├── ecoC1.png ├── ecoC2.png ├── ecoC3.png ├── ecoC4.png ├── ecoC5.png ├── ecoC6.png ├── indexBanner.png ├── kf1.png ├── kf2.png ├── kf3.png ├── powered1.png ├── powered10.png ├── powered11.png ├── powered12.png ├── powered13.png ├── powered14.png ├── powered15.png ├── powered16.png ├── powered17.png ├── powered18.png ├── powered19.png ├── powered2.png ├── powered20.png ├── powered21.png ├── powered22.png ├── powered23.png ├── powered24.png ├── powered25.png ├── powered26.png ├── powered27.png ├── powered28.png ├── powered29.png ├── powered3.png ├── powered30.png ├── powered31.png ├── powered32.png ├── powered33.png ├── powered34.png ├── powered35.png ├── powered36.png ├── powered37.png ├── powered38.png ├── powered39.png ├── powered4.png ├── powered40.png ├── powered41.png ├── powered42.png ├── powered43.png ├── powered44.png ├── powered45.png ├── powered46.png ├── powered47.png ├── powered48.png ├── powered49.png ├── powered5.png ├── powered6.png ├── powered7.png ├── powered8.png └── powered9.png ├── incubator_feather_egg_logo.png ├── js └── vendor │ ├── bootstrap.min.js │ ├── jquery-1.12.4.min.js │ └── semantic.min.js ├── kyuubi_logo.png ├── kyuubi_logo_hd.png └── share.png /.asf.yaml: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | github: 17 | description: "Apache Kyuubi Site" 18 | homepage: https://kyuubi.apache.org/ 19 | labels: 20 | - kyuubi 21 | enabled_merge_buttons: 22 | squash: true 23 | merge: false 24 | rebase: false 25 | notifications: 26 | commits: commits@kyuubi.apache.org 27 | issues: notifications@kyuubi.apache.org 28 | pullrequests: notifications@kyuubi.apache.org 29 | staging: 30 | profile: ~ 31 | whoami: asf-site 32 | publish: 33 | whoami: asf-site 34 | -------------------------------------------------------------------------------- /.github/workflows/asf-site.yml: -------------------------------------------------------------------------------- 1 | name: Deploy ASF site 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | 8 | jobs: 9 | deploy: 10 | runs-on: ubuntu-24.04 11 | steps: 12 | - uses: actions/checkout@v4 13 | - name: Setup Hugo 14 | uses: peaceiris/actions-hugo@v3 15 | with: 16 | hugo-version: 0.136.4 17 | extended: true 18 | - name: Build 19 | run: hugo --minify 20 | - name: Deploy 21 | uses: peaceiris/actions-gh-pages@v4 22 | with: 23 | github_token: ${{ secrets.GITHUB_TOKEN }} 24 | publish_branch: asf-site 25 | publish_dir: content 26 | destination_dir: content 27 | force_orphan: true 28 | - run: | 29 | git config --global user.name "GitHub Actions" 30 | git config --global user.email "dev@kyuubi.apache.org" 31 | git fetch --all 32 | git checkout asf-site 33 | echo 'publish:' >> .asf.yaml 34 | echo ' whoami: asf-site' >> .asf.yaml 35 | git add .asf.yaml 36 | git commit -m '.asf.yaml' 37 | git push origin asf-site 38 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | hugo.exe 2 | .idea 3 | *.iml 4 | .DS_Store 5 | npm-debug.log 6 | resources 7 | content/* 8 | !content/docs/ 9 | .hugo_build.lock 10 | -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- 1 | 14 | {{ partial "header.html" . }} 15 |
16 | {{ $paginator := .Paginate .Data.Pages}} 17 |
18 |
19 |

{{ .Title }} Archive

20 |
    21 | {{ range $paginator.Pages }} 22 |

    {{.Title}}

    23 |

    {{dateFormat "2006 Jan 2 " .Date}}

    24 | 25 | {{.Content}} 26 | 27 | {{ end }} 28 |
29 |
30 | {{ template "_internal/pagination.html" . }} 31 |
32 |
33 | {{ partial "footer.html" . }} 34 | -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- 1 | 14 | {{partial "header.html" .}} 15 |
16 |

{{.Title}}

17 | {{.Content}} 18 |
19 | {{partial "footer.html" .}} 20 | -------------------------------------------------------------------------------- /layouts/custompage/news_table.html: -------------------------------------------------------------------------------- 1 | 14 | 15 | {{partial "header.html" .}} 16 |
17 | 18 |

{{ i18n "latest-news" }}

19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | {{ $langVar := "" }} 30 | {{ if ne .Site.Language.Lang "en" }} 31 | {{ $langVar = .Site.Language.Lang }} 32 | {{ end }} 33 | {{range (where (where .Site.Pages "Section" "in" (slice "news")) ".Name" "not in" (slice "News" "Releases")) }} 34 | 35 | {{ if eq $langVar "zh"}} 36 | 37 | {{ else }} 38 | 39 | {{ end }} 40 | 41 | 42 | 43 | 44 | {{end}} 45 |
{{ i18n "date" }}{{ i18n "title" }}{{ i18n "brief" }}{{ i18n "link" }}
{{dateFormat "2006年01月02日" .Date}}{{dateFormat "2006 Jan 2 " .Date}}{{.Title }}{{ if ne .Description "" }}{{ .Description }}{{ else }}{{ .Content }}{{ end }}{{ i18n "see-more" }}
46 | {{.Content}} 47 |
48 | 49 | 50 | {{partial "footer.html" .}} 51 | 52 | -------------------------------------------------------------------------------- /layouts/custompage/powered.html: -------------------------------------------------------------------------------- 1 | 14 | {{partial "header.html" .}} 15 |
16 |
17 |
18 | {{ i18n "powered-by-kyuubi"}} 19 |
20 |
21 | {{i18n "powered-desc"}} 22 | {{i18n "powered-website"}} 23 |
24 |
25 |
26 | {{range .Site.Data.homePage.powered}} 27 | 28 | {{end}} 29 |
30 |
31 |
32 | {{partial "footer.html" .}} 33 | -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- 1 | 14 | 31 | 33 | 34 | 35 | 36 | 37 | 38 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /layouts/partials/navbar.html: -------------------------------------------------------------------------------- 1 | 14 | 56 | -------------------------------------------------------------------------------- /layouts/partials/release_table_head.html: -------------------------------------------------------------------------------- 1 | 14 | 15 | 16 | {{ i18n "version" }} 17 | {{ i18n "date" }} 18 | {{ i18n "source" }} 19 | {{ i18n "binary" }} 20 | {{ i18n "release-notes" }} 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /layouts/partials/shaded_release_table_head.html: -------------------------------------------------------------------------------- 1 | 14 | 15 | 16 | {{ i18n "version" }} 17 | {{ i18n "date" }} 18 | {{ i18n "source" }} 19 | {{ i18n "release-notes" }} 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /layouts/release/single.html: -------------------------------------------------------------------------------- 1 | 14 | 15 | {{partial "header.html" .}} 16 |
17 |
18 |

{{.Title}}

19 | {{.Content}} 20 | {{dateFormat "2006 Jan 2 " .Date}} 21 |
22 |
23 | {{partial "footer.html" .}} 24 | -------------------------------------------------------------------------------- /src/en/news/2021-06-21-accept-incubator.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Accept Kyuubi into Apache Incubator 3 | date: 2021-06-21 4 | linked: true 5 | --- 6 | 19 | 20 | Kyuubi is accepted into Apache Incubator, see details in [incubation status](https://incubator.apache.org/projects/kyuubi). 21 | 22 | -------------------------------------------------------------------------------- /src/en/news/2021-09-14-release-1.3.0-incubating.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi(Incubating) 1.3.0-incubating released 3 | date: 2021-09-14 4 | linked: true 5 | --- 6 | 19 | 20 | We are happy to announce the availability of [Apache Kyuubi(Incubating) 1.3.0-incubating](/release/1.3.0-incubating.html)! Visit the [release notes](/release/1.3.0-incubating.html) to read about the new features, or [download](/releases.html) the released today. 21 | -------------------------------------------------------------------------------- /src/en/news/2021-10-25-release-1.3.1-incubating.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi(Incubating) 1.3.1-incubating released 3 | date: 2021-10-25 4 | linked: true 5 | --- 6 | 19 | 20 | We are happy to announce the availability of [Apache Kyuubi(Incubating) 1.3.1-incubating](/release/1.3.1-incubating.html)! Visit the [release notes](/release/1.3.1-incubating.html) to read about the new features, or [download](/releases.html) the released today. 21 | -------------------------------------------------------------------------------- /src/en/news/2021-12-10-release-1.4.0-incubating.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi(Incubating) 1.4.0-incubating released 3 | date: 2021-12-10 4 | linked: true 5 | --- 6 | 19 | 20 | We are happy to announce the availability of [Apache Kyuubi(Incubating) 1.4.0-incubating](/release/1.4.0-incubating.html)! Visit the [release notes](/release/1.4.0-incubating.html) to read about the new features, or [download](/releases.html) the released today. 21 | -------------------------------------------------------------------------------- /src/en/news/2021-12-25-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'New committers: Dongdong Hong & Vino Yang' 3 | date: 2021-12-25 4 | linked: true 5 | description: We are happy to announce Dongdong Hong & Vino Yang(yanghua) becomes new Kyuubi committers. 6 | --- 7 | 20 | 21 | The Podling Project Management Committee (PMC) for Apache Kyuubi 22 | has invited [Dongdong Hong](https://github.com/hddong) & 23 | [Vino Yang(yanghua)](https://github.com/yanghua) to become our committers and 24 | we are pleased to announce that they both have accepted. 25 | 26 | Dongdong's been active in helping deploy Kyuubi on Kubernetes, 27 | working on the Trino/Presto engine support and writing very small, 28 | surgical patches that are high quality. 29 | 30 | Vino's been active in building REST API for Kyuubi FE, currently focusing 31 | on the Flink SQL engine. He also puts a lot of effort into helping us build the 32 | community. 33 | 34 | Please join me in congratulating Dongdong & Vino! 35 | 36 | Being a committer enables easier contribution to the 37 | project since there is no need to go via the patch 38 | submission process. This should enable better productivity. 39 | A PPMC member helps manage and guide the direction of the project. 40 | -------------------------------------------------------------------------------- /src/en/news/2022-01-31-release-1.4.1-incubating.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi(Incubating) 1.4.1-incubating released 3 | date: 2022-01-30 4 | linked: true 5 | --- 6 | 19 | 20 | We are happy to announce the availability of [Apache Kyuubi(Incubating) 1.4.1-incubating](/release/1.4.1-incubating.html)! Visit the [release notes](/release/1.4.1-incubating.html) to read about the new features, or [download](/releases.html) the released today. 21 | -------------------------------------------------------------------------------- /src/en/news/2022-03-25-release-1.5.0-incubating.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi(Incubating) 1.5.0-incubating released 3 | date: 2022-03-25 4 | linked: true 5 | --- 6 | 19 | 20 | We are happy to announce the availability of [Apache Kyuubi(Incubating) 1.5.0-incubating](/release/1.5.0-incubating.html)! Visit the [release notes](/release/1.5.0-incubating.html) to read about the new features, or [download](/releases.html) the released today. 21 | -------------------------------------------------------------------------------- /src/en/news/2022-03-29-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'New committers: Nicholas Jiang & Fu Chen' 3 | date: 2022-03-29 4 | linked: true 5 | description: We are happy to announce Nicholas Jiang & Fu Chen becomes new Kyuubi committers. 6 | --- 7 | 20 | 21 | The Podling Project Management Committee (PPMC) for Apache Kyuubi 22 | has invited [Nicholas Jiang](https://github.com/SteNicholas) & 23 | [Fu Chen](https://github.com/cfmcgrady) to become our committers and 24 | we are pleased to announce that they both have accepted. 25 | 26 | Nicholas's been working in many areas of the Kyuubi community, especially 27 | in the Flink SQL engine, he plays an important role in implementation, 28 | promotion and Q&A of the Kyuubi Flink SQL engine. 29 | 30 | Fu contributed to several modules in Kyuubi consistently over 6 months, 31 | including Spark engine, Spark engine extension, Kyuubi server restful api and 32 | Kyuubi infrastructure. He also helps review other developers' pull requests 33 | actively in the community. 34 | 35 | Please join me in congratulating Nicholas & Fu! 36 | 37 | Being a committer enables easier contribution to the 38 | project since there is no need to go via the patch 39 | submission process. This should enable better productivity. 40 | A PPMC member helps manage and guide the direction of the project. 41 | -------------------------------------------------------------------------------- /src/en/news/2022-04-21-release-1.5.1-incubating.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi(Incubating) 1.5.1-incubating released 3 | date: 2022-04-21 4 | linked: true 5 | --- 6 | 19 | 20 | We are happy to announce the availability of [Apache Kyuubi(Incubating) 1.5.1-incubating](/release/1.5.1-incubating.html)! Visit the [release notes](/release/1.5.1-incubating.html) to read about the new features, or [download](/releases.html) the released today. 21 | -------------------------------------------------------------------------------- /src/en/news/2022-05-24-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'New committer: Zhen Wang' 3 | date: 2022-05-24 4 | linked: true 5 | description: We are happy to announce Zhen Wang becomes a new Kyuubi committer. 6 | --- 7 | 20 | 21 | The Podling Project Management Committee (PPMC) for Apache Kyuubi 22 | has invited [Zhen Wang](https://github.com/wForget) to become our committer 23 | and we are pleased to announce that he has accepted. 24 | 25 | Zhen contributed to several modules in Kyuubi consistently over 6 months, 26 | including both the Kyuubi server and Spark SQL engine. 27 | 28 | The enhancements he made to Kyuubi server: 29 | - Added connection concurrency limit to kyuubi server 30 | - Added the digest Zookeeper authentication mode to the service discovery 31 | module 32 | - Optimized orphan engine related issues 33 | 34 | The features and enhancements he made to Spark SQL engine: 35 | - Implemented a history server plugin of Kyuubi to Spark 36 | - Implemented the execution progress of Spark SQL statements 37 | - Supported single session mode of the Spark SQL engine 38 | - Participated in the discussion and optimization of the engine pool. 39 | 40 | He also helps review other developers' pull requests actively in the community. 41 | 42 | Please join me in congratulating Zhen! 43 | 44 | Being a committer enables easier contribution to the 45 | project since there is no need to go via the patch 46 | submission process. This should enable better productivity. 47 | A PPMC member helps manage and guide the direction of the project. 48 | -------------------------------------------------------------------------------- /src/en/news/2022-06-18-release-1.5.2-incubating.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi(Incubating) 1.5.2-incubating released 3 | date: 2022-06-18 4 | linked: true 5 | --- 6 | 19 | 20 | We are happy to announce the availability of [Apache Kyuubi(Incubating) 1.5.2-incubating](/release/1.5.2-incubating.html)! Visit the [release notes](/release/1.5.2-incubating.html) to read about the new features, or [download](/releases.html) the released today. 21 | -------------------------------------------------------------------------------- /src/en/news/2022-06-21-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'New committer: Shaoyun Chen' 3 | date: 2022-06-21 4 | linked: true 5 | description: We are happy to announce Shaoyun Chen becomes a new Kyuubi committer. 6 | --- 7 | 20 | 21 | The Podling Project Management Committee (PPMC) for Apache Kyuubi 22 | has invited [Shaoyun Chen](https://github.com/cxzl25) to become our committer 23 | and we are pleased to announce that he has accepted. 24 | 25 | Shaoyun is currently working for Trip.com. 26 | 27 | He has contributed to multiple modules of the Apache Kyuubi since last 28 | year including: 29 | 30 | - Implement dedicated set/get catalog/database operators 31 | - Add adapter layer in Kyuubi Hive JDBC module 32 | - Make ProcessBuilder.commands immutable 33 | - Redact secret information from ProcBuilder log 34 | - kyuubi-ctl some optimizations and added documentation 35 | - Participate in discussions and development Spark TPC-DS Connector 36 | - Investigate and fix multiple flaky tests 37 | 38 | He has introduced Apache Kyuubi V1.4.0 to Trip.com as a multi-tenant 39 | SQL engine for Spark3, running a large number of Ad-Hoc queries every 40 | day. 41 | He found and fixed some bugs encountered in the production 42 | environment, and also implemented some optimizations. 43 | 44 | Please join me in congratulating Shaoyun! 45 | 46 | Being a committer enables easier contribution to the 47 | project since there is no need to go via the patch 48 | submission process. This should enable better productivity. 49 | A PPMC member helps manage and guide the direction of the project. 50 | -------------------------------------------------------------------------------- /src/en/news/2022-07-20-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'New committer: Min Zhao' 3 | date: 2022-07-20 4 | linked: true 5 | description: We are happy to announce Min Zhao becomes a new Kyuubi committer. 6 | --- 7 | 20 | 21 | The Podling Project Management Committee (PPMC) for Apache Kyuubi 22 | has invited [Min Zhao](https://github.com/zhaomin1423) to become our committers and 23 | we are pleased to announce that he has accepted. 24 | 25 | Min Zhao contributed to several modules in Kyuubi consistently over 9 months, 26 | including both the Kyuubi server and engines. 27 | 28 | In detail, his contributions are as follows: 29 | 30 | - Separate events to a submodule, and support events for Hive engine 31 | and Trino engine 32 | - Participate in support Hive engine. add process builder, option 33 | parser, provide a few configurations, etc 34 | - Supporting jdbc engine 35 | - Add a few UDF for Spark engine 36 | - Implement BatchesResource GET /batches 37 | - Participate in authz module, add FilteredShowFunctionsCommand and 38 | FilteredShowDatabasesCommand 39 | - A few bug fix and docs improvement 40 | 41 | He also helps review other developers' pull requests actively in the 42 | community. 43 | 44 | Please join me in congratulating Min Zhao! 45 | 46 | Being a committer enables easier contribution to the 47 | project since there is no need to go via the patch 48 | submission process. This should enable better productivity. 49 | A PPMC member helps manage and guide the direction of the project. 50 | -------------------------------------------------------------------------------- /src/en/news/2022-07-26-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'New committer: Qingbo Jiao' 3 | date: 2022-07-26 4 | linked: true 5 | description: We are happy to announce Qingbo Jiao becomes a new Kyuubi committer. 6 | --- 7 | 20 | 21 | The Podling Project Management Committee (PPMC) for Apache Kyuubi 22 | has invited [Qingbo Jiao](https://github.com/jiaoqingbo) to become our committer and 23 | we are pleased to announce that he has accepted. 24 | 25 | He is currently working for AsiaInfo. 26 | 27 | Qingbo contributed to several modules in Kyuubi consistently over 9 months. 28 | 29 | In detail, his contributions are as follows 30 | 31 | - Kyuubi Spark TPC-H Connector design and implementation 32 | - Rework Kyuubi Hive JDBC driver to get rid of Hive dependencies 33 | - Flink engine improvement 34 | - Publish an article to show how to integrate Kyuubi w/ Apache Ambari[2] 35 | - Bug fix and docs improvement. 36 | 37 | Please join me in congratulating Qingbo Jiao! 38 | 39 | Being a committer enables easier contribution to the 40 | project since there is no need to go via the patch 41 | submission process. This should enable better productivity. 42 | A PPMC member helps manage and guide the direction of the project. 43 | -------------------------------------------------------------------------------- /src/en/news/2022-09-06-release-1.6.0-incubating.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi(Incubating) 1.6.0-incubating released 3 | date: 2022-09-06 4 | linked: true 5 | --- 6 | 19 | 20 | We are happy to announce the availability of [Apache Kyuubi(Incubating) 1.6.0-incubating](/release/1.6.0-incubating.html)! Visit the [release notes](/release/1.6.0-incubating.html) to read about the new features, or [download](/releases.html) the released today. 21 | -------------------------------------------------------------------------------- /src/en/news/2022-09-13-new-ppmc-members.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'New PPMC members: Vino Yang, Dongdong Hong and Shaoyun Chen' 3 | date: 2022-09-13 4 | linked: true 5 | description: We are happy to announce Vino Yang, Dongdong Hong and Shaoyun Chen become new Kyuubi PPMC members. 6 | --- 7 | 20 | 21 | The Podling Project Management Committee (PPMC) for Apache Kyuubi 22 | has invited new PPMC members and we are pleased to announce that 23 | they has accepted. 24 | 25 | Please join me in congratulating new PPMC members: 26 | Vino Yang, Dongdong Hong and Shaoyun Chen 27 | -------------------------------------------------------------------------------- /src/en/news/2022-11-16-release-1.6.1-incubating.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi(Incubating) 1.6.1-incubating released 3 | date: 2022-11-16 4 | linked: true 5 | --- 6 | 19 | 20 | We are happy to announce the availability of [Apache Kyuubi(Incubating) 1.6.1-incubating](/release/1.6.1-incubating.html)! Visit the [release notes](/release/1.6.1-incubating.html) to read about the new features, or [download](/releases.html) the released today. 21 | -------------------------------------------------------------------------------- /src/en/news/2022-11-21-top-level-vote-pass.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Top-Level Project Vote Pass! 3 | date: 2022-11-21 4 | linked: true 5 | description: The Vote for graduating Kyuubi from Apache Incubator as a Top-Level Project has passed 6 | --- 7 | 20 | 21 | The VOTE[1] for graduating Kyuubi from Apache Incubator as a Top-Level Project 22 | has passed with 13 binding +1 votes, 28 non-binding +1 votes, and no +0 or -1 23 | votes. 24 | 25 | [1] https://lists.apache.org/thread/woo9lvw406q70pn1hf6l6lg9j42s9odh 26 | -------------------------------------------------------------------------------- /src/en/news/2023-01-19-new-committers-1.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'New committer: Bowen Liang' 3 | date: 2023-01-19 4 | linked: true 5 | description: We are happy to announce Bowen Liang becomes a new Kyuubi committer. 6 | --- 7 | 20 | 21 | The Project Management Committee (PMC) for Apache Kyuubi 22 | has invited [Bowen Liang](https://github.com/bowenliang123) to become our committer and 23 | we are pleased to announce that he has accepted. 24 | 25 | Bowen Liang is currently working on GF Securities, he focuses on security areas, including 26 | 27 | - Authz module, he is the most active contributor to this module 28 | - JDBC-based authentication mechanism 29 | - Asymmetric encryption signature mechanism 30 | - Support Kyuubi as a Spark JDBC datasource 31 | - Promoting Kyuubi by sharing a talk on Datafun 32 | - Continuously infrastructure improvements 33 | 34 | Please join me in congratulating Bowen! 35 | 36 | Being a committer enables easier contribution to the 37 | project since there is no need to go via the patch 38 | submission process. This should enable better productivity. 39 | A PMC member helps manage and guide the direction of the project. 40 | -------------------------------------------------------------------------------- /src/en/news/2023-01-19-new-committers-2.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'New committer: Kaifei Yi' 3 | date: 2023-01-19 4 | linked: true 5 | description: We are happy to announce Kaifei Yi becomes a new Kyuubi committer. 6 | --- 7 | 20 | 21 | The Project Management Committee (PMC) for Apache Kyuubi 22 | has invited [Kaifei Yi](https://github.com/Yikf) to become our committer and 23 | we are pleased to announce that he has accepted. 24 | 25 | Kaifei Yi is currently working on Baidu, he has been working for 26 | 27 | - Major contributor of Kyuubi Spark Hive connector 28 | - Major contributor of Trino Frontend protocol 29 | - Project infrastructure, including test improvements and keeping dependencies up-to-date 30 | - Code review 31 | 32 | Please join me in congratulating Kaifei! 33 | 34 | Being a committer enables easier contribution to the 35 | project since there is no need to go via the patch 36 | submission process. This should enable better productivity. 37 | A PMC member helps manage and guide the direction of the project. 38 | -------------------------------------------------------------------------------- /src/en/news/2023-01-19-top-level-announce.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: APACHE® KYUUBI BECOMES TOP-LEVEL PROJECT 3 | date: 2023-01-19 4 | linked: true 5 | description: The Apache Software Foundation (ASF), the all-volunteer developers, stewards, and incubators of more than 350 open source projects and initiatives, announced today Apache® Kyuubi has graduated and is now a Top-Level Project (TLP). 6 | --- 7 | 20 | 21 | 22 | ASF Blog - https://news.apache.org/foundation/entry/apache-kyuubi-becomes-top-level-project 23 | 24 | GlobeNewswire - https://www.globenewswire.com/en/news-release/2023/01/19/2592039/17401/en/Apache-Kyuubi-Becomes-Top-Level-Project.html 25 | -------------------------------------------------------------------------------- /src/en/news/2023-01-31-new-pmc-members.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'New PMC Member: Fu Chen' 3 | date: 2023-01-31 4 | linked: true 5 | description: We are happy to announce Fu Chen becomes a new Kyuubi PMC Member. 6 | --- 7 | 20 | 21 | The Project Management Committee (PMC) for Apache Kyuubi 22 | has invited [Fu Chen](https://github.com/cfmcgrady) to become our PMC Member and 23 | we are pleased to announce that he has accepted. 24 | 25 | Fu Chen is currently working on DXY, he has been doing significant work 26 | on Kyuubi community, such as PySpark and Arrow based results serialization, 27 | which are key features for the community and enterprise users. 28 | He is also dedicated for the Kyuubi Spark engine enhancements. 29 | 30 | Please join me in congratulating Fu! 31 | -------------------------------------------------------------------------------- /src/en/news/2023-03-08-release-1.7.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.7.0 released 3 | date: 2023-03-08 4 | linked: true 5 | --- 6 | 19 | 20 | We are happy to announce the availability of [Apache Kyuubi 1.7.0](/release/1.7.0.html)! Visit the [release notes](/release/1.7.0.html) to read about the new features, or [download](/releases.html) the released today. 21 | -------------------------------------------------------------------------------- /src/en/news/2023-04-07-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'New committer: Yaodong Zhang' 3 | date: 2023-04-07 4 | linked: true 5 | description: We are happy to announce Yaodong Zhang becomes a new Kyuubi committer. 6 | --- 7 | 20 | 21 | The Project Management Committee (PMC) for Apache Kyuubi 22 | has invited [Yaodong Zhang](https://github.com/iodone) to become our committer and 23 | we are pleased to announce that he has accepted. 24 | 25 | Yaodong Zhang is currently working on Xiaomi, he has been working for 26 | 27 | - Kyuubi Spark Lineage field-level lineage analysis 28 | - Support for Trino-JDBC connection to Kyuubi 29 | - Introduce the EventBus module to unify the distribution and subscription of Kyuubi events 30 | - Bug fixes and optimization work related to Kyuubi Server and engine 31 | 32 | Please join me in congratulating Yaodong! 33 | 34 | Being a committer enables easier contribution to the 35 | project since there is no need to go via the patch 36 | submission process. This should enable better productivity. 37 | A PMC member helps manage and guide the direction of the project. 38 | -------------------------------------------------------------------------------- /src/en/news/2023-04-08-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'New committer: Denis Krivenko' 3 | date: 2023-04-08 4 | linked: true 5 | description: We are happy to announce Denis Krivenko becomes a new Kyuubi committer. 6 | --- 7 | 20 | 21 | The Project Management Committee (PMC) for Apache Kyuubi 22 | has invited [Denis Krivenko](https://github.com/dnskr) to become our committer and 23 | we are pleased to announce that he has accepted. 24 | 25 | DDenis Krivenko has been contributing to Kyuubi since Dec. 2022, he made major 26 | improvements to the Kyuubi Helm chart. 27 | 28 | Please join me in congratulating Denis! 29 | 30 | Being a committer enables easier contribution to the 31 | project since there is no need to go via the patch 32 | submission process. This should enable better productivity. 33 | A PMC member helps manage and guide the direction of the project. 34 | -------------------------------------------------------------------------------- /src/en/news/2023-04-10-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'New committer: Tianlin Liao' 3 | date: 2023-04-10 4 | linked: true 5 | description: We are happy to announce Tianlin Liao becomes a new Kyuubi committer. 6 | --- 7 | 20 | 21 | The Project Management Committee (PMC) for Apache Kyuubi 22 | has invited [Tianlin Liao](https://github.com/lightning-L) to become our committer and 23 | we are pleased to announce that she has accepted. 24 | 25 | Tianlin Liao is currently working in eBay Shanghai. She joined Kyuubi community 1 year ago. 26 | 27 | Her contributions are as follows 28 | 29 | - Major contributor of Kyuubi Rest Client module 30 | - Refactor of Kyuubi Ctl module and add support for batch job 31 | - Kyuubi client new features and enhancements 32 | - Kyuubi metrics enhancements 33 | - Kyuubi Spark engine enhancements 34 | 35 | Please join me in congratulating Tianlin! 36 | 37 | Being a committer enables easier contribution to the 38 | project since there is no need to go via the patch 39 | submission process. This should enable better productivity. 40 | A PMC member helps manage and guide the direction of the project. 41 | -------------------------------------------------------------------------------- /src/en/news/2023-05-05-release-1.7.1.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.7.1 released 3 | date: 2023-05-05 4 | linked: true 5 | --- 6 | 19 | 20 | We are happy to announce the availability of [Apache Kyuubi 1.7.1](/release/1.7.1.html) ! Visit the [release notes](/release/1.7.1.html) to read about the new features, or [download](/releases.html) the released today. 21 | -------------------------------------------------------------------------------- /src/en/news/2023-05-21-shaded-release-0.1.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi Shaded 0.1.0 released 3 | date: 2023-05-21 4 | linked: true 5 | --- 6 | 19 | We are happy to announce the availability of [Apache Kyuubi Shaded 0.1.0](/shaded-release/0.1.0.html) ! Visit the [release notes](/shaded-release/0.1.0.html) to read about the changes. 20 | -------------------------------------------------------------------------------- /src/en/news/2023-06-02-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'New committer: Paul Lin' 3 | date: 2023-06-02 4 | linked: true 5 | description: We are happy to announce Paul Lin becomes a new Kyuubi committer. 6 | --- 7 | 20 | 21 | The Project Management Committee (PMC) for Apache Kyuubi 22 | has invited Paul Lin to become a committer and we are pleased 23 | to announce that he has accepted. 24 | 25 | Paul works at NetEase Games, he 26 | 27 | - has been contributing to Kyuubi Flink engine since Jan. 2022 28 | - refactored Flink engine by migrating to Flink SQL gateway 29 | - implemented Flink engine YARN application mode 30 | - supported Flink job control statements by driving joint efforts on Kyuubi community and Flink community 31 | - made a major contribution to Flink engine type system 32 | - participated in various discussions on the mail list and GitHub issues 33 | - helped users resolve problems on GitHub and WeChat 34 | - reviewed and make suggestions on designs and PRs related to the Flink engine 35 | - improved contributor experience by adding issue templates and fixing CI issues 36 | 37 | Being a committer enables easier contribution to the 38 | project since there is no need to go via the patch 39 | submission process. This should enable better productivity. 40 | A PMC member helps manage and guide the direction of the project. 41 | 42 | Please join me in congratulating Paul! 43 | -------------------------------------------------------------------------------- /src/en/news/2023-09-18-release-1.7.2.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.7.2 released 3 | date: 2023-09-18 4 | linked: true 5 | --- 6 | 19 | 20 | We are happy to announce the availability of [Apache Kyuubi 1.7.2](/release/1.7.2.html) ! Visit the [release notes](/release/1.7.2.html) to read about the new features, or [download](/releases.html) the released today. 21 | -------------------------------------------------------------------------------- /src/en/news/2023-09-25-release-1.7.3.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.7.3 released 3 | date: 2023-09-25 4 | linked: true 5 | --- 6 | 19 | 20 | We are happy to announce the availability of [Apache Kyuubi 1.7.3](/release/1.7.3.html) ! Visit the [release notes](/release/1.7.3.html) to read about the new features, or [download](/releases.html) the released today. 21 | -------------------------------------------------------------------------------- /src/en/news/2023-10-11-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'New committer: Binjie Yang' 3 | date: 2023-10-11 4 | linked: true 5 | description: We are happy to announce Binjie Yang becomes a new Kyuubi committer. 6 | --- 7 | 20 | 21 | The Project Management Committee (PMC) for Apache Kyuubi 22 | has invited [Binjie Yang](https://github.com/zwangsheng) to become a committer and we are pleased 23 | to announce that he has accepted. 24 | 25 | Binjie Yang works at NetEase, he 26 | 27 | - started contribution to Kyuubi community since Mar. 2021 28 | - made a major contribution to fit Kyuubi with Spark Engine On Kubernetes 29 | - participate in Kyuubi On Kubernetes adaptation and integration test construction 30 | - join the construction of Kyuubi Web UI & Batch V2 31 | - participated in various discussions on the mail list and GitHub issues 32 | - helped users resolve problems on GitHub and WeChat 33 | 34 | Being a committer enables easier contribution to the 35 | project since there is no need to go via the patch 36 | submission process. This should enable better productivity. 37 | A PMC member helps manage and guide the direction of the project. 38 | 39 | Please join me in congratulating Binjie Yang! 40 | -------------------------------------------------------------------------------- /src/en/news/2023-10-30-new-pmc-members.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'New PMC Member: Bowen Liang' 3 | date: 2023-10-30 4 | linked: true 5 | description: We are happy to announce Bowen Liang becomes a new Kyuubi PMC Member. 6 | --- 7 | 20 | 21 | The Project Management Committee (PMC) for Apache Kyuubi 22 | has invited [Bowen Liang](https://github.com/bowenliang123) to become our PMC Member and 23 | we are pleased to announce that he has accepted. 24 | 25 | Bowen Liang is currently working at GF Securities, he has continuously contributed to Apache Kyuubi project. 26 | He is also the core maintainer for Kyuubi Spark AuthZ Plugin. 27 | 28 | Please join me in congratulating Bowen! 29 | -------------------------------------------------------------------------------- /src/en/news/2023-11-07-new-pmc-members.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'New PMC Member: Zhen Wang' 3 | date: 2023-11-07 4 | linked: true 5 | description: We are happy to announce Zhen Wang becomes a new Kyuubi PMC Member. 6 | --- 7 | 20 | 21 | The Project Management Committee (PMC) for Apache Kyuubi has invited [Zhen Wang](https://github.com/wForget) to become our PMC member and we are pleased to announce that he has accepted. 22 | 23 | Zhen Wang is currently working at iQIYI. The PMC observed his passion for the Kyuubi project and the community over the past two years or so. Not only for his significant code contributions admittedly making him one of our most active contributors and demonstrating his expertise and commitment to the project, but also for his efforts in pitching the project and answering questions from users, being a release manager for several releases. 24 | 25 | Please join me in congratulating Zhen Wang! 26 | 27 | -------------------------------------------------------------------------------- /src/en/news/2023-11-07-release-1.8.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.8.0 released 3 | date: 2023-11-07 4 | linked: true 5 | --- 6 | 19 | 20 | We are happy to announce the availability of [Apache Kyuubi 1.8.0](/release/1.8.0.html) ! Visit the [release notes](/release/1.8.0.html) to read about the new features, or [download](/releases.html) the released today. 21 | -------------------------------------------------------------------------------- /src/en/news/2023-11-14-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'New committer: Bogdan Kyryliuk' 3 | date: 2023-11-14 4 | linked: true 5 | description: We are happy to announce Bogdan Kyryliuk becomes a new Kyuubi committer. 6 | --- 7 | 20 | 21 | The Project Management Committee (PMC) for Apache Kyuubi 22 | has invited [Bogdan Kyryliuk](https://github.com/bkyryliuk) to become a committer and we are pleased 23 | to announce that he has accepted. 24 | 25 | Bogdan Kyryliuk works at Dropbox, he played an important role in donating the PyHive project. 26 | 27 | Being a committer enables easier contribution to the 28 | project since there is no need to go via the patch 29 | submission process. This should enable better productivity. 30 | A PMC member helps manage and guide the direction of the project. 31 | 32 | Please join me in congratulating Bogdan Kyryliuk! 33 | -------------------------------------------------------------------------------- /src/en/news/2023-12-07-shaded-release-0.2.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi Shaded 0.2.0 released 3 | date: 2023-12-07 4 | linked: true 5 | --- 6 | 19 | We are happy to announce the availability of [Apache Kyuubi Shaded 0.2.0](/shaded-release/0.2.0.html) ! Visit the [release notes](/shaded-release/0.2.0.html) to read about the changes. 20 | -------------------------------------------------------------------------------- /src/en/news/2024-01-29-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'New committer: Yi Zhu' 3 | date: 2024-01-29 4 | linked: true 5 | description: We are happy to announce Yi Zhu becomes a new Kyuubi committer. 6 | --- 7 | 18 | 19 | The Project Management Committee (PMC) for Apache Kyuubi 20 | has invited [Yi Zhu](https://github.com/AngersZhuuuu) to become a committer and we are pleased 21 | to announce that he has accepted. 22 | 23 | Yi Zhu works at Shopee, he played an important role in the Kyuubi Authz project. 24 | 25 | Being a committer enables easier contribution to the 26 | project since there is no need to go via the patch 27 | submission process. This should enable better productivity. 28 | A PMC member helps manage and guide the direction of the project. 29 | 30 | Please join me in congratulating Yi Zhu! -------------------------------------------------------------------------------- /src/en/news/2024-02-21-release-1.8.1.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.8.1 released 3 | date: 2024-02-21 4 | linked: true 5 | --- 6 | 19 | 20 | We are happy to announce the availability of [Apache Kyuubi 1.8.1](/release/1.8.1.html) ! Visit the [release notes](/release/1.8.1.html) to read about the new features, or [download](/releases.html) the released today. 21 | -------------------------------------------------------------------------------- /src/en/news/2024-03-07-shaded-release-0.3.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi Shaded 0.3.0 released 3 | date: 2024-03-07 4 | linked: true 5 | --- 6 | 19 | We are happy to announce the availability of [Apache Kyuubi Shaded 0.3.0](/shaded-release/0.3.0.html) ! Visit the [release notes](/shaded-release/0.3.0.html) to read about the changes. 20 | -------------------------------------------------------------------------------- /src/en/news/2024-03-19-release-1.9.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.9.0 released 3 | date: 2024-03-19 4 | linked: true 5 | --- 6 | 19 | 20 | We are happy to announce the availability of [Apache Kyuubi 1.9.0](/release/1.9.0.html) ! Visit the [release notes](/release/1.9.0.html) to read about the new features, or [download](/releases.html) the released today. 21 | -------------------------------------------------------------------------------- /src/en/news/2024-03-24-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'New committer: Zhou Yifan' 3 | date: 2024-03-24 4 | linked: true 5 | description: We are happy to announce Zhou Yifan becomes a new Kyuubi committer. 6 | --- 7 | 18 | 19 | The Project Management Committee (PMC) for Apache Kyuubi 20 | has invited [Zhou Yifan](https://github.com/zhouyifan279) to become a committer and we are pleased 21 | to announce that he has accepted. 22 | 23 | Zhou Yifan made important contributions to Kyuubi's Kerberos support. 24 | 25 | Being a committer enables easier contribution to the 26 | project since there is no need to go via the patch 27 | submission process. This should enable better productivity. 28 | A PMC member helps manage and guide the direction of the project. 29 | 30 | Please join me in congratulating Zhou Yifan! -------------------------------------------------------------------------------- /src/en/news/2024-04-09-shaded-release-0.4.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi Shaded 0.4.0 released 3 | date: 2024-04-09 4 | linked: true 5 | --- 6 | 19 | We are happy to announce the availability of [Apache Kyuubi Shaded 0.4.0](/shaded-release/0.4.0.html) ! Visit the [release notes](/shaded-release/0.4.0.html) to read about the changes. 20 | -------------------------------------------------------------------------------- /src/en/news/2024-04-26-release-1.7.4.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.7.4 released 3 | date: 2024-04-26 4 | linked: true 5 | --- 6 | 19 | 20 | We are happy to announce the availability of [Apache Kyuubi 1.7.4](/release/1.7.4.html) ! Visit the [release notes](/release/1.7.4.html) to read about the new features, or [download](/releases.html) the released today. 21 | -------------------------------------------------------------------------------- /src/en/news/2024-04-26-release-1.8.2.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.8.2 released 3 | date: 2024-04-26 4 | linked: true 5 | --- 6 | 19 | 20 | We are happy to announce the availability of [Apache Kyuubi 1.8.2](/release/1.8.2.html) ! Visit the [release notes](/release/1.8.2.html) to read about the new features, or [download](/releases.html) the released today. 21 | -------------------------------------------------------------------------------- /src/en/news/2024-06-03-release-1.9.1.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.9.1 released 3 | date: 2024-06-03 4 | linked: true 5 | --- 6 | 19 | 20 | We are happy to announce the availability of [Apache Kyuubi 1.9.1](/release/1.9.1.html) ! Visit the [release notes](/release/1.9.1.html) to read about the new features, or [download](/releases.html) the released today. 21 | -------------------------------------------------------------------------------- /src/en/news/2024-06-25-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'New committer: Senmiao Liu' 3 | date: 2024-06-25 4 | linked: true 5 | description: We are happy to announce Senmiao Liu becomes a new Kyuubi committer. 6 | --- 7 | 18 | 19 | The Project Management Committee (PMC) for Apache Kyuubi 20 | has invited [Senmiao Liu](https://github.com/lsm1) to become a committer and we are pleased 21 | to announce that he has accepted. 22 | 23 | Senmiao Liu has been contributing to Apache Kyuubi for 3 years, including 24 | feature implementation, docs/testing improvement, bug fixing, etc. In 25 | particular, he has contributed to multiple engines such as Spark, 26 | Trino,and JDBC. 27 | 28 | Being a committer enables easier contribution to the 29 | project since there is no need to go via the patch 30 | submission process. This should enable better productivity. 31 | A PMC member helps manage and guide the direction of the project. 32 | 33 | Please join me in congratulating Senmiao Liu! -------------------------------------------------------------------------------- /src/en/news/2024-07-22-shaded-release-0.4.1.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi Shaded 0.4.1 released 3 | date: 2024-07-22 4 | linked: true 5 | --- 6 | 19 | We are happy to announce the availability of [Apache Kyuubi Shaded 0.4.1](/shaded-release/0.4.1.html) ! Visit the [release notes](/shaded-release/0.4.1.html) to read about the changes. 20 | -------------------------------------------------------------------------------- /src/en/news/2024-07-23-release-1.9.2.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.9.2 released 3 | date: 2024-07-23 4 | linked: true 5 | --- 6 | 19 | 20 | We are happy to announce the availability of [Apache Kyuubi 1.9.2](/release/1.9.2.html) ! Visit the [release notes](/release/1.9.2.html) to read about the new features, or [download](/releases.html) the released today. 21 | -------------------------------------------------------------------------------- /src/en/news/2024-10-27-release-1.10.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.10.0 released 3 | date: 2024-10-27 4 | linked: true 5 | --- 6 | 19 | 20 | We are happy to announce the availability of [Apache Kyuubi 1.10.0](/release/1.10.0.html) ! Visit the [release notes](/release/1.10.0.html) to read about the new features, or [download](/releases.html) the released today. 21 | -------------------------------------------------------------------------------- /src/en/news/2024-11-27-release-1.8.3.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.8.3 released 3 | date: 2024-11-27 4 | linked: true 5 | --- 6 | 19 | 20 | We are happy to announce the availability of [Apache Kyuubi 1.8.3](/release/1.8.3.html) ! Visit the [release notes](/release/1.8.3.html) to read about the new features, or [download](/releases.html) the released today. 21 | -------------------------------------------------------------------------------- /src/en/news/2024-12-02-release-1.9.3.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.9.3 released 3 | date: 2024-12-02 4 | linked: true 5 | --- 6 | 19 | 20 | We are happy to announce the availability of [Apache Kyuubi 1.9.3](/release/1.9.3.html) ! Visit the [release notes](/release/1.9.3.html) to read about the new features, or [download](/releases.html) the released today. 21 | -------------------------------------------------------------------------------- /src/en/news/2024-12-26-release-1.10.1.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.10.1 released 3 | date: 2024-12-26 4 | linked: true 5 | --- 6 | 19 | 20 | We are happy to announce the availability of [Apache Kyuubi 1.10.1](/release/1.10.1.html) ! Visit the [release notes](/release/1.10.1.html) to read about the new features, or [download](/releases.html) the released today. 21 | -------------------------------------------------------------------------------- /src/en/news/2025-01-02-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'New committer: He Zhao' 3 | date: 2025-01-02 4 | linked: true 5 | description: We are happy to announce He Zhao becomes a new Kyuubi committer. 6 | --- 7 | 18 | 19 | The Project Management Committee (PMC) for Apache Kyuubi 20 | has invited [He Zhao](https://github.com/zhaohehuhu) to become a committer and we are pleased 21 | to announce that he has accepted. 22 | 23 | He Zhao works at Cisco, and he has been contributing to Kyuubi 24 | for one and half years, he made major contributions in the 25 | Kyuubi Web UI and Kyuubi Grafana dashboard. 26 | 27 | Being a committer enables easier contribution to the 28 | project since there is no need to go via the patch 29 | submission process. This should enable better productivity. 30 | A PMC member helps manage and guide the direction of the project. 31 | 32 | Please join me in congratulating He Zhao! -------------------------------------------------------------------------------- /src/en/news/2025-05-22-shaded-release-0.5.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi Shaded 0.5.0 released 3 | date: 2025-05-22 4 | linked: true 5 | --- 6 | 19 | We are happy to announce the availability of [Apache Kyuubi Shaded 0.5.0](/shaded-release/0.5.0.html) ! Visit the [release notes](/shaded-release/0.5.0.html) to read about the changes. 20 | -------------------------------------------------------------------------------- /src/en/news/2025-05-27-release-1.10.2.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.10.2 released 3 | date: 2025-05-27 4 | linked: true 5 | --- 6 | 19 | 20 | We are happy to announce the availability of [Apache Kyuubi 1.10.2](/release/1.10.2.html) ! Visit the [release notes](/release/1.10.2.html) to read about the new features, or [download](/releases.html) the released today. 21 | -------------------------------------------------------------------------------- /src/en/news/2025-05-27-release-1.9.4.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.9.4 released 3 | date: 2025-05-27 4 | linked: true 5 | --- 6 | 19 | 20 | We are happy to announce the availability of [Apache Kyuubi 1.9.4](/release/1.9.4.html) ! Visit the [release notes](/release/1.9.4.html) to read about the new features, or [download](/releases.html) the released today. 21 | -------------------------------------------------------------------------------- /src/en/news/NOTE.txt: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. See accompanying LICENSE file. 13 | # 14 | The day part of the dates were missing at the original Kyuubi site. During the migration we added the latest day of each month. 15 | 16 | If you would like to create new news item, just create new file with the exact date in the file name, don't use the `xx` pattern any more. 17 | -------------------------------------------------------------------------------- /src/en/powered_by.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Powered by Kyuubi" 3 | menu: "po" 4 | layout: powered 5 | type: custompage 6 | --- 7 | 20 | -------------------------------------------------------------------------------- /src/en/project_history.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Latest News" 3 | layout: news_table 4 | type: custompage 5 | menu: 6 | main: 7 | name: "Latest News" 8 | parent: "community" 9 | weight: 4 10 | --- 11 | 24 | 25 | ## License 26 | 27 | _The software licensed under [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0)._ -------------------------------------------------------------------------------- /src/en/public/categories/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Categories on 5 | /categories/ 6 | Recent content in Categories on 7 | Hugo -- gohugo.io 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/en/public/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | / 6 | Recent content on 7 | Hugo -- gohugo.io 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/en/public/sitemap.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | / 7 | 8 | 9 | 10 | /categories/ 11 | 12 | 13 | 14 | /tags/ 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/en/public/tags/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Tags on 5 | /tags/ 6 | Recent content in Tags on 7 | Hugo -- gohugo.io 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/en/release/1.10.1.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Release Notes - 1.10.1 3 | date: 2024-12-26 4 | linked: true 5 | meta: 6 | _edit_last: '4' 7 | _wpas_done_all: '1' 8 | --- 9 | 22 | 23 | ### Changelogs 24 | 25 | - [KYUUBI #6840] Fix PodMonitor pods selection 26 | - [KYUUBI #6829] Add metrics for batch pending max elapse time 27 | - [KYUUBI #6836] Ship `kafka-clients` in binary distribution tarball without compression libs 28 | - [KYUUBI #6838] [INFRA] Update archive mailing list address 29 | - [KYUUBI #6837] [INFRA] Disable K8s CI image GHA cache 30 | - [KYUUBI #6828] Clean up and improve error message for KyuubiBaseResultSet 31 | - Revert "[KYUUBI #6639] Port HIVE-27815: Support update numModifiedRows" 32 | - [KYUUBI #6722] Fix AppState when Engine connection is terminated 33 | - [KYUUBI #6820] Explicitly disable attach-scaladocs for pure Java modules 34 | - [KYUUBI #6813] [BUILD] Replace `java.version` 1.8 with 8 35 | - [KYUUBI #6773] Bump commons-codec from 1.15 to 1.17.1 36 | - [KYUUBI #6808] [BUILD]Replace systemProperties with systemPropertyVariables in maven-surefire-plugin 37 | - [KYUUBI #6805] [K8S][HELM] Update default Kyuubi version to 1.10.0 38 | - [KYUUBI #6778] [BUILD] allow frontend plugin not to inherits Maven's http proxy config 39 | - [KYUUBI #6786] Skip repeated checks on convert function in TColumnGenerator 40 | - [KYUUBI #6790] Fix engine cannot exit when gracefully stopped 41 | 42 | ### Credits 43 | 44 | Last but not least, this release would not have been possible without the following contributors: 45 | 46 | * Bowen Liang 47 | * pionCham 48 | * Denis Krivenko 49 | * Fei Wang 50 | * Zhen Wang 51 | * Cheng Pan 52 | * Joao Amaral 53 | * zhifanggao 54 | -------------------------------------------------------------------------------- /src/en/release/1.7.3.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Release Notes - 1.7.3 3 | date: 2023-09-25 4 | linked: true 5 | meta: 6 | _edit_last: '4' 7 | _wpas_done_all: '1' 8 | --- 9 | 22 | 23 | ### Highlight 24 | 25 | - Fix file handle leak caused by cancel operation 26 | 27 | ### Server 28 | 29 | - [KYUUBI #5210] Cancel operation will cause the log file node to leak 30 | 31 | ### Spark Authz Plugin 32 | 33 | - [KYUUBI #5269] [Bug] Dupllicated AnalyzesTablesCommand in kyuubi authz 34 | 35 | ### Credits 36 | 37 | Last but not least, this release would not have been possible without the following contributors: 38 | 39 | * AngersZhuuuu 40 | * ASiegeLion 41 | -------------------------------------------------------------------------------- /src/en/release/NOTE.txt: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. See accompanying LICENSE file. 13 | # 14 | 15 | The following regex is used to replace the [KYUUBI #1234] with the HTTP hyperlink. 16 | \[KYUUBI\s#(\d+)\] 17 | - [[KYUUBI #$1](https://github.com/apache/kyuubi/pull/$1)] 18 | 19 | -------------------------------------------------------------------------------- /src/en/releases.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Apache Kyuubi Releases" 3 | menu: "releases" 4 | layout: release 5 | type: custompage 6 | --- 7 | 20 | 21 | ## License 22 | 23 | _The software licensed under [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0)._ 24 | -------------------------------------------------------------------------------- /src/en/shaded-release/0.1.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Kyuubi Shaded Release Notes - 0.1.0 3 | date: 2023-05-21 4 | linked: true 5 | --- 6 | 19 | 20 | ### Highlight 21 | 22 | - Provide shaded package of Zookeeper 3.4 and 3.6 23 | - [KYUUBI-SHADED #5] Surgical for ZOOKEEPER-3779 to allow ZK 3.4 client work on JDK 17 24 | 25 | ### Credits 26 | 27 | Last but not least, this release would not have been possible without the following contributors: 28 | 29 | * Cheng Pan 30 | -------------------------------------------------------------------------------- /src/en/shaded-release/0.2.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Kyuubi Shaded Release Notes - 0.2.0 3 | date: 2023-12-07 4 | linked: true 5 | --- 6 | 19 | 20 | ### Highlight 21 | 22 | - [KYUUBI-SHADED #20] Introduce kyuubi-shaded-hive-service-rpc 23 | - [KYUUBI-SHADED #22] Replace the word 'shaded' with 'relocated' 24 | - [KYUUBI-SHADED #27] Add README with DISCLAIMER 25 | - [KYUUBI-SHADED #28] Overwrite SnapStream to remove deps of snappy in ZK client 3.6 26 | 27 | ### Credits 28 | 29 | Last but not least, this release would not have been possible without the following contributors: 30 | 31 | * Cheng Pan 32 | -------------------------------------------------------------------------------- /src/en/shaded-release/0.3.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Kyuubi Shaded Release Notes - 0.3.0 3 | date: 2024-03-07 4 | linked: true 5 | --- 6 | 19 | 20 | ### Highlight 21 | 22 | - [KYUUBI-SHADED #33] Port ZOOKEEPER-1718 to support JLine2 in ZK client 3.4 23 | - [KYUUBI-SHADED #35] Create a light shaded HiveMetaStoreClient for getting DelegationToken 24 | - [KYUUBI-SHADED #36] Remove dependencyManagement in shaded zookeeper pom 25 | - [KYUUBI-SHADED #37] Split Thrift out from relocated hive-service-rpc 26 | - [KYUUBI-SHADED #39] Bump Thrift 0.16.0 27 | - [KYUUBI-SHADED #40] kyuubi-relocated-hive-metastore-client supports ZooKeeper 3.4 28 | - [KYUUBI-SHADED #41] Relocated Hive MetaStore client uses relocated Thrift 29 | 30 | ### Credits 31 | 32 | Last but not least, this release would not have been possible without the following contributors: 33 | 34 | * Cheng Pan 35 | * Yifan Zhou 36 | -------------------------------------------------------------------------------- /src/en/shaded-release/0.4.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Kyuubi Shaded Release Notes - 0.4.0 3 | date: 2024-04-09 4 | linked: true 5 | --- 6 | 19 | 20 | ### Highlight 21 | 22 | - [KYUUBI-SHADED #44] Add Hive DelegationTokenIdentifier ServiceLoader file 23 | - [KYUUBI-SHADED #45] Upgrade hive-service-rpc 4.0.0 24 | 25 | ### Credits 26 | 27 | Last but not least, this release would not have been possible without the following contributors: 28 | 29 | * He Zhao 30 | * Yifan Zhou 31 | -------------------------------------------------------------------------------- /src/en/shaded-release/0.4.1.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Kyuubi Shaded Release Notes - 0.4.1 3 | date: 2024-07-22 4 | linked: true 5 | --- 6 | 19 | 20 | ### Highlight 21 | 22 | - [KYUUBI #6496] Port ZOOKEEPER-4377 to Kyuubi shaded ZooKeeper 3.4 and 3.6 23 | 24 | ### Credits 25 | 26 | Last but not least, this release would not have been possible without the following contributors: 27 | 28 | * madlnu 29 | -------------------------------------------------------------------------------- /src/en/shaded-release/0.5.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Kyuubi Shaded Release Notes - 0.5.0 3 | date: 2025-05-22 4 | linked: true 5 | --- 6 | 19 | 20 | ### Highlight 21 | 22 | - [KYUUBI #6496] Port ZOOKEEPER-4377 to Kyuubi shaded ZooKeeper 3.4 and 3.6 23 | - [KYUUBI-SHADED #48] Remove unused annotations for HMS client generated thrift code 24 | - [KYUUBI-SHADED #49] Create relocated package for spark-connect-rpc 25 | - [KYUUBI-SHADED #57] Bump Maven 3.9.9 and related plugins 26 | 27 | ### Credits 28 | 29 | Last but not least, this release would not have been possible without the following contributors: 30 | 31 | * madlnu 32 | * Cheng Pan 33 | -------------------------------------------------------------------------------- /src/en/version_control.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Kyuubi Version Control System 3 | menu: 4 | main: 5 | name: "Version Control" 6 | parent: "development" 7 | --- 8 | 21 | 22 | ## Overview 23 | 24 | The Kyuubi source code resides in the Apache git repository, and available from here: 25 | https://gitbox.apache.org/repos/asf?p=kyuubi.git 26 | 27 | The changes are also mirrored to the github repository https://github.com/apache/kyuubi 28 | -------------------------------------------------------------------------------- /src/en/vote/templates/committer_announcement.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Template - Announce New Kyuubi Committer 3 | --- 4 | 17 | 18 | ```textmate 19 | To: dev@kyuubi.apache.org 20 | Subject: [ANNOUNCEMENT] New Committer: ${COMMITTER_NAME} 21 | 22 | --- 23 | 24 | Hi Kyuubi Community, 25 | 26 | The Project Management Committee (PMC) for Apache Kyuubi 27 | has invited ${COMMITTER_NAME} to become a committer and we are pleased 28 | to announce that they have accepted. 29 | 30 | ### add specific details here ### 31 | 32 | Being a committer enables easier contribution to the 33 | project since there is no need to go via the patch 34 | submission process. This should enable better productivity. 35 | A PMC member helps manage and guide the direction of the project. 36 | 37 | Please join me in congratulating ${COMMITTER_NAME}! 38 | 39 | Yours, 40 | The Apache Kyuubi PMC 41 | ``` 42 | 43 | -------------------------------------------------------------------------------- /src/en/vote/templates/committer_completion.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Template - Complete Committer Invitation 3 | --- 4 | 17 | 18 | ```textmate 19 | To: private@kyuubi.apache.org, ${NEW_COMMITTER_EMAIL} 20 | Subject: account request: ${NEW_COMMITTER_NAME} 21 | 22 | --- 23 | 24 | ${NEW_COMMITTER_NAME}, as you know, the ASF Infrastructure has set up your 25 | committer account with the username '${NEW_COMMITTER_APACHE_NAME}'. 26 | 27 | Please follow the instructions to set up your SSH, 28 | svn password, svn configuration, email forwarding, etc. 29 | https://www.apache.org/dev/#committers 30 | 31 | You have commit access to specific sections of the 32 | ASF repository, as follows: 33 | 34 | The general "committers" at: 35 | https://svn.apache.org/repos/private/committers 36 | 37 | If you have any questions during this phase, then please 38 | see the following resources: 39 | 40 | Apache developer's pages: https://www.apache.org/dev/ 41 | 42 | Naturally, if you don't understand anything be sure to ask us on the dev@kyuubi.apache.org. 43 | Documentation is maintained by volunteers and hence can be out-of-date and incomplete - of course 44 | you can now help fix that. 45 | 46 | A PMC member will announce your election to the dev list soon. 47 | 48 | Yours, 49 | The Apache Kyuubi PMC 50 | ``` 51 | 52 | -------------------------------------------------------------------------------- /src/en/vote/templates/committer_discussion.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Template - [DISCUSSION] Invite New Committer(s) 3 | --- 4 | 17 | 18 | ```textmate 19 | To: private@kyuubi.apache.org 20 | Subject: [DISCUSSION] Invite New Committer(s): ${NEW_COMMITTER_NAME_1}, ${NEW_COMMITTER_NAME_2}, ... 21 | 22 | --- 23 | 24 | Hi Kyuubi PMC, 25 | 26 | This is a call for discussing about adding ${NEW_COMMITTER_NAME_1}, ${NEW_COMMITTER_NAME_2}, ... 27 | as Kyuubi committer(s). This discussion will stay open for at least 72 hours. 28 | 29 | ${NEW_COMMITTER_NAME_1} is a ${ROLE} of ${ORG} from ${COUNTRY}. 30 | 31 | He/She has been working for 32 | 33 | 34 | 35 | ${NEW_COMMITTER_NAME_2} is a ${ROLE} from ${ORG} from ${COUNTRY}. 36 | 37 | He/She has been focusing on ..., 38 | 39 | 40 | 41 | Are there any thoughts about inviting ${NEW_COMMITTER_NAME_1}, ${NEW_COMMITTER_NAME_2}, ... 42 | to become a committer? 43 | 44 | Best Regards, 45 | 46 | ${YOUR_NAME} 47 | ``` 48 | 49 | It's recommended to discuss committer candidates in different threads one by one. 50 | This makes it much easier to review the email archives. 51 | -------------------------------------------------------------------------------- /src/en/vote/templates/committer_vote.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Template - [VOTE] New Committer 3 | --- 4 | 17 | 18 | ```textmate 19 | To: private@kyuubi.apache.org 20 | Subject: [VOTE] New Committer: ${NEW_COMMITTER_NAME} 21 | 22 | --- 23 | 24 | Hi Kyuubi PMC, 25 | 26 | Following the discussion[1], this is the formal vote about inviting 27 | ${NEW_COMMITTER_NAME} as our new committer. The vote will be open 28 | for at least 72 hours or until the necessary number of votes are 29 | reached. 30 | 31 | Please vote accordingly: 32 | [ ] +1 approve 33 | [ ] +0 no opinion 34 | [ ] -1 disapprove with the reason 35 | 36 | Best Regards, 37 | 38 | ${YOUR_NAME} 39 | 40 | [1] the url to the discussion thread 41 | 42 | ``` 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /src/en/vote/templates/committer_vote_close.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Template - [RESULT][VOTE] New Committer 3 | --- 4 | 17 | 18 | ```textmate 19 | To: private@kyuubi.apache.org 20 | Subject: [RESULT][VOTE] New Committer: ${NEW_COMMITTER_NAME} 21 | 22 | --- 23 | 24 | Hi Kyuubi PMC, 25 | 26 | The vote[1] has now closed. The results are: 27 | 28 | Binding Votes: 29 | 30 | +1 [TOTAL BINDING +1 VOTES]: 31 | 32 | - PMC Member 1 33 | - PMC Member 2 34 | - PMC Member 3 35 | - ... 36 | 37 | 0 [TOTAL BINDING +0/-0 VOTES]: 38 | 39 | -1 [TOTAL BINDING -1 VOTES]: 40 | 41 | 42 | The vote is ***successful/not successful*** 43 | 44 | Best Regards, 45 | 46 | ${YOUR_NAME} 47 | 48 | [1] the url of the vote thread 49 | 50 | ``` 51 | 52 | 53 | 54 | -------------------------------------------------------------------------------- /src/zh/news/2021-06-21-accept-incubator.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Kyuubi 进入 Apache 孵化器 3 | date: 2021-06-21 4 | linked: true 5 | --- 6 | 19 | 20 | Kyuubi 正式进入 Apache 孵化器, 详见 [incubation status](https://incubator.apache.org/projects/kyuubi). 21 | 22 | -------------------------------------------------------------------------------- /src/zh/news/2021-09-14-release-1.3.0-incubating.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi(Incubating) 1.3.0-incubating 发布 3 | date: 2021-09-14 4 | linked: true 5 | --- 6 | 19 | 20 | 我们很高兴地宣布 [Apache Kyuubi(Incubating) 1.3.0-incubating](/zh/release/1.3.0-incubating.html) 发布了! 查看 [发布记录](/zh/release/1.3.0-incubating.html) 阅读有关新功能的信息, 或者马上 [下载](/zh/releases.html) 体验吧。 21 | -------------------------------------------------------------------------------- /src/zh/news/2021-10-25-release-1.3.1-incubating.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi(Incubating) 1.3.1-incubating 发布 3 | date: 2021-10-25 4 | linked: true 5 | --- 6 | 19 | 20 | 我们很高兴地宣布 [Apache Kyuubi(Incubating) 1.3.1-incubating](/zh/release/1.3.1-incubating.html) 发布了! 查看 [发布记录](/zh/release/1.3.1-incubating.html) 阅读有关新功能的信息,或者马上 [下载](/zh/releases.html) 体验吧。 21 | -------------------------------------------------------------------------------- /src/zh/news/2021-12-10-release-1.4.0-incubating.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi(Incubating) 1.4.0-incubating 发布 3 | date: 2021-12-10 4 | linked: true 5 | --- 6 | 19 | 20 | 我们很高兴地宣布 [Apache Kyuubi(Incubating) 1.4.0-incubating](/zh/release/1.4.0-incubating.html) 发布了! 查看 [发布记录](/zh/release/1.4.0-incubating.html) 阅读有关新功能的信息,或者马上 [下载](/zh/releases.html) 体验吧。 21 | -------------------------------------------------------------------------------- /src/zh/news/2021-12-25-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: '新的 Committer: Dongdong Hong 和 Vino Yang' 3 | date: 2021-12-25 4 | linked: true 5 | description: 我们很高兴地宣布 Dongdong Hong 和 Vino Yang(yanghua) 成为新的 Kyuubi Committer。 6 | --- 7 | 20 | 21 | Apache Kyuubi 的 Podling 项目管理委员会 (PMC) 已邀请 [Dongdong Hong](https://github.com/hddong) 和 22 | [Vino Yang(yanghua)](https://github.com/yanghua) 成为我们的Committer,我们很高兴地宣布他们都接受了。 23 | 24 | Dongdong 一直积极帮助在 Kubernetes 上部署 Kyuubi,致力于 Trino/Presto 引擎支持并编写高质量的补丁。 25 | 26 | Vino 一直积极为 Kyuubi FE 构建 REST API,目前专注于 Flink SQL 引擎。他还为帮助我们建立社区付出了很多努力。 27 | 28 | 让我们一起祝贺 Dongdong 和 Vino! 29 | 30 | 31 | 成为 Committer 可以更轻松地为项目做出贡献,因为不需要通过补丁提交过程,这能够提高生产力。 32 | PPMC 成员帮助管理和指导项目的方向。 33 | -------------------------------------------------------------------------------- /src/zh/news/2022-01-31-release-1.4.1-incubating.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi(Incubating) 1.4.1-incubating 发布 3 | date: 2022-01-30 4 | linked: true 5 | --- 6 | 19 | 20 | 我们很高兴地宣布 [Apache Kyuubi(Incubating) 1.4.1-incubating](/zh/release/1.4.1-incubating.html) 发布了! 查看 [发布记录](/zh/release/1.4.1-incubating.html) 阅读有关新功能的信息,或者马上 [下载](/zh/releases.html) 体验吧。 21 | -------------------------------------------------------------------------------- /src/zh/news/2022-03-25-release-1.5.0-incubating.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi(Incubating) 1.5.0-incubating 发布 3 | date: 2022-03-25 4 | linked: true 5 | --- 6 | 19 | 20 | 我们很高兴地宣布 [Apache Kyuubi(Incubating) 1.5.0-incubating](/zh/release/1.5.0-incubating.html) 发布了! 查看 [发布记录](/zh/release/1.5.0-incubating.html) 阅读有关新功能的信息,或者马上 [下载](/zh/releases.html) 体验吧。 21 | -------------------------------------------------------------------------------- /src/zh/news/2022-03-29-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: '新的 Committer: Nicholas Jiang 和 Fu Chen' 3 | date: 2022-03-29 4 | linked: true 5 | description: 我们很高兴地宣布 Nicholas Jiang 和 Fu Chen 成为新的 Kyuubi Committer。 6 | --- 7 | 20 | 21 | Apache Kyuubi 的 Podling 项目管理委员会 (PMC) 已邀请 [Nicholas Jiang](https://github.com/SteNicholas) 和 22 | [Fu Chen](https://github.com/cfmcgrady) 成为我们的Committer,我们很高兴地宣布他们都接受了。 23 | 24 | Nicholas 一直在 Kyuubi 社区的多个领域工作,尤其是在 Flink SQL 引擎方面,他在 Kyuubi Flink SQL 引擎的实施、推广和问答方面发挥着重要作用。 25 | 26 | Fu 在 6 个月内持续为 Kyuubi 的多个模块做出贡献,包括 Spark 引擎、Spark 引擎扩展、Kyuubi server restful api 和 Kyuubi 的基础设施。 27 | 他还帮助在社区中积极审查其他开发人员的PR。 28 | 29 | 让我们一起祝贺 Nicholas 和 Fu! 30 | 31 | 32 | 成为 Committer 可以更轻松地为项目做出贡献,因为不需要通过补丁提交过程,这能够提高生产力。 33 | PPMC 成员帮助管理和指导项目的方向。 34 | -------------------------------------------------------------------------------- /src/zh/news/2022-04-21-release-1.5.1-incubating.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi(Incubating) 1.5.1-incubating 发布 3 | date: 2022-04-21 4 | linked: true 5 | --- 6 | 19 | 20 | 我们很高兴地宣布 [Apache Kyuubi(Incubating) 1.5.1-incubating](/zh/release/1.5.1-incubating.html) 发布了! 查看 [发布记录](/zh/release/1.5.1-incubating.html) 阅读有关新功能的信息,或者马上 [下载](/zh/releases.html) 体验吧。 21 | -------------------------------------------------------------------------------- /src/zh/news/2022-05-24-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: '新的 Committer: Zhen Wang' 3 | date: 2022-05-24 4 | linked: true 5 | description: 我们很高兴地宣布 Zhen Wang 成为新的 Kyuubi Committer。 6 | --- 7 | 20 | 21 | Apache Kyuubi 的 Podling 项目管理委员会 (PMC) 已邀请 [Zhen Wang](https://github.com/wForget) 22 | 成为我们的Committer,我们很高兴地宣布他已经接受邀请。 23 | 24 | Zhen 在 6 个月内持续为 Kyuubi 的多个模块做出贡献,包括Kyuubi server 和 Spark SQL Engine。 25 | 26 | 他为Kyuubi server做的改进。 27 | - 为 kyuubi server增加了连接并发限制. 28 | - 在服务发现模块中支持 Zookeeper digest 认证模式 29 | - 优化孤儿引擎相关问题 30 | 31 | 他对 Spark SQL 引擎所做的功能和增强: 32 | - 实现 Spark history server Kyuubi 标签页 33 | - 实现了 Spark SQL 语句的执行进度 34 | - 支持 Spark SQL 引擎的single session模式 35 | - 参与了引擎池的讨论和优化。 36 | 37 | 他还帮助在社区中积极审查其他开发人员的PR。 38 | 39 | 让我们一起祝贺 Zhen! 40 | 41 | 成为 Committer 可以更轻松地为项目做出贡献,因为不需要通过补丁提交过程,这能够提高生产力。 42 | PPMC 成员帮助管理和指导项目的方向。 43 | -------------------------------------------------------------------------------- /src/zh/news/2022-06-18-release-1.5.2-incubating.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi(Incubating) 1.5.2-incubating released 3 | date: 2022-06-18 4 | linked: true 5 | --- 6 | 19 | 20 | 我们很高兴地宣布 [Apache Kyuubi(Incubating) 1.5.2-incubating](/zh/release/1.5.2-incubating.html) 发布了! 查看 [发布记录](/zh/release/1.5.2-incubating.html) 阅读有关新功能的信息,或者马上 [下载](/zh/releases.html) 体验吧。 21 | -------------------------------------------------------------------------------- /src/zh/news/2022-06-21-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: '新的 Committer: Shaoyun Chen' 3 | date: 2022-06-21 4 | linked: true 5 | description: 我们很高兴地宣布 Shaoyun Chen 成为新的 Kyuubi Committer. 6 | --- 7 | 20 | 21 | Apache Kyuubi 的 Podling 项目管理委员会已经邀请[Shaoyun Chen](https://github.com/cxzl25) 22 | 成为我们的Committer,我们很高兴地宣布他已经接受邀请。 23 | 24 | Shaoyun 目前就职于携程旅行。 25 | 26 | 从去年起,他向Kyuubi项目的众多模块贡献了代码,包括: 27 | 28 | - 实现了专用的set/get catalog/database操作符 29 | - 在Kyuubi Hive JDBC模块中引入适配器层 30 | - 将ProcessBuilder.commands置为不可变类型 31 | - 将ProcBuilder日志中的敏感信息脱敏 32 | - 优化kyuubi-ctl并新增了文档 33 | - 参与了Spark TPC-DS连接器的设计讨论和实现 34 | - 分析和修复了诸多不稳定测试用例 35 | 36 | 他将Kyuubi v1.4.0引入到了携程旅行生产环境中,作为Spark3 SQL计算引擎的多租户解决方案,支撑了每天 37 | 运行的大量的SQL即席查询。 38 | 39 | 他发现并修复了在生产环境中遇到的一些缺陷,同时也做了一些优化。 40 | 41 | 让我们一起祝贺Shaoyun Chen! 42 | 43 | 成为 Committer 可以更轻松地为项目做出贡献,因为不需要通过补丁提交过程,这能够提高生产力。 44 | PPMC 成员帮助管理和指导项目的方向。 45 | -------------------------------------------------------------------------------- /src/zh/news/2022-07-20-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: '新的 Committer: Min Zhao' 3 | date: 2022-07-20 4 | linked: true 5 | description: 我们很高兴的宣布 Min Zhao 成为新的 Kyuubi Committer. 6 | --- 7 | 20 | 21 | Apache Kyuubi 的 Podling 项目管理委员会已经邀请[Min Zhao](https://github.com/zhaomin1423) 22 | 成为我们的Committer,我们很高兴地宣布他已经接受邀请。 23 | 24 | Min Zhao已经向Kyuubi项目的多个模块儿持续贡献了9个月以上,包括Kyuubi服务模块和引擎模块。 25 | 26 | 详细来讲,他的贡献包括: 27 | 28 | - 分离事件系统为单独的模块,并使Hive和Trino引擎支持事件系统。 29 | - 参与Hive引擎的实现,实现了ProcessBuilder,参数解析,增加了一些配置参数等 30 | - 实现了JDBC引擎 31 | - 在Spark引擎中添加了一些UDF 32 | - 在BatchesResource中实现了接口 GET /batches 33 | - 参与authz模块儿的实现,增加了FilteredShowFunctionsCommand和FilteredShowDatabasesCommand 34 | - 一些缺陷修复和文档优化 35 | 36 | 他同时非常积极地帮助社区中其他开发者审查合并请求。 37 | 38 | 让我们一起祝贺Min Zhao! 39 | 40 | 成为 Committer 可以更轻松地为项目做出贡献,因为不需要通过补丁提交过程,这能够提高生产力。 41 | PPMC 成员帮助管理和指导项目的方向。 42 | -------------------------------------------------------------------------------- /src/zh/news/2022-07-26-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: '新的 Committer: Qingbo Jiao' 3 | date: 2022-07-26 4 | linked: true 5 | description: 我们很高兴的宣布 Qingbo Jiao 成为新的 Kyuubi Committer. 6 | --- 7 | 20 | 21 | Apache Kyuubi 的 Podling 项目管理委员会已经邀请[Qingbo Jiao](https://github.com/jiaoqingbo) 22 | 成为我们的Committer,我们很高兴地宣布他已经接受邀请。 23 | 24 | 他目前就职于亚信科技. 25 | 26 | Qingbo Jiao已经向Kyuubi项目的多个模块儿持续贡献了9个月以上 27 | 28 | 详细来讲,他的贡献包括: 29 | 30 | - 设计并实现了 Kyuubi Spark TPC-H Connector 31 | - 重构Kyuubi Hive JDBC driver使其不再依赖Hive 32 | - 改进了Flink引擎 33 | - 发表了文章,分享如何将Kyuubi集成到Apache Ambari 34 | - 缺陷修复和文档改进 35 | 36 | 让我们一起祝贺Qingbo Jiao! 37 | 38 | 成为 Committer 可以更轻松地为项目做出贡献,因为不需要通过补丁提交过程,这能够提高生产力。 39 | PPMC 成员帮助管理和指导项目的方向。 40 | -------------------------------------------------------------------------------- /src/zh/news/2022-09-06-release-1.6.0-incubating.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi(Incubating) 1.6.0-incubating released 3 | date: 2022-09-06 4 | linked: true 5 | --- 6 | 19 | 20 | 我们很高兴地宣布 [Apache Kyuubi(Incubating) 1.6.0-incubating](/zh/release/1.6.0-incubating.html) 发布了! 查看 [发布记录](/zh/release/1.6.0-incubating.html) 阅读有关新功能的信息,或者马上 [下载](/zh/releases.html) 体验吧。 21 | -------------------------------------------------------------------------------- /src/zh/news/2022-09-13-new-ppmc-members.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: '新的 PPMC 成员: Vino Yang, Dongdong Hong and Shaoyun Chen' 3 | date: 2022-09-13 4 | linked: true 5 | description: 我们很高兴的宣布 Vino Yang, Dongdong Hong and Shaoyun Chen 成为新的 Kyuubi PPMC members. 6 | --- 7 | 20 | 21 | Apache Kyuubi 项目管理委员会(PPMC)邀请了新的 PPMC 成员,我们很高兴地宣布他们已经接受了邀请。 22 | 23 | 请和我一起祝贺PPMC的新成员: 24 | Vino Yang, Dongdong Hong and Shaoyun Chen 25 | -------------------------------------------------------------------------------- /src/zh/news/2022-11-16-release-1.6.1-incubating.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi(Incubating) 1.6.1-incubating released 3 | date: 2022-11-16 4 | linked: true 5 | --- 6 | 19 | 20 | 我们很高兴地宣布 [Apache Kyuubi(Incubating) 1.6.1-incubating](/zh/release/1.6.1-incubating.html) 发布了! 查看 [发布记录](/zh/release/1.6.1-incubating.html) 阅读有关新功能的信息,或者马上 [下载](/zh/releases.html) 体验吧。 21 | -------------------------------------------------------------------------------- /src/zh/news/2023-01-19-new-committers-1.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: '新的 Committer: Bowen Liang' 3 | date: 2023-01-19 4 | linked: true 5 | description: 我们很高兴的宣布 Bowen Liang 成为新的 Kyuubi Committer. 6 | --- 7 | 20 | 21 | Apache Kyuubi 的项目管理委员会已经邀请[Bowen Liang](https://github.com/bowenliang123) 22 | 成为我们的Committer,我们很高兴地宣布他已经接受邀请。 23 | 24 | Bowen Liang 目前就职于广发证券,他专注于安全领域,在 Kyuubi 项目中的贡献包括 25 | 26 | - 他是 Authz 模块最活跃的开发者 27 | - 基于 JDBC 的认证机制 28 | - 非对称加密签名机制 29 | - 支持将 Kyuubi 最为 Spark 的 JDBC 数据源 30 | - 通过在 Datafun 分享应用案例推广 Kyuubi 31 | - 持续的基础设施改进 32 | 33 | 让我们一起祝贺 Bowen! 34 | 35 | 成为 Committer 可以更轻松地为项目做出贡献,因为不需要通过补丁提交过程,这能够提高生产力。 36 | PMC 成员帮助管理和指导项目的方向。 37 | -------------------------------------------------------------------------------- /src/zh/news/2023-01-19-new-committers-2.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: '新的 Committer: Kaifei Yi' 3 | date: 2023-01-19 4 | linked: true 5 | description: 我们很高兴的宣布 Kaifei Yi 成为新的 Kyuubi Committer. 6 | --- 7 | 20 | 21 | Apache Kyuubi 的项目管理委员会已经邀请[Kaifei Yi](https://github.com/Yikf) 22 | 成为我们的Committer,我们很高兴地宣布他已经接受邀请。 23 | 24 | Kaifei Yi 目前就职于百度,他在 Kyuubi 项目中的贡献包括 25 | 26 | - Kyuubi Spark Hive 连接器模块的主要贡献者 27 | - Trino 前端协议的主要贡献者 28 | - 项目基础设施改善,包括测试用例改进,保持依赖版本与时俱进 29 | - 代码审查 30 | 31 | 让我们一起祝贺 Kaifei! 32 | 33 | 成为 Committer 可以更轻松地为项目做出贡献,因为不需要通过补丁提交过程,这能够提高生产力。 34 | PMC 成员帮助管理和指导项目的方向。 35 | -------------------------------------------------------------------------------- /src/zh/news/2023-01-31-new-pmc-members.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: '新的 PMC Member: Fu Chen' 3 | date: 2023-01-31 4 | linked: true 5 | description: 我们很高兴的宣布 Fu Chen 成为新的 Kyuubi PMC Member. 6 | --- 7 | 20 | 21 | Apache Kyuubi 的项目管理委员会已经邀请[Fu Chen](https://github.com/cfmcgrady) 22 | 成为我们的 PMC Member,我们很高兴地宣布他已经接受邀请。 23 | 24 | Fu Chen 目前就职于丁香园,他一直在 Kyuubi 社区做有影响力的工作,例如支持 PySpark 和基于 Arrow 的结果序列化传输等对于社区和商业用户重要的特性。 25 | 他也一直致力于 Kyuubi Spark 引擎的优化。 26 | 27 | 让我们一起祝贺 Fu! 28 | -------------------------------------------------------------------------------- /src/zh/news/2023-03-08-release-1.7.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.7.0 released 3 | date: 2023-03-08 4 | linked: true 5 | --- 6 | 19 | 20 | 我们很高兴地宣布 [Apache Kyuubi 1.7.0](/zh/release/1.7.0.html) 发布了! 查看 [发布记录](/zh/release/1.7.0.html) 阅读有关新功能的信息,或者马上 [下载](/zh/releases.html) 体验吧。 21 | -------------------------------------------------------------------------------- /src/zh/news/2023-04-07-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: '新的 Committer: Yaodong Zhang' 3 | date: 2023-04-07 4 | linked: true 5 | description: 我们很高兴的宣布 Yaodong Zhang 成为新的 Kyuubi Committer. 6 | --- 7 | 20 | 21 | Apache Kyuubi 的项目管理委员会已经邀请[Yaodong Zhang](https://github.com/iodone) 22 | 成为我们的 Committer,我们很高兴地宣布他已经接受邀请。 23 | 24 | Yaodong Zhang 目前就职于小米,他在 Kyuubi 项目中的贡献包括 25 | 26 | - Kyuubi Spark Lineage 字段级血缘解析 27 | - 支持 Trino-JDBC 连接 Kyuubi 28 | - 引入 EventBus 模块统一 Kyuubi 事件的分发和订阅 29 | - Kyuubi Server 和引擎的相关缺陷修复和优化工作 30 | 31 | 让我们一起祝贺 Yaodong! 32 | 33 | 成为 Committer 可以更轻松地为项目做出贡献,因为不需要通过补丁提交过程,这能够提高生产力。 34 | PMC 成员帮助管理和指导项目的方向。 35 | -------------------------------------------------------------------------------- /src/zh/news/2023-04-08-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: '新的 committer: Denis Krivenko' 3 | date: 2023-04-08 4 | linked: true 5 | description: 我们很高兴的宣布 Denis Krivenko 成为新的 Kyuubi Committer. 6 | --- 7 | 20 | 21 | Apache Kyuubi 的项目管理委员会已经邀请[Denis Krivenko](https://github.com/dnskr) 22 | 成为我们的Committer,我们很高兴地宣布他已经接受邀请。 23 | 24 | DDenis Krivenko 从 2022 年 12 月起持续为 Kyuubi 项目做出贡献, 他为 Kyuubi Helm chart 25 | 做出了重大改进。 26 | 27 | 让我们一起祝贺 Denis ! 28 | 29 | 成为 Committer 可以更轻松地为项目做出贡献,因为不需要通过补丁提交过程,这能够提高生产力。 30 | PMC 成员帮助管理和指导项目的方向。 31 | -------------------------------------------------------------------------------- /src/zh/news/2023-04-10-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: '新的 Committer: Tianlin Liao' 3 | date: 2023-04-10 4 | linked: true 5 | description: 我们很高兴的宣布 Tianlin Liao 成为新的 Kyuubi Committer. 6 | --- 7 | 20 | 21 | Apache Kyuubi 的项目管理委员会已经邀请[Tianlin Liao](https://github.com/lightning-L) 22 | 成为我们的 Committer,我们很高兴地宣布她已经接受邀请。 23 | 24 | Tianlin Liao 目前就职于eBay,她在 Kyuubi 项目中的贡献包括 25 | 26 | - Kyuubi Rest Client 模块的主要贡献者 27 | - Kyuubi Ctl 模块的重构,以及batch job的支持 28 | - Kyuubi 客户端的其他功能增加和优化工作 29 | - Kyuubi metrics 的完善 30 | - Kyuubi Spark Engine 相关的新功能和优化 31 | 32 | 让我们一起祝贺 Tianlin! 33 | 34 | 成为 Committer 可以更轻松地为项目做出贡献,因为不需要通过补丁提交过程,这能够提高生产力。 35 | PMC 成员帮助管理和指导项目的方向。 36 | -------------------------------------------------------------------------------- /src/zh/news/2023-05-05-release-1.7.1.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.7.1 released 3 | date: 2023-05-05 4 | linked: true 5 | --- 6 | 19 | 20 | 我们很高兴地宣布 [Apache Kyuubi 1.7.1](/zh/release/1.7.1.html) 发布了! 查看 [发布记录](/zh/release/1.7.1.html) 阅读有关新功能的信息,或者马上 [下载](/zh/releases.html) 体验吧。 21 | -------------------------------------------------------------------------------- /src/zh/news/2023-05-21-shaded-release-0.1.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi Shaded 0.1.0 released 3 | date: 2023-05-21 4 | linked: true 5 | --- 6 | 19 | 20 | 我们很高兴地宣布 [Apache Kyuubi Shaded 0.1.0](/zh/shaded-release/0.1.0.html) 发布了! 查看 [发布记录](/zh/shaded-release/0.1.0.html) 阅读有关的更新信息。 21 | -------------------------------------------------------------------------------- /src/zh/news/2023-06-02-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: '新的 committer: Paul Lin' 3 | date: 2023-06-02 4 | linked: true 5 | description: We are happy to announce Paul Lin becomes a new Kyuubi committer. 6 | --- 7 | 20 | 21 | Apache Kyuubi 的项目管理委员会已经邀请[Paul Lin](https://github.com/link3280) 22 | 成为我们的 Committer,我们很高兴地宣布他已经接受邀请。 23 | 24 | Paul 现就职于网易互娱, 他 25 | 26 | - 自 2022 年 1 月以来,持续为 Kyuubi Flink 引擎模块做出贡献 27 | - 重构 Flink 引擎,迁移到基于 Flink SQL gateway 的实现 28 | - 实现了 Flink 引擎 YARN application mode 29 | - 与 Flink 社区协作,实现了 Flink Job 控制语句特性 30 | - 在 Flink 引擎类型系统中做出重要贡献 31 | - 在邮件列表和 GitHub Issue 中参与了多项讨论 32 | - 在 GitHub 和微信群中为用户解决问题 33 | - 积极审查与 Flink 引擎相关的设计和 PR 中,并提出大量改进建议 34 | - 通过优化 Issue 模板和改进持续集成,提升贡献者体验 35 | 36 | 成为 Committer 可以更轻松地为项目做出贡献,因为不需要通过补丁提交过程,这能够提高生产力。 37 | PMC 成员帮助管理和指导项目的方向。 38 | 39 | 让我们一起祝贺 Paul! 40 | -------------------------------------------------------------------------------- /src/zh/news/2023-09-18-release-1.7.2.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.7.2 released 3 | date: 2023-09-18 4 | linked: true 5 | --- 6 | 19 | 20 | 我们很高兴地宣布 [Apache Kyuubi 1.7.2](/zh/release/1.7.2.html) 发布了! 查看 [发布记录](/zh/release/1.7.2.html) 阅读有关新功能的信息,或者马上 [下载](/zh/releases.html) 体验吧。 21 | -------------------------------------------------------------------------------- /src/zh/news/2023-09-25-release-1.7.3.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.7.3 released 3 | date: 2023-09-25 4 | linked: true 5 | --- 6 | 19 | 20 | 我们很高兴地宣布 [Apache Kyuubi 1.7.3](/zh/release/1.7.3.html) 发布了! 查看 [发布记录](/zh/release/1.7.3.html) 阅读有关新功能的信息,或者马上 [下载](/zh/releases.html) 体验吧。 21 | -------------------------------------------------------------------------------- /src/zh/news/2023-10-11-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: '新的 committer: Binjie Yang' 3 | date: 2023-10-11 4 | linked: true 5 | description: We are happy to announce Binjie Yang becomes a new Kyuubi committer. 6 | --- 7 | 20 | 21 | Apache Kyuubi 的项目管理委员会已经邀请[Binjie Yang](https://github.com/zwangsheng) 22 | 成为我们的 Committer,我们很高兴地宣布他已经接受邀请。 23 | 24 | Binjie Yang 现就职于网易, 他 25 | 26 | - 自 2021 年 3 月以来,参与 Kyuubi 社区贡献 27 | - Kyuubi Spark Engine On Kubernetes 适配的主要贡献者 28 | - 参与 Kyuubi On Kubernetes 适配以及集成测试构建 29 | - 参与 Kyuubi Web UI & Batch V2 建设工作 30 | - 在邮件列表和 GitHub Issue 中参与了多项讨论 31 | - 在 GitHub 和微信群中为用户解决问题 32 | 33 | 成为 Committer 可以更轻松地为项目做出贡献,因为不需要通过补丁提交过程,这能够提高生产力。 34 | PMC 成员帮助管理和指导项目的方向。 35 | 36 | 让我们一起祝贺 Binjie Yang! 37 | -------------------------------------------------------------------------------- /src/zh/news/2023-10-30-new-pmc-members.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: '新的 PMC Member: Bowen Liang' 3 | date: 2023-10-30 4 | linked: true 5 | description: 我们很高兴的宣布 Bowen Liang 成为新的 Kyuubi PMC Member. 6 | --- 7 | 20 | 21 | Apache Kyuubi 的项目管理委员会已经邀请[Bowen Liang](https://github.com/bowenliang123) 22 | 成为我们的 PMC Member,我们很高兴地宣布他已经接受邀请。 23 | 24 | Bowen Liang 目前就职于广发证券,他持续参与Kyuubi项目的贡献,并作为Kyuubi Spark Authz组件的核心维护者。 25 | 26 | 让我们一起祝贺 Bowen! 27 | -------------------------------------------------------------------------------- /src/zh/news/2023-11-07-new-pmc-members.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: '新的 PMC Member: Zhen Wang' 3 | date: 2023-11-07 4 | linked: true 5 | description: 我们很高兴的宣布 Zhen Wang 成为新的 Kyuubi PMC Member. 6 | --- 7 | 20 | 21 | Apache Kyuubi 的项目管理委员会已经邀请 [Zhen Wang](https://github.com/wForget) 成为我们的 PMC Member,我们很高兴地宣布他已经接受邀请。 22 | 23 | Zhen Wang 目前就职于爱奇艺。在过去的两年时间,他为Kyuubi项目持续贡献了许多优秀特性,成为社区活跃的贡献者之一,并积极地为社区用户解答疑问,曾多次担任新版本发布经理。 24 | 25 | 让我们一起祝贺 Zhen Wang! 26 | -------------------------------------------------------------------------------- /src/zh/news/2023-11-07-release-1.8.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.8.0 released 3 | date: 2023-11-07 4 | linked: true 5 | --- 6 | 19 | 20 | 我们很高兴地宣布 [Apache Kyuubi 1.8.0](/zh/release/1.8.0.html) 发布了! 查看 [发布记录](/zh/release/1.8.0.html) 阅读有关新功能的信息,或者马上 [下载](/zh/releases.html) 体验吧。 21 | -------------------------------------------------------------------------------- /src/zh/news/2023-11-14-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: '新的 committer: Bogdan Kyryliuk' 3 | date: 2023-11-14 4 | linked: true 5 | description: We are happy to announce Bogdan Kyryliuk becomes a new Kyuubi committer. 6 | --- 7 | 20 | 21 | Apache Kyuubi 的项目管理委员会已经邀请[Bogdan Kyryliuk](https://github.com/bkyryliuk) 22 | 成为我们的 Committer,我们很高兴地宣布他已经接受邀请。 23 | 24 | Bogdan Kyryliuk 现就职于 Dropbox, 他在 PyHive 项目捐赠中起了发挥了重要作用。 25 | 26 | 成为 Committer 可以更轻松地为项目做出贡献,因为不需要通过补丁提交过程,这能够提高生产力。 27 | PMC 成员帮助管理和指导项目的方向。 28 | 29 | 让我们一起祝贺 Bogdan Kyryliuk! 30 | -------------------------------------------------------------------------------- /src/zh/news/2023-12-07-shaded-release-0.2.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi Shaded 0.2.0 released 3 | date: 2023-12-07 4 | linked: true 5 | --- 6 | 19 | 20 | 我们很高兴地宣布 [Apache Kyuubi Shaded 0.2.0](/zh/shaded-release/0.2.0.html) 发布了! 查看 [发布记录](/zh/shaded-release/0.2.0.html) 阅读有关的更新信息。 21 | -------------------------------------------------------------------------------- /src/zh/news/2024-01-29-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'New committer: Yi Zhu' 3 | date: 2024-01-29 4 | linked: true 5 | description: We are happy to announce Yi Zhu becomes a new Kyuubi committer. 6 | --- 7 | 18 | 19 | Apache Kyuubi 的项目管理委员会已经邀请[Yi Zhu](https://github.com/Angerszhuuuu) 20 | 成为我们的 Committer,我们很高兴地宣布他已经接受邀请。 21 | 22 | Yi Zhu现就职于 Shopee, 他在 Kyuubi Authz 项目中发挥了重要作用。 23 | 24 | 成为 Committer 可以更轻松地为项目做出贡献,因为不需要通过补丁提交过程,这能够提高生产力。 25 | PMC 成员帮助管理和指导项目的方向。 26 | 27 | 让我们一起祝贺 Yi Zhu! -------------------------------------------------------------------------------- /src/zh/news/2024-02-21-release-1.8.1.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.8.1 released 3 | date: 2024-02-21 4 | linked: true 5 | --- 6 | 19 | 20 | 我们很高兴地宣布 [Apache Kyuubi 1.8.1](/zh/release/1.8.1.html) 发布了! 查看 [发布记录](/zh/release/1.8.1.html) 阅读有关新功能的信息,或者马上 [下载](/zh/releases.html) 体验吧。 21 | -------------------------------------------------------------------------------- /src/zh/news/2024-03-07-shaded-release-0.3.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi Shaded 0.3.0 released 3 | date: 2024-03-07 4 | linked: true 5 | --- 6 | 19 | 我们很高兴地宣布 [Apache Kyuubi Shaded 0.3.0](/zh/shaded-release/0.3.0.html) 发布了! 查看 [发布记录](/zh/shaded-release/0.3.0.html) 阅读有关的更新信息。 20 | -------------------------------------------------------------------------------- /src/zh/news/2024-03-19-release-1.9.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.9.0 released 3 | date: 2024-03-19 4 | linked: true 5 | --- 6 | 19 | 20 | 我们很高兴地宣布 [Apache Kyuubi 1.9.0](/zh/release/1.9.0.html) 发布了! 查看 [发布记录](/zh/release/1.9.0.html) 阅读有关新功能的信息,或者马上 [下载](/zh/releases.html) 体验吧。 21 | -------------------------------------------------------------------------------- /src/zh/news/2024-03-24-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'New committer: Zhou Yifan' 3 | date: 2024-03-24 4 | linked: true 5 | description: We are happy to announce Zhou Yifan becomes a new Kyuubi committer. 6 | --- 7 | 18 | 19 | Apache Kyuubi 的项目管理委员会已经邀请[Zhou Yifan](https://github.com/zhouyifan279) 20 | 成为我们的 Committer,我们很高兴地宣布他已经接受邀请。 21 | 22 | Zhou Yifan 在 Kyuubi 对 Kerberos 认证的支持上做出了重要贡献。 23 | 24 | 成为 Committer 可以更轻松地为项目做出贡献,因为不需要通过补丁提交过程,这能够提高生产力。 25 | PMC 成员帮助管理和指导项目的方向。 26 | 27 | 让我们一起祝贺 Zhou Yifan! -------------------------------------------------------------------------------- /src/zh/news/2024-04-09-shaded-release-0.4.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi Shaded 0.4.0 released 3 | date: 2024-04-09 4 | linked: true 5 | --- 6 | 19 | 我们很高兴地宣布 [Apache Kyuubi Shaded 0.4.0](/zh/shaded-release/0.4.0.html) 发布了! 查看 [发布记录](/zh/shaded-release/0.4.0.html) 阅读有关的更新信息。 20 | -------------------------------------------------------------------------------- /src/zh/news/2024-04-26-release-1.7.4.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.7.4 released 3 | date: 2024-04-26 4 | linked: true 5 | --- 6 | 19 | 20 | 我们很高兴地宣布 [Apache Kyuubi 1.7.4](/zh/release/1.7.4.html) 发布了! 查看 [发布记录](/zh/release/1.7.4.html) 阅读有关新功能的信息,或者马上 [下载](/zh/releases.html) 体验吧。 21 | -------------------------------------------------------------------------------- /src/zh/news/2024-04-26-release-1.8.2.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.8.2 released 3 | date: 2024-04-26 4 | linked: true 5 | --- 6 | 19 | 20 | 我们很高兴地宣布 [Apache Kyuubi 1.8.2](/zh/release/1.8.2.html) 发布了! 查看 [发布记录](/zh/release/1.8.2.html) 阅读有关新功能的信息,或者马上 [下载](/zh/releases.html) 体验吧。 21 | -------------------------------------------------------------------------------- /src/zh/news/2024-06-03-release-1.9.1.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.9.1 released 3 | date: 2024-06-03 4 | linked: true 5 | --- 6 | 19 | 20 | 我们很高兴地宣布 [Apache Kyuubi 1.9.1](/zh/release/1.9.1.html) 发布了! 查看 [发布记录](/zh/release/1.9.1.html) 阅读有关新功能的信息,或者马上 [下载](/zh/releases.html) 体验吧。 21 | 22 | -------------------------------------------------------------------------------- /src/zh/news/2024-06-25-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'New committer: Senmiao Liu' 3 | date: 2024-06-25 4 | linked: true 5 | description: We are happy to announce Senmiao Liu becomes a new Kyuubi committer. 6 | --- 7 | 18 | 19 | Apache Kyuubi 的项目管理委员会已经邀请[Senmiao Liu](https://github.com/lsm1) 20 | 成为我们的 Committer,我们很高兴地宣布他已经接受邀请。 21 | 22 | Senmiao Liu 已经为Apache Kyuubi贡献了3年时间,包括功能实现、文档/测试改进、错误修复等,为多个引擎(如Spark、Trino和JDBC)做出了贡献 23 | 24 | 成为 Committer 可以更轻松地为项目做出贡献,因为不需要通过补丁提交过程,这能够提高生产力。 25 | PMC 成员帮助管理和指导项目的方向。 26 | 27 | 让我们一起祝贺 Senmiao Liu! -------------------------------------------------------------------------------- /src/zh/news/2024-07-22-shaded-release-0.4.1.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi Shaded 0.4.1 released 3 | date: 2024-07-22 4 | linked: true 5 | --- 6 | 19 | 我们很高兴地宣布 [Apache Kyuubi Shaded 0.4.1](/zh/shaded-release/0.4.1.html) 发布了! 查看 [发布记录](/zh/shaded-release/0.4.1.html) 阅读有关的更新信息。 20 | -------------------------------------------------------------------------------- /src/zh/news/2024-07-23-release-1.9.2.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.9.2 released 3 | date: 2024-07-23 4 | linked: true 5 | --- 6 | 19 | 20 | 我们很高兴地宣布 [Apache Kyuubi 1.9.2](/zh/release/1.9.2.html) 发布了! 查看 [发布记录](/zh/release/1.9.2.html) 阅读有关新功能的信息,或者马上 [下载](/zh/releases.html) 体验吧。 21 | -------------------------------------------------------------------------------- /src/zh/news/2024-10-27-release-1.10.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.10.0 released 3 | date: 2024-10-27 4 | linked: true 5 | --- 6 | 19 | 20 | 我们很高兴地宣布 [Apache Kyuubi 1.10.0](/zh/release/1.10.0.html) 发布了! 查看 [发布记录](/zh/release/1.10.0.html) 阅读有关新功能的信息,或者马上 [下载](/zh/releases.html) 体验吧。 21 | -------------------------------------------------------------------------------- /src/zh/news/2024-11-27-release-1.8.3.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.8.3 released 3 | date: 2024-11-27 4 | linked: true 5 | --- 6 | 19 | 20 | 我们很高兴地宣布 [Apache Kyuubi 1.8.3](/zh/release/1.8.3.html) 发布了! 查看 [发布记录](/zh/release/1.8.3.html) 阅读有关新功能的信息,或者马上 [下载](/zh/releases.html) 体验吧。 21 | -------------------------------------------------------------------------------- /src/zh/news/2024-12-02-release-1.9.3.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.9.3 released 3 | date: 2024-12-02 4 | linked: true 5 | --- 6 | 19 | 20 | 我们很高兴地宣布 [Apache Kyuubi 1.9.3](/zh/release/1.9.3.html) 发布了! 查看 [发布记录](/zh/release/1.9.3.html) 阅读有关新功能的信息,或者马上 [下载](/zh/releases.html) 体验吧。 21 | -------------------------------------------------------------------------------- /src/zh/news/2024-12-26-release-1.10.1.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.10.1 released 3 | date: 2024-12-26 4 | linked: true 5 | --- 6 | 19 | 20 | 我们很高兴地宣布 [Apache Kyuubi 1.10.1](/zh/release/1.10.1.html) 发布了! 查看 [发布记录](/zh/release/1.10.1.html) 阅读有关新功能的信息,或者马上 [下载](/zh/releases.html) 体验吧。 21 | -------------------------------------------------------------------------------- /src/zh/news/2025-01-02-new-committers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'New committer: He Zhao' 3 | date: 2025-01-02 4 | linked: true 5 | description: We are happy to announce He Zhao becomes a new Kyuubi committer. 6 | --- 7 | 18 | 19 | Apache Kyuubi 的项目管理委员会已经邀请[He Zhao](https://github.com/zhaohehuhu) 20 | 成为我们的 Committer,我们很高兴地宣布他已经接受邀请。 21 | 22 | He Zhao 在 Cisco 工作,他在过去的一年半时间里持续为 Kyuubi 做出贡献且在 Kyuubi Web UI 和 Kyuubi Grafana 监控看板方面做出了重要贡献。 23 | 24 | 成为 Committer 可以更轻松地为项目做出贡献,因为不需要通过补丁提交过程,这能够提高生产力。 25 | PMC 成员帮助管理和指导项目的方向。 26 | 27 | 让我们一起祝贺 He Zhao! -------------------------------------------------------------------------------- /src/zh/news/2025-05-22-shaded-release-0.5.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi Shaded 0.5.0 released 3 | date: 2025-05-22 4 | linked: true 5 | --- 6 | 19 | 我们很高兴地宣布 [Apache Kyuubi Shaded 0.5.0](/zh/shaded-release/0.5.0.html) 发布了! 查看 [发布记录](/zh/shaded-release/0.5.0.html) 阅读有关的更新信息。 20 | -------------------------------------------------------------------------------- /src/zh/news/2025-05-27-release-1.10.2.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.10.2 released 3 | date: 2025-05-27 4 | linked: true 5 | --- 6 | 19 | 20 | 我们很高兴地宣布 [Apache Kyuubi 1.10.2](/zh/release/1.10.2.html) 发布了! 查看 [发布记录](/zh/release/1.10.2.html) 阅读有关新功能的信息,或者马上 [下载](/zh/releases.html) 体验吧。 21 | -------------------------------------------------------------------------------- /src/zh/news/2025-05-27-release-1.9.4.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache Kyuubi 1.9.4 released 3 | date: 2025-05-27 4 | linked: true 5 | --- 6 | 19 | 20 | 我们很高兴地宣布 [Apache Kyuubi 1.9.4](/zh/release/1.9.4.html) 发布了! 查看 [发布记录](/zh/release/1.9.4.html) 阅读有关新功能的信息,或者马上 [下载](/zh/releases.html) 体验吧。 21 | -------------------------------------------------------------------------------- /src/zh/powered_by.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Powered by Kyuubi" 3 | menu: "po" 4 | layout: powered 5 | type: custompage 6 | --- 7 | 20 | -------------------------------------------------------------------------------- /src/zh/project_history.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "最新消息" 3 | layout: news_table 4 | type: custompage 5 | menu: 6 | main: 7 | name: "最新消息" 8 | parent: "community" 9 | weight: 4 10 | --- 11 | 24 | 25 | ## License 26 | 27 | _The software licensed under [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0)._ -------------------------------------------------------------------------------- /src/zh/release/1.10.1.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 发布记录 - 1.10.1 3 | date: 2024-12-26 4 | linked: true 5 | meta: 6 | _edit_last: '4' 7 | _wpas_done_all: '1' 8 | --- 9 | 22 | 23 | ### Changelogs 24 | 25 | - [KYUUBI #6840] Fix PodMonitor pods selection 26 | - [KYUUBI #6829] Add metrics for batch pending max elapse time 27 | - [KYUUBI #6836] Ship `kafka-clients` in binary distribution tarball without compression libs 28 | - [KYUUBI #6838] [INFRA] Update archive mailing list address 29 | - [KYUUBI #6837] [INFRA] Disable K8s CI image GHA cache 30 | - [KYUUBI #6828] Clean up and improve error message for KyuubiBaseResultSet 31 | - Revert "[KYUUBI #6639] Port HIVE-27815: Support update numModifiedRows" 32 | - [KYUUBI #6722] Fix AppState when Engine connection is terminated 33 | - [KYUUBI #6820] Explicitly disable attach-scaladocs for pure Java modules 34 | - [KYUUBI #6813] [BUILD] Replace `java.version` 1.8 with 8 35 | - [KYUUBI #6773] Bump commons-codec from 1.15 to 1.17.1 36 | - [KYUUBI #6808] [BUILD]Replace systemProperties with systemPropertyVariables in maven-surefire-plugin 37 | - [KYUUBI #6805] [K8S][HELM] Update default Kyuubi version to 1.10.0 38 | - [KYUUBI #6778] [BUILD] allow frontend plugin not to inherits Maven's http proxy config 39 | - [KYUUBI #6786] Skip repeated checks on convert function in TColumnGenerator 40 | - [KYUUBI #6790] Fix engine cannot exit when gracefully stopped 41 | 42 | ### Credits 43 | 44 | Last but not least, this release would not have been possible without the following contributors: 45 | 46 | * Bowen Liang 47 | * pionCham 48 | * Denis Krivenko 49 | * Fei Wang 50 | * Zhen Wang 51 | * Cheng Pan 52 | * Joao Amaral 53 | * zhifanggao 54 | -------------------------------------------------------------------------------- /src/zh/release/1.5.1-incubating.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 发布记录 - 1.5.1-incubating 3 | date: 2022-04-21 4 | linked: true 5 | meta: 6 | _edit_last: '4' 7 | _wpas_done_all: '1' 8 | --- 9 | 22 | 23 | ### 更改列表 24 | 25 | - [[KYUUBI #2354] Fix NPE in process builder log capture thread](https://github.com/apache/incubator-kyuubi/commit/5e76334e) 26 | - [[KYUUBI #2296] Fix operation log file handler leak](https://github.com/apache/incubator-kyuubi/commit/809ea2a6) 27 | - [[KYUUBI #2266] The default value of frontend.connection.url.use.hostname should be set to true to be consistent with previous versions](https://github.com/apache/incubator-kyuubi/commit/d3e25f08) 28 | - [[KYUUBI #2255]The engine state of Spark's EngineEvent is hardcoded with 0](https://github.com/apache/incubator-kyuubi/commit/2af8bbb4) 29 | - [[KYUUBI #2008][FOLLOWUP] Support engine type and subdomain in kyuubi-ctl](https://github.com/apache/incubator-kyuubi/commit/d1a2dda0) 30 | - [[KYUUBI #2156][FOLLOWUP] Fix configuration format in document](https://github.com/apache/incubator-kyuubi/commit/5225b540) 31 | - [[KYUUBI #2156] Change log to reflect exactly why getting token failed](https://github.com/apache/incubator-kyuubi/commit/21ca7540) 32 | - [[KYUUBI #2134] Respect Spark bundled log4j in extension modules](https://github.com/apache/incubator-kyuubi/commit/30dc84b5) 33 | - [[KYUUBI #2150] [DOCS] Fix Getting Started With Kyuubi on Kubernetes](https://github.com/apache/incubator-kyuubi/commit/e232a83a) 34 | 35 | 36 | ### 致谢 37 | 38 | 最后但同样重要的是,如果没有以下贡献者,该版本是不可能发布的: 39 | 40 | * Cheng Pan 41 | * Fei Wang 42 | * HYBG 43 | * Nick-0723 44 | * cxzl25 45 | * jiaoqingbo 46 | * ulysses 47 | -------------------------------------------------------------------------------- /src/zh/release/1.7.3.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 发布记录 - 1.7.3 3 | date: 2023-09-25 4 | linked: true 5 | meta: 6 | _edit_last: '4' 7 | _wpas_done_all: '1' 8 | --- 9 | 22 | 23 | ### 重要变更 24 | - 修复 Cancel 操作导致文件句柄泄漏的问题 25 | 26 | ### Server 27 | 28 | - [KYUUBI #5210] Cancel operation will cause the log file node to leak 29 | 30 | ### Spark Authz Plugin 31 | 32 | - [KYUUBI #5269] [Bug] Dupllicated AnalyzesTablesCommand in kyuubi authz 33 | 34 | ### Credits 35 | 36 | Last but not least, this release would not have been possible without the following contributors: 37 | 38 | * AngersZhuuuu 39 | * ASiegeLion 40 | -------------------------------------------------------------------------------- /src/zh/releases.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Apache Kyuubi 发布" 3 | menu: "releases" 4 | layout: release 5 | type: custompage 6 | --- 7 | 20 | 21 | ## License 22 | 23 | _The software licensed under [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0)._ 24 | -------------------------------------------------------------------------------- /src/zh/shaded-release/0.1.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Kyuubi Shaded 发布记录 - 0.1.0 3 | date: 2023-05-21 4 | linked: true 5 | --- 6 | 19 | 20 | ### 主要变更 21 | 22 | - 为 Zookeeper 3.4 和 3.6 构建 shaded 二进制包 23 | - [KYUUBI-SHADED #5] 修复 ZOOKEEPER-3779 以允许 Zookeeper 3.4 客户端兼容 JDK 17 24 | 25 | # 致谢 26 | 27 | 最后但同样重要的是,如果没有以下贡献者,该版本是不可能发布的: 28 | 29 | * Cheng Pan 30 | -------------------------------------------------------------------------------- /src/zh/shaded-release/0.2.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Kyuubi Shaded 发布记录 - 0.2.0 3 | date: 2023-12-07 4 | linked: true 5 | --- 6 | 19 | 20 | ### 主要变更 21 | 22 | - [KYUUBI-SHADED #20] 新增 kyuubi-shaded-hive-service-rpc 23 | - [KYUUBI-SHADED #22] 模块名称中使用 'relocated' 替换 'shaded' 24 | - [KYUUBI-SHADED #27] README 中新增免责说明 25 | - [KYUUBI-SHADED #28] 通过复写 SnapStream 以移除 Zookeeper 3.6 客户端中的 snappy 依赖 26 | 27 | # 致谢 28 | 29 | 最后但同样重要的是,如果没有以下贡献者,该版本是不可能发布的: 30 | 31 | * Cheng Pan 32 | -------------------------------------------------------------------------------- /src/zh/shaded-release/0.3.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Kyuubi Shaded 发布记录 - 0.3.0 3 | date: 2024-03-07 4 | linked: true 5 | --- 6 | 19 | 20 | ### 主要变更 21 | 22 | - [KYUUBI-SHADED #33] Port ZOOKEEPER-1718 to support JLine2 in ZK client 3.4 23 | - [KYUUBI-SHADED #35] Create a light shaded HiveMetaStoreClient for getting DelegationToken 24 | - [KYUUBI-SHADED #36] Remove dependencyManagement in shaded zookeeper pom 25 | - [KYUUBI-SHADED #37] Split Thrift out from relocated hive-service-rpc 26 | - [KYUUBI-SHADED #39] Bump Thrift 0.16.0 27 | - [KYUUBI-SHADED #40] kyuubi-relocated-hive-metastore-client supports ZooKeeper 3.4 28 | - [KYUUBI-SHADED #41] Relocated Hive MetaStore client uses relocated Thrift 29 | 30 | ### 致谢 31 | 32 | 最后但同样重要的是,如果没有以下贡献者,该版本是不可能发布的: 33 | 34 | * Cheng Pan 35 | * Yifan Zhou 36 | -------------------------------------------------------------------------------- /src/zh/shaded-release/0.4.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Kyuubi Shaded 发布记录 - 0.4.0 3 | date: 2024-04-09 4 | linked: true 5 | --- 6 | 19 | 20 | ### 主要变更 21 | 22 | - [KYUUBI-SHADED #44] Add Hive DelegationTokenIdentifier ServiceLoader file 23 | - [KYUUBI-SHADED #45] Upgrade hive-service-rpc 4.0.0 24 | 25 | ### 致谢 26 | 27 | 最后但同样重要的是,如果没有以下贡献者,该版本是不可能发布的: 28 | 29 | * He Zhao 30 | * Yifan Zhou 31 | -------------------------------------------------------------------------------- /src/zh/shaded-release/0.4.1.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Kyuubi Shaded 发布记录 - 0.4.1 3 | date: 2024-07-22 4 | linked: true 5 | --- 6 | 19 | 20 | ### 主要变更 21 | 22 | - [KYUUBI #6496] Port ZOOKEEPER-4377 to Kyuubi shaded ZooKeeper 3.4 and 3.6 23 | 24 | ### 致谢 25 | 26 | 最后但同样重要的是,如果没有以下贡献者,该版本是不可能发布的: 27 | 28 | * madlnu 29 | -------------------------------------------------------------------------------- /src/zh/shaded-release/0.5.0.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Kyuubi Shaded 发布记录 - 0.5.0 3 | date: 2025-05-22 4 | linked: true 5 | --- 6 | 19 | 20 | ### 主要变更 21 | 22 | - [KYUUBI #6496] Port ZOOKEEPER-4377 to Kyuubi shaded ZooKeeper 3.4 and 3.6 23 | - [KYUUBI-SHADED #48] Remove unused annotations for HMS client generated thrift code 24 | - [KYUUBI-SHADED #49] Create relocated package for spark-connect-rpc 25 | - [KYUUBI-SHADED #57] Bump Maven 3.9.9 and related plugins 26 | 27 | ### 致谢 28 | 29 | 最后但同样重要的是,如果没有以下贡献者,该版本是不可能发布的: 30 | 31 | * madlnu 32 | * Cheng Pan 33 | -------------------------------------------------------------------------------- /src/zh/version_control.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Kyuubi 版本控制 3 | menu: 4 | main: 5 | name: "版本控制" 6 | parent: "development" 7 | --- 8 | 21 | 22 | ## Overview 23 | 24 | Kyuubi 源代码位于 Apache git 存储库中,可从此处获得: 25 | https://gitbox.apache.org/repos/asf?p=kyuubi.git 26 | 27 | 更改也反映到 github 存储库: 28 | https://github.com/apache/kyuubi 29 | -------------------------------------------------------------------------------- /static/activeShare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/activeShare.png -------------------------------------------------------------------------------- /static/asf_logo_wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/asf_logo_wide.png -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/favicon.ico -------------------------------------------------------------------------------- /static/homePageImg/bannerBg_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/bannerBg_m.png -------------------------------------------------------------------------------- /static/homePageImg/community1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/community1.png -------------------------------------------------------------------------------- /static/homePageImg/community2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/community2.png -------------------------------------------------------------------------------- /static/homePageImg/community3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/community3.png -------------------------------------------------------------------------------- /static/homePageImg/community4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/community4.png -------------------------------------------------------------------------------- /static/homePageImg/community5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/community5.png -------------------------------------------------------------------------------- /static/homePageImg/community6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/community6.png -------------------------------------------------------------------------------- /static/homePageImg/ecoA1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/ecoA1.png -------------------------------------------------------------------------------- /static/homePageImg/ecoA2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/ecoA2.png -------------------------------------------------------------------------------- /static/homePageImg/ecoA3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/ecoA3.png -------------------------------------------------------------------------------- /static/homePageImg/ecoA4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/ecoA4.png -------------------------------------------------------------------------------- /static/homePageImg/ecoA5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/ecoA5.png -------------------------------------------------------------------------------- /static/homePageImg/ecoA6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/ecoA6.png -------------------------------------------------------------------------------- /static/homePageImg/ecoB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/ecoB1.png -------------------------------------------------------------------------------- /static/homePageImg/ecoB2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/ecoB2.png -------------------------------------------------------------------------------- /static/homePageImg/ecoB3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/ecoB3.png -------------------------------------------------------------------------------- /static/homePageImg/ecoB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/ecoB4.png -------------------------------------------------------------------------------- /static/homePageImg/ecoB5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/ecoB5.png -------------------------------------------------------------------------------- /static/homePageImg/ecoB6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/ecoB6.png -------------------------------------------------------------------------------- /static/homePageImg/ecoC1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/ecoC1.png -------------------------------------------------------------------------------- /static/homePageImg/ecoC2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/ecoC2.png -------------------------------------------------------------------------------- /static/homePageImg/ecoC3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/ecoC3.png -------------------------------------------------------------------------------- /static/homePageImg/ecoC4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/ecoC4.png -------------------------------------------------------------------------------- /static/homePageImg/ecoC5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/ecoC5.png -------------------------------------------------------------------------------- /static/homePageImg/ecoC6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/ecoC6.png -------------------------------------------------------------------------------- /static/homePageImg/indexBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/indexBanner.png -------------------------------------------------------------------------------- /static/homePageImg/kf1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/kf1.png -------------------------------------------------------------------------------- /static/homePageImg/kf2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/kf2.png -------------------------------------------------------------------------------- /static/homePageImg/kf3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/kf3.png -------------------------------------------------------------------------------- /static/homePageImg/powered1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered1.png -------------------------------------------------------------------------------- /static/homePageImg/powered10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered10.png -------------------------------------------------------------------------------- /static/homePageImg/powered11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered11.png -------------------------------------------------------------------------------- /static/homePageImg/powered12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered12.png -------------------------------------------------------------------------------- /static/homePageImg/powered13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered13.png -------------------------------------------------------------------------------- /static/homePageImg/powered14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered14.png -------------------------------------------------------------------------------- /static/homePageImg/powered15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered15.png -------------------------------------------------------------------------------- /static/homePageImg/powered16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered16.png -------------------------------------------------------------------------------- /static/homePageImg/powered17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered17.png -------------------------------------------------------------------------------- /static/homePageImg/powered18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered18.png -------------------------------------------------------------------------------- /static/homePageImg/powered19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered19.png -------------------------------------------------------------------------------- /static/homePageImg/powered2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered2.png -------------------------------------------------------------------------------- /static/homePageImg/powered20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered20.png -------------------------------------------------------------------------------- /static/homePageImg/powered21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered21.png -------------------------------------------------------------------------------- /static/homePageImg/powered22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered22.png -------------------------------------------------------------------------------- /static/homePageImg/powered23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered23.png -------------------------------------------------------------------------------- /static/homePageImg/powered24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered24.png -------------------------------------------------------------------------------- /static/homePageImg/powered25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered25.png -------------------------------------------------------------------------------- /static/homePageImg/powered26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered26.png -------------------------------------------------------------------------------- /static/homePageImg/powered27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered27.png -------------------------------------------------------------------------------- /static/homePageImg/powered28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered28.png -------------------------------------------------------------------------------- /static/homePageImg/powered29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered29.png -------------------------------------------------------------------------------- /static/homePageImg/powered3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered3.png -------------------------------------------------------------------------------- /static/homePageImg/powered30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered30.png -------------------------------------------------------------------------------- /static/homePageImg/powered31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered31.png -------------------------------------------------------------------------------- /static/homePageImg/powered32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered32.png -------------------------------------------------------------------------------- /static/homePageImg/powered33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered33.png -------------------------------------------------------------------------------- /static/homePageImg/powered34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered34.png -------------------------------------------------------------------------------- /static/homePageImg/powered35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered35.png -------------------------------------------------------------------------------- /static/homePageImg/powered36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered36.png -------------------------------------------------------------------------------- /static/homePageImg/powered37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered37.png -------------------------------------------------------------------------------- /static/homePageImg/powered38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered38.png -------------------------------------------------------------------------------- /static/homePageImg/powered39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered39.png -------------------------------------------------------------------------------- /static/homePageImg/powered4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered4.png -------------------------------------------------------------------------------- /static/homePageImg/powered40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered40.png -------------------------------------------------------------------------------- /static/homePageImg/powered41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered41.png -------------------------------------------------------------------------------- /static/homePageImg/powered42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered42.png -------------------------------------------------------------------------------- /static/homePageImg/powered43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered43.png -------------------------------------------------------------------------------- /static/homePageImg/powered44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered44.png -------------------------------------------------------------------------------- /static/homePageImg/powered45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered45.png -------------------------------------------------------------------------------- /static/homePageImg/powered46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered46.png -------------------------------------------------------------------------------- /static/homePageImg/powered47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered47.png -------------------------------------------------------------------------------- /static/homePageImg/powered48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered48.png -------------------------------------------------------------------------------- /static/homePageImg/powered49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered49.png -------------------------------------------------------------------------------- /static/homePageImg/powered5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered5.png -------------------------------------------------------------------------------- /static/homePageImg/powered6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered6.png -------------------------------------------------------------------------------- /static/homePageImg/powered7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered7.png -------------------------------------------------------------------------------- /static/homePageImg/powered8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered8.png -------------------------------------------------------------------------------- /static/homePageImg/powered9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/homePageImg/powered9.png -------------------------------------------------------------------------------- /static/incubator_feather_egg_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/incubator_feather_egg_logo.png -------------------------------------------------------------------------------- /static/kyuubi_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/kyuubi_logo.png -------------------------------------------------------------------------------- /static/kyuubi_logo_hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/kyuubi_logo_hd.png -------------------------------------------------------------------------------- /static/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/kyuubi-website/3049040bbddb9f7321161749c06f85d32b7a261d/static/share.png --------------------------------------------------------------------------------