Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump spark-launcher_2.12 from 3.2.1 to 3.3.0 in /server #53

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish-registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
spark_version: [ 3.0.3, 3.1.3, 3.2.1 ]
spark_version: [ 3.1.3, 3.2.1, 3.3.0 ]
steps:
- uses: docker/setup-buildx-action@v1
- uses: docker/login-action@v1
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ docker build -t lighter .

### Spark versions

Lighter will always support latest patch version for all officially recommended [Apache Spark](https://spark.apache.org/) releases i.e.: 3.0.3 and 3.1.2.
Lighter will always try to support the latest patch version for all officially recommended [Apache Spark](https://spark.apache.org/) releases i.e.: 3.1.3, 3.2.1 and 3.3.0.
pdambrauskas marked this conversation as resolved.
Show resolved Hide resolved

### Contributing

See [Contribution guide](./docs/CONTRIBUTING.md)

## License

Lighter is [MIT](./LICENSE.txt) liceansed.
Lighter is [MIT](./LICENSE.txt) licensed.
2 changes: 1 addition & 1 deletion server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ micronaut {
}
mainClassName = "com.exacaster.lighter.Application"

def sparkVersion = project.hasProperty("SPARK_VERSION") ? project.getProperty("SPARK_VERSION") : '3.2.1'
def sparkVersion = project.hasProperty("SPARK_VERSION") ? project.getProperty("SPARK_VERSION") : '3.3.0'
def hadoopVersion = '3.3.3'
def k8sClientVersion = '5.12.2'
def shedlockVersion = '4.37.0'
Expand Down