# 🔍 Description ## Issue References 🔗 This pull request fixes #5467 ## Describe Your Solution 🔧 1. Add Gluten UTs. 2. Setup CI for Gluten testing 3. Write docs to guide users in setting up Kyuubi with Spark plus Gluten. ## Types of changes 🔖 - [ ] Bugfix (non-breaking change which fixes an issue) - [x] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) ## Test Plan 🧪 #### Behavior Without This Pull Request ⚰️ #### Behavior With This Pull Request 🎉 #### Related Unit Tests github action ci tests: [Gluten Test CI](https://github.com/Kwafoor/incubator-kyuubi/actions/runs/7111586978) --- # Checklists ## 📝 Author Self Checklist - [ ] My code follows the [style guidelines](https://kyuubi.readthedocs.io/en/master/contributing/code/style.html) of this project - [x] I have performed a self-review - [x] I have commented my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [x] I have added tests that prove my fix is effective or that my feature works - [x] New and existing unit tests pass locally with my changes - [ ] This patch was not authored or co-authored using [Generative Tooling](https://www.apache.org/legal/generative-tooling.html) ## 📝 Committer Pre-Merge Checklist - [ ] Pull request title is okay. - [ ] No license issues. - [ ] Milestone correctly set? - [ ] Test coverage is ok - [ ] Assignees are selected. - [ ] Minimum number of approvals - [ ] No changes are requested **Be nice. Be informative.** Closes #5800 from Kwafoor/kyuubi_5467. Closes #5800 c6dd26f93 [wangjunbo] fix 7818ae0c5 [wangjunbo] fix Scala Test 296f08c8c [wangjunbo] remove spark-3.2 gluten test 5a704675d [wangjunbo] [KYUUBI#5467] Integrate Intel Gluten with Spark engine Authored-by: wangjunbo <wangjunbo@qiyi.com> Signed-off-by: ulyssesyou <ulyssesyou@apache.org>
50 lines
1.9 KiB
XML
50 lines
1.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
~ Licensed to the Apache Software Foundation (ASF) under one or more
|
|
~ contributor license agreements. See the NOTICE file distributed with
|
|
~ this work for additional information regarding copyright ownership.
|
|
~ The ASF licenses this file to You under the Apache License, Version 2.0
|
|
~ (the "License"); you may not use this file except in compliance with
|
|
~ the License. You may obtain a copy of the License at
|
|
~
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
~
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
~ See the License for the specific language governing permissions and
|
|
~ limitations under the License.
|
|
-->
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.apache.kyuubi</groupId>
|
|
<artifactId>kyuubi-parent</artifactId>
|
|
<version>1.9.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>integration-tests</artifactId>
|
|
<packaging>pom</packaging>
|
|
<name>Kyuubi Test Integration Tests</name>
|
|
<url>https://kyuubi.apache.org/</url>
|
|
|
|
<modules>
|
|
<module>kyuubi-flink-it</module>
|
|
<module>kyuubi-gluten-it</module>
|
|
<module>kyuubi-hive-it</module>
|
|
<module>kyuubi-trino-it</module>
|
|
<module>kyuubi-jdbc-it</module>
|
|
<module>kyuubi-zookeeper-it</module>
|
|
</modules>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>kubernetes-it</id>
|
|
<modules>
|
|
<module>kyuubi-kubernetes-it</module>
|
|
</modules>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|