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

Small typo fixes #66

Merged
merged 1 commit into from
Jun 28, 2019
Merged
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Refer [concepts](doc/CONCEPTS.md) to understand the concepts referred to in this

## Usage

Upgarde Guide to 3.x refer[here](UpgradeGuide.md)
Upgrade Guide to 3.x refer [here](UpgradeGuide.md)

Add this to your project.clj:

Expand Down Expand Up @@ -88,7 +88,7 @@ To start a stream (a thread that reads messages from Kafka), add this to your co
* :success - The message was successfuly processed and the stream should continue to the next message
* :failure - The message failed to be processed and it should be reported to sentry, it will not be retried.
* :retry - The message failed to be processed and it should be retried.
* :skip - The message should be skipped without reporting it's failure or retrying the message
* :skip - The message should be skipped without reporting its failure or retrying the message
* The start-fn is run at the application startup and can be used to initialize connection to databases, http clients, thread-pools, etc.
* The stop-fn is run at shutdown and facilitates graceful shutdown, for example, releasing db connections, shutting down http servers etc.
* Ziggurat enables reading from multiple streams and applying same/different functions to the messages. `:stream-id` is a unique identifier per stream. All configs, queues and metrics will be namespaced under this id.
Expand Down