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

Update getting started local tutorial to clarify required JDK version. #607

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
7 changes: 5 additions & 2 deletions docs/docs/getting-started/tutorials/local.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

## Prerequisites

JDK 8 or higher
JDK 8 (newer versions may not be supported)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be better to use the java toolchain support in gradle to define this directly and get rid of these instructions altogether. https://docs.gradle.org/current/userguide/toolchains.html


!!! tip
Some users find https://sdkman.io/ helpful for managing multiple Java versions.

## Build and run the synthetic-sourcejob sample

Expand Down Expand Up @@ -43,7 +46,7 @@ Such an MQL query would like like this.
```bash
select country from stream where status==500
```
In another terminal window curl this port
In another terminal window curl this port (note that your port will likely be different)
```bash
$ curl "localhost:8436?subscriptionId=nj&criterion=select%20country%20from%20stream%20where%20status%3D%3D500&clientId=nj2"
```
Expand Down
Loading