Skip to content

Commit c685aa9

Browse files
committed
[SPARK-54305][PySpark][Streaming] Add admission control support for Python streaming data sources
2 parents 3f5cb36 + 0311f44 commit c685aa9

File tree

8 files changed

+1710
-11
lines changed

8 files changed

+1710
-11
lines changed

.cursor-rules.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
rules:
2+
- description: "Do not suggest whitespace or formatting changes to existing code if it's not adding any functionality."
3+
pattern: ".*"
4+
actions:
5+
- "ignore"

.github/workflows/build_and_test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1325,6 +1325,11 @@ jobs:
13251325
key: k8s-integration-coursier-${{ hashFiles('**/pom.xml', '**/plugins.sbt') }}
13261326
restore-keys: |
13271327
k8s-integration-coursier-
1328+
- name: Free up disk space
1329+
run: |
1330+
if [ -f ./dev/free_disk_space ]; then
1331+
./dev/free_disk_space
1332+
fi
13281333
- name: Install Java ${{ inputs.java }}
13291334
uses: actions/setup-java@v4
13301335
with:

0 commit comments

Comments
 (0)