-
Notifications
You must be signed in to change notification settings - Fork 203
Release 0.7.0 #41
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
Merged
Merged
Release 0.7.0 #41
Changes from 6 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
3913158
Updating the package with release notes, the dependencies and the mod…
5203647
Adding the comment for minimum required JDK version.
f3191bf
Updating all the Java version mentions in the README.md.
4c0de8a
Updating the formatting of the file.
062e59e
Added more information to the readme, and formatted it again.
01bb44d
Adding information about the pull requests and issues.
37c3d2a
Making changes as per the pr comments.
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -151,7 +151,7 @@ Before you begin, Node.js and NPM must be installed on your system. For download | |
|
|
||
| To get the sample KCL application and bootstrap script, you need git. | ||
|
|
||
| Amazon KCL for Node.js uses [MultiLangDaemon][multi-lang-daemon] provided by [Amazon KCL for Java][amazon-kcl-github]. You also need Java version 1.7 or higher installed. | ||
| Amazon KCL for Node.js uses [MultiLangDaemon][multi-lang-daemon] provided by [Amazon KCL for Java][amazon-kcl-github]. You also need Java version 1.8 or higher installed. | ||
|
|
||
| ### Setting Up the Environment | ||
| Before running the samples, make sure that your environment is configured to allow the samples to use your [AWS Security Credentials](http://docs.aws.amazon.com/general/latest/gr/aws-security-credentials.html), which are used by [MultiLangDaemon][multi-lang-daemon] to interact with AWS services. | ||
|
|
@@ -225,7 +225,7 @@ This sample application creates an [Amazon Kinesis][amazon-kinesis] stream, send | |
| You can delete these using the AWS Management Console. | ||
|
|
||
| ## Running on Amazon EC2 | ||
| Log into an Amazon EC2 instance running Amazon Linux, then perform the following steps to prepare your environment for running the sample application. Note the version of Java that ships with Amazon Linux can be found at `/usr/bin/java` and should be 1.7 or greater. | ||
| Log into an Amazon EC2 instance running Amazon Linux, then perform the following steps to prepare your environment for running the sample application. Note the version of Java that ships with Amazon Linux can be found at `/usr/bin/java` and should be 1.8 or greater. | ||
|
|
||
| ```sh | ||
| # install node.js, npm and git | ||
|
|
@@ -272,6 +272,18 @@ In this release, we have abstracted these implementation details away and expose | |
|
|
||
| ## Release Notes | ||
|
|
||
| ### Release 0.7.0 (August 2, 2017) | ||
| * Updated the dependency on [Amazon Kinesis Client for Java][amazon-kcl-github] to 1.8.1. | ||
| Support for timeout calls to MultiLang Daemon. | ||
| If the record processor doesn't respond in the given time the Java processor is terminated. | ||
| The timeout for the this can be set by adding `timeoutInSeconds = <timeout value>`. The default for this is no timeout. | ||
| __Setting this can cause the KCL to exit suddenly, before using this ensure that you have an automated restart for your application__ | ||
| __Updating minimum requirement for the JDK version to 8__ | ||
| * [Amazon Kinesis Client Issue #185](https://github.com/awslabs/amazon-kinesis-client/issues/185) | ||
| * [PR #41](https://github.com/awslabs/amazon-kinesis-client-nodejs/pull/41) | ||
| * Added the feature for graceful shutdown. | ||
|
||
| * [PR #39](https://github.com/awslabs/amazon-kinesis-client-nodejs/pull/39) | ||
|
|
||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add the changes for graceful shutdown as well. |
||
| ### Release 0.6.0 (December 12, 2016) | ||
| * Updated the dependency on [Amazon Kinesis Client for Java][amazon-kcl-github] to 1.7.2. | ||
| * PR #23 | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 adds support for setting a timeout when dispatching records to the node.js record processor.