Skip to content

Commit abe35df

Browse files
dxichenxinyuiscool
authored andcommitted
Release version updates (apache#944)
1 parent 98355db commit abe35df

File tree

13 files changed

+30
-26
lines changed

13 files changed

+30
-26
lines changed

docs/learn/documentation/versioned/deployment/standalone.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Let us now build the `hello-samza` project from its sources.
6464
```bash
6565
mvn clean package
6666
mkdir -p deploy/samza
67-
tar -xvf ./target/hello-samza-1.0.0-dist.tar.gz -C deploy/samza
67+
tar -xvf ./target/hello-samza-1.1.0-dist.tar.gz -C deploy/samza
6868
```
6969

7070
#### Running the application

docs/learn/tutorials/versioned/deploy-samza-job-from-hdfs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ This tutorial uses [hello-samza](../../../startup/hello-samza/{{site.version}}/)
2424
### Upload the package
2525

2626
{% highlight bash %}
27-
hadoop fs -put ./target/hello-samza-1.0.0-dist.tar.gz /path/for/tgz
27+
hadoop fs -put ./target/hello-samza-1.1.0-dist.tar.gz /path/for/tgz
2828
{% endhighlight %}
2929

3030
### Add HDFS configuration

docs/learn/tutorials/versioned/deploy-samza-to-CDH.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ mvn clean package -Dhadoop.version=cdh5.4.0
3434
There are a few ways of uploading the package to the cluster's HDFS. If you do not have the job package in your cluster, **scp** from you local machine to the cluster. Then run
3535

3636
{% highlight bash %}
37-
hadoop fs -put path/to/hello-samza-1.0.0-dist.tar.gz /path/for/tgz
37+
hadoop fs -put path/to/hello-samza-1.1.0-dist.tar.gz /path/for/tgz
3838
{% endhighlight %}
3939

4040
### Get Deploying Scripts
4141

4242
Untar the job package (assume you will run from the current directory)
4343

4444
{% highlight bash %}
45-
tar -xvf path/to/samza-job-package-1.0.0-dist.tar.gz -C ./
45+
tar -xvf path/to/samza-job-package-1.1.0-dist.tar.gz -C ./
4646
{% endhighlight %}
4747

4848
### Add Package Path to Properties File

docs/learn/tutorials/versioned/hello-samza-high-level-yarn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Then, you can continue w/ the following command in hello-samza project:
6363
{% highlight bash %}
6464
mvn clean package
6565
mkdir -p deploy/samza
66-
tar -xvf ./target/hello-samza-1.0.1-SNAPSHOT-dist.tar.gz -C deploy/samza
66+
tar -xvf ./target/hello-samza-1.1.1-SNAPSHOT-dist.tar.gz -C deploy/samza
6767
{% endhighlight %}
6868

6969
### Run a Samza Application

docs/learn/tutorials/versioned/hello-samza-high-level-zk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ With the environment setup complete, let us move on to building the hello-samza
5959
{% highlight bash %}
6060
mvn clean package
6161
mkdir -p deploy/samza
62-
tar -xvf ./target/hello-samza-1.0.1-SNAPSHOT-dist.tar.gz -C deploy/samza
62+
tar -xvf ./target/hello-samza-1.1.1-SNAPSHOT-dist.tar.gz -C deploy/samza
6363
{% endhighlight %}
6464

6565
We are now all set to deploy the application locally.

docs/learn/tutorials/versioned/remote-debugging-samza.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Once the grid starts, you can start the wikipedia-feed Samza job.
8383
{% highlight bash %}
8484
mvn clean package
8585
mkdir -p deploy/samza
86-
tar -xvf ./target/hello-samza-1.0.0-dist.tar.gz -C deploy/samza
86+
tar -xvf ./target/hello-samza-1.1.0-dist.tar.gz -C deploy/samza
8787
deploy/samza/bin/run-job.sh --config-factory=org.apache.samza.config.factories.PropertiesConfigFactory --config-path=file://$PWD/deploy/samza/config/wikipedia-feed.properties
8888
{% endhighlight %}
8989

docs/learn/tutorials/versioned/run-in-multi-node-yarn.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,15 +145,15 @@ vi src/main/config/wikipedia-feed.properties
145145
Change the yarn.package.path property to be:
146146

147147
{% highlight jproperties %}
148-
yarn.package.path=http://yourHostname:8000/target/hello-samza-1.0.0-dist.tar.gz
148+
yarn.package.path=http://yourHostname:8000/target/hello-samza-1.1.0-dist.tar.gz
149149
{% endhighlight %}
150150

151151
3\. Compile hello-samza.
152152

153153
{% highlight bash %}
154154
mvn clean package
155155
mkdir -p deploy/samza
156-
tar -xvf ./target/hello-samza-1.0.0-dist.tar.gz -C deploy/samza
156+
tar -xvf ./target/hello-samza-1.1.0-dist.tar.gz -C deploy/samza
157157
{% endhighlight %}
158158

159159
4\. Deploy Samza job package to Http server..

docs/learn/tutorials/versioned/samza-rest-getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Run the following commands:
4848
{% highlight bash %}
4949
cd samza-rest/build/distributions/
5050
mkdir -p deploy/samza-rest
51-
tar -xvf ./samza-rest-1.0.1-SNAPSHOT.tgz -C deploy/samza-rest
51+
tar -xvf ./samza-rest-1.1.1-SNAPSHOT.tgz -C deploy/samza-rest
5252
{% endhighlight %}
5353

5454
#### Configure the Installations Path

docs/startup/download/index.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,14 @@ Starting from 2016, Samza will begin requiring JDK8 or higher. Please see [this
3131

3232
Samza tools package contains command line tools that user can run to use Samza and it's input/output systems.
3333

34+
* [samza-tools-1.1.0.tgz](http://www-us.apache.org/dist/samza/1.1.0/samza-tools-1.1.0.tgz)
35+
* [samza-tools-1.0.0.tgz](http://www-us.apache.org/dist/samza/1.0.0/samza-tools-1.0.0.tgz)
3436
* [samza-tools-0.14.1.tgz](http://www-us.apache.org/dist/samza/0.14.1/samza-tools-0.14.1.tgz)
3537

3638
### Source Releases
3739

40+
* [samza-sources-1.1.0.tgz](http://www.apache.org/dyn/closer.lua/samza/1.1.0)
41+
* [samza-sources-1.0.0.tgz](http://www.apache.org/dyn/closer.lua/samza/1.0.0)
3842
* [samza-sources-0.14.1.tgz](http://www.apache.org/dyn/closer.lua/samza/0.14.1)
3943
* [samza-sources-0.14.0.tgz](http://www.apache.org/dyn/closer.lua/samza/0.14.0)
4044
* [samza-sources-0.13.1.tgz](http://www.apache.org/dyn/closer.lua/samza/0.13.1)
@@ -61,50 +65,50 @@ A Maven-based Samza project can pull in all required dependencies Samza dependen
6165
<dependency>
6266
<setId>org.apache.samza</setId>
6367
<artifactId>samza-api</artifactId>
64-
<version>0.14.1</version>
68+
<version>1.1.0</version>
6569
</dependency>
6670
<dependency>
6771
<setId>org.apache.samza</setId>
6872
<artifactId>samza-core_2.11</artifactId>
69-
<version>0.14.1</version>
73+
<version>1.1.0</version>
7074
<scope>runtime</scope>
7175
</dependency>
7276
<dependency>
7377
<setId>org.apache.samza</setId>
7478
<artifactId>samza-shell</artifactId>
7579
<classifier>dist</classifier>
7680
<type>tgz</type>
77-
<version>0.14.1</version>
81+
<version>1.1.0</version>
7882
<scope>runtime</scope>
7983
</dependency>
8084
<dependency>
8185
<setId>org.apache.samza</setId>
8286
<artifactId>samza-yarn_2.11</artifactId>
83-
<version>0.14.1</version>
87+
<version>1.1.0</version>
8488
<scope>runtime</scope>
8589
</dependency>
8690
<dependency>
8791
<setId>org.apache.samza</setId>
8892
<artifactId>samza-kv_2.11</artifactId>
89-
<version>0.14.1</version>
93+
<version>1.1.0</version>
9094
<scope>runtime</scope>
9195
</dependency>
9296
<dependency>
9397
<setId>org.apache.samza</setId>
9498
<artifactId>samza-kv-rocksdb_2.11</artifactId>
95-
<version>0.14.1</version>
99+
<version>1.1.0</version>
96100
<scope>runtime</scope>
97101
</dependency>
98102
<dependency>
99103
<setId>org.apache.samza</setId>
100104
<artifactId>samza-kv-inmemory_2.11</artifactId>
101-
<version>0.14.1</version>
105+
<version>1.1.0</version>
102106
<scope>runtime</scope>
103107
</dependency>
104108
<dependency>
105109
<setId>org.apache.samza</setId>
106110
<artifactId>samza-kafka_2.11</artifactId>
107-
<version>0.14.1</version>
111+
<version>1.1.0</version>
108112
<scope>runtime</scope>
109113
</dependency>
110114
{% endhighlight %}

docs/startup/hello-samza/versioned/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Then, you can continue w/ the following command in hello-samza project:
6161
{% highlight bash %}
6262
mvn clean package
6363
mkdir -p deploy/samza
64-
tar -xvf ./target/hello-samza-1.0.1-SNAPSHOT-dist.tar.gz -C deploy/samza
64+
tar -xvf ./target/hello-samza-1.1.1-SNAPSHOT-dist.tar.gz -C deploy/samza
6565
{% endhighlight %}
6666

6767
### Run a Samza Job

0 commit comments

Comments
 (0)