https://github.com/scylladb/serverless-examples
Code examples for ScyllaDB Cloud Serverless platform.
https://github.com/scylladb/serverless-examples
Last synced: 30 days ago
JSON representation
Code examples for ScyllaDB Cloud Serverless platform.
- Host: GitHub
- URL: https://github.com/scylladb/serverless-examples
- Owner: scylladb
- License: apache-2.0
- Created: 2022-12-23T09:13:08.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-27T13:38:30.000Z (9 months ago)
- Last Synced: 2025-05-07T19:11:57.576Z (30 days ago)
- Language: Java
- Size: 22.5 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# serverless-examples
Code examples for ScyllaDB Cloud Serverless platform.### gohelloserverless
Once a connection bundle file has been saved on a local disk, run the following:
```bash
cd gohelloserverless
go run main.go -bundle connection-bundle-cluster-name.yaml
```### jhelloserverless
We are using maven assembly plugin to build a jar with all dependencies needed to run.
Remember to provide the path to a valid connection bundle:```bash
cd jhelloserverless
mvn clean compile assembly:single
java -cp target/jhelloserverless-1.0-SNAPSHOT-jar-with-dependencies.jar com.scylladb.JHelloServerless --bundle /path/to/bundle
```