You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Preparing for release 0.7.0
* Updating the package with release notes, the dependencies and the module version.
* Adding the comment for minimum required JDK version.
* Updating all the Java version mentions in the README.md.
* Updating the formatting of the file.
* Added more information to the readme, and formatted it again.
* Adding information about the pull requests and issues.
* Making changes as per the pr comments.
Copy file name to clipboardExpand all lines: README.md
+15-2Lines changed: 15 additions & 2 deletions
Display the source diff
Display the rich diff
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
151
151
152
152
To get the sample KCL application and bootstrap script, you need git.
153
153
154
-
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.
154
+
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.
155
155
156
156
### Setting Up the Environment
157
157
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
225
225
You can delete these using the AWS Management Console.
226
226
227
227
## Running on Amazon EC2
228
-
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.
228
+
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.
229
229
230
230
```sh
231
231
# install node.js, npm and git
@@ -272,6 +272,19 @@ In this release, we have abstracted these implementation details away and expose
272
272
273
273
## Release Notes
274
274
275
+
### Release 0.7.0 (August 2, 2017)
276
+
* Updated the dependency on [Amazon Kinesis Client for Java][amazon-kcl-github] to 1.8.1.
277
+
This adds support for setting a timeout when dispatching records to the node.js record processor.
278
+
If the record processor doesn't respond in the given time the Java processor is terminated.
279
+
The timeout for the this can be set by adding `timeoutInSeconds = <timeout value>`. The default for this is no timeout.
280
+
__Setting this can cause the KCL to exit suddenly, before using this ensure that you have an automated restart for your application__
281
+
__Updating minimum requirement for the JDK version to 8__
0 commit comments