-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Fix clickstream instructions #1131
Conversation
Fix some issues with the clickstream instructions. From 4.1 onwards ksql is included with cp, so we don't need a separate step for starting up the ksql server. We also just need to run 'ksql' to start the cli. This patch also removes references to the local quickstart, which has not been working for the last couple releases.
@@ -164,17 +166,11 @@ Load the Streaming Data to KSQL | |||
|
|||
#. Launch the KSQL CLI in Client Server Mode. | |||
|
|||
1. Start the KSQL server. | |||
1. Start the CLI and point it to the server. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because we aren't actually pointing it to the server should we remove that part of the sentence?
@@ -164,17 +166,11 @@ Load the Streaming Data to KSQL | |||
|
|||
#. Launch the KSQL CLI in Client Server Mode. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should just be "Launch the KSQL CLI". The CLI only has no other mode today than client-server.
cc @joel-hamill |
Note:
@rodesai : I think you mean "removes references to the local clickstream demo", right? |
YES - definitely not the local quick start. I’ll update the commit message |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Fix some issues with the clickstream instructions. From 4.1 onwards
ksql is included with cp, so we don't need a separate step for
starting up the ksql server. We also just need to run 'ksql' to
start the cli.
This patch also removes references to the local clickstream, which
has not been working for the last couple releases.