{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":706067257,"defaultBranch":"master","name":"kyuubi","ownerLogin":"labbomb","currentUserCanPush":false,"isFork":true,"isEmpty":false,"createdAt":"2023-10-17T08:40:00.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/15062456?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1699015657.0","currentOid":""},"activityList":{"items":[{"before":"7b9f6dcea7c25176316a86c38d9d4b839fff3660","after":null,"ref":"refs/heads/dev","pushedAt":"2023-11-03T12:47:37.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"labbomb","name":"labbomb","path":"/labbomb","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15062456?s=80&v=4"}},{"before":"edd71d2320ecba6e3c1179cf0a0bdc3c48ded41f","after":"7b9f6dcea7c25176316a86c38d9d4b839fff3660","ref":"refs/heads/dev","pushedAt":"2023-10-25T12:23:13.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"labbomb","name":"labbomb","path":"/labbomb","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15062456?s=80&v=4"},"commit":{"message":"fix: adjust keyword case","shortMessageHtmlLink":"fix: adjust keyword case"}},{"before":"45d999b8827080bf473dcaee88bd8ba8a16b2698","after":"edd71d2320ecba6e3c1179cf0a0bdc3c48ded41f","ref":"refs/heads/dev","pushedAt":"2023-10-25T12:19:39.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"labbomb","name":"labbomb","path":"/labbomb","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15062456?s=80&v=4"},"commit":{"message":"fix: delete some language configs","shortMessageHtmlLink":"fix: delete some language configs"}},{"before":"70edf9f475c58f599ea9e20adecd6ad8180c6b57","after":"45d999b8827080bf473dcaee88bd8ba8a16b2698","ref":"refs/heads/dev","pushedAt":"2023-10-25T12:03:24.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"labbomb","name":"labbomb","path":"/labbomb","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15062456?s=80&v=4"},"commit":{"message":"fix: update license-binary","shortMessageHtmlLink":"fix: update license-binary"}},{"before":"becb4e3a6f7115cd276b51cff67f1da43f922ada","after":"70edf9f475c58f599ea9e20adecd6ad8180c6b57","ref":"refs/heads/dev","pushedAt":"2023-10-25T12:00:27.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"labbomb","name":"labbomb","path":"/labbomb","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15062456?s=80&v=4"},"commit":{"message":"fix: fix some errors","shortMessageHtmlLink":"fix: fix some errors"}},{"before":"d47e7f5c7ea3bb124cf226cbd34bb77561503645","after":"becb4e3a6f7115cd276b51cff67f1da43f922ada","ref":"refs/heads/dev","pushedAt":"2023-10-25T11:53:49.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"labbomb","name":"labbomb","path":"/labbomb","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15062456?s=80&v=4"},"commit":{"message":"fix: fix some errors","shortMessageHtmlLink":"fix: fix some errors"}},{"before":null,"after":"d47e7f5c7ea3bb124cf226cbd34bb77561503645","ref":"refs/heads/dev","pushedAt":"2023-10-25T04:27:50.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"labbomb","name":"labbomb","path":"/labbomb","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15062456?s=80&v=4"},"commit":{"message":"feat: add editor component","shortMessageHtmlLink":"feat: add editor component"}},{"before":"8d2c8d1009791e4d39f858450697a797a6bfbfa7","after":"5cff4fb98cdc8d8a8d9a1c289a17a17a52a787e5","ref":"refs/heads/master","pushedAt":"2023-10-25T02:28:19.000Z","pushType":"push","commitsCount":26,"pusher":{"login":"labbomb","name":"labbomb","path":"/labbomb","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15062456?s=80&v=4"},"commit":{"message":"[KYUUBI #5380][UT] Create PySpark batch jobs tests for RESTful API\n\n### _Why are the changes needed?_\n\nTo close #5380.\n\nAs PySpark jobs become popular approach for data exploring and processing, we need to create tests for creating PySpark jobs.\n\nAccording the existing Spark Jar unit tests, two PySpark job unit test were added, they are all simple PI computing jobs from Spark examples.\n\n#### case1, \"pyspark submit - basic batch rest client with existing resource file\"\nIt's almost same with the spark jar job test case, except the following two points:\n1. param `batchType` should be set to `PYSPARK`, not `SPARK`. please refer to #3836 for detailed information.\n2. For PySpark job,param `className` is useless, should be set to null\n\n#### case2, \"pyspark submit - basic batch rest client with uploading resource file\"\n\nThrough the two test cases, simple PySpark jobs can be submitted normally.\n\n### _How was this patch tested?_\n- [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible\n- [ ] Add screenshots for manual tests if appropriate\n- [x] [Run test](https://kyuubi.readthedocs.io/en/master/contributing/code/testing.html#running-tests) locally before make a pull request\n\n### _Was this patch authored or co-authored using generative AI tooling?_\n\nNo\n\nCloses #5498 from weixi62961/unittest-batchapi-pyspark-simple.\n\nCloses #5380\n\nb693efc1b [Bowen Liang] simplify sparkBatchTestResource\n72a92b5ee [Bowen Liang] Update kyuubi-server/src/test/scala/org/apache/kyuubi/server/rest/client/PySparkBatchRestApiSuite.scala\nb2035a3b2 [weixi] remove no necessary wrapper object \"PySparkJobPI\"\n27d12e8bc [weixi] rename from BatchRestApiPySparkSuite to PySparkBatchRestApiSuite\ne680e604a [weixi] Create a dedicated batch API suite for PySpark jobs.\ndc8b6bfa1 [weixi] add 2 test cases for pyspark batch job submit.\n\nLead-authored-by: weixi \nCo-authored-by: Bowen Liang \nCo-authored-by: Bowen Liang \nSigned-off-by: liangbowen ","shortMessageHtmlLink":"[KYUUBI apache#5380][UT] Create PySpark batch jobs tests for RESTful API"}},{"before":"a1ca90a8b3b866aa3819cbfa707a462a75edcd43","after":null,"ref":"refs/heads/dev","pushedAt":"2023-10-18T13:52:24.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"labbomb","name":"labbomb","path":"/labbomb","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15062456?s=80&v=4"}},{"before":"b1a73c090a0c74d635bd0c4492cf8def997688b2","after":"a1ca90a8b3b866aa3819cbfa707a462a75edcd43","ref":"refs/heads/dev","pushedAt":"2023-10-18T09:43:32.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"labbomb","name":"labbomb","path":"/labbomb","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15062456?s=80&v=4"},"commit":{"message":"fix: fix test error","shortMessageHtmlLink":"fix: fix test error"}},{"before":"f91b7d08ce8c4c251c853d5c620bc857575855ef","after":"b1a73c090a0c74d635bd0c4492cf8def997688b2","ref":"refs/heads/dev","pushedAt":"2023-10-18T09:31:49.000Z","pushType":"push","commitsCount":6,"pusher":{"login":"labbomb","name":"labbomb","path":"/labbomb","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15062456?s=80&v=4"},"commit":{"message":"Merge branch 'dev' of github.com:labbomb/kyuubi into dev","shortMessageHtmlLink":"Merge branch 'dev' of github.com:labbomb/kyuubi into dev"}},{"before":"f7143273a52b1b0735108ef1733781820098aa99","after":"8d2c8d1009791e4d39f858450697a797a6bfbfa7","ref":"refs/heads/master","pushedAt":"2023-10-18T09:28:54.000Z","pushType":"push","commitsCount":5,"pusher":{"login":"labbomb","name":"labbomb","path":"/labbomb","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15062456?s=80&v=4"},"commit":{"message":"[KYUUBI #5449] Bump Delta Lake 3.0.0\n\n### _Why are the changes needed?_\nclose [#5449](https://github.com/apache/kyuubi/issues/5449).\nUnlike the initial preview release, Delta Spark 3.0.0 is now built on top of Apache Spark™ 3.5.\nDelta Spark maven artifact has been renamed from delta-core to delta-spark.\nhttps://github.com/delta-io/delta/releases/tag/v3.0.0\n\n### _How was this patch tested?_\n- [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible\n\n- [ ] Add screenshots for manual tests if appropriate\n\n- [ ] [Run test](https://kyuubi.readthedocs.io/en/master/contributing/code/testing.html#running-tests) locally before make a pull request\n\n### _Was this patch authored or co-authored using generative AI tooling?_\nNo\n\nCloses #5450 from zml1206/5449.\n\nCloses #5449\n\na7969ed6a [zml1206] bump Delta Lake 3.0.0\n\nAuthored-by: zml1206 \nSigned-off-by: Cheng Pan ","shortMessageHtmlLink":"[KYUUBI apache#5449] Bump Delta Lake 3.0.0"}},{"before":null,"after":"f91b7d08ce8c4c251c853d5c620bc857575855ef","ref":"refs/heads/dev","pushedAt":"2023-10-18T09:25:20.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"labbomb","name":"labbomb","path":"/labbomb","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15062456?s=80&v=4"},"commit":{"message":"feat: adjust the file directory structure","shortMessageHtmlLink":"feat: adjust the file directory structure"}}],"hasNextPage":false,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"Y3Vyc29yOnYyOpK7MjAyMy0xMS0wM1QxMjo0NzozNy4wMDAwMDBazwAAAAOmuD56","startCursor":"Y3Vyc29yOnYyOpK7MjAyMy0xMS0wM1QxMjo0NzozNy4wMDAwMDBazwAAAAOmuD56","endCursor":"Y3Vyc29yOnYyOpK7MjAyMy0xMC0xOFQwOToyNToyMC4wMDAwMDBazwAAAAOZyzfY"}},"title":"Activity · labbomb/kyuubi"}