Skip to content

Commit 5251dfa

Browse files
committed
Prepare for 2.2.3 release
1 parent c5b1de6 commit 5251dfa

File tree

2 files changed

+9
-73
lines changed

2 files changed

+9
-73
lines changed

CHANGELOG

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Version 2.2.3 (2022-09-27)
2+
--------------------------
3+
Fix: loader cannot start with InitialPosition = AT_TIMESTAMP (#267)
4+
Bump scala version to 2.13.9 (#270)
5+
16
Version 2.2.2 (2022-07-21)
27
--------------------------
38
Ensure docker image has latest libfreetype6 version (#265)

README.md

+4-73
Original file line numberDiff line numberDiff line change
@@ -22,75 +22,6 @@ The compression process generates both compressed .lzo files and small .lzo.inde
2222

2323
The records are treated as byte arrays containing UTF-8 encoded strings (whether CSV, JSON or TSV). New lines are used to separate records written to a file. This format can be used with the Snowplow Kinesis Enriched stream, among other streams.
2424

25-
## Quickstart
26-
27-
#### Docker
28-
29-
We publish three flavours of the docker image:
30-
- Pull the `:2.2.1` tag if you only need GZip output format
31-
- Pull the `:2.2.1-lzo` tag if you also need LZO output format
32-
- Pull the `:2.2.1-distroless` tag for an lightweight alternative to `:2.2.1`
33-
34-
35-
```bash
36-
docker run snowplow/snowplow-s3-loader:2.2.1 --help
37-
docker run snowplow/snowplow-s3-loader:2.2.1-lzo --help
38-
docker run snowplow/snowplow-s3-loader:2.2.1-distroless --help
39-
```
40-
41-
#### Download jar
42-
43-
```bash
44-
curl -Lo snowplow-s3-loader.jar https://github.com/snowplow/snowplow-s3-loader/releases/download/2.2.1/snowplow-s3-loader-2.2.1.jar
45-
java -jar snowplow-s3-loader.jar --help
46-
```
47-
48-
#### Build it yourself
49-
50-
Assuming git and [SBT][sbt] installed:
51-
52-
```bash
53-
$ git clone https://github.com/snowplow/snowplow-s3-loader.git
54-
$ cd snowplow-s3-loader
55-
$ sbt assembly
56-
```
57-
58-
## Prerequisites
59-
60-
You must have `lzop` and `lzop-dev` installed. In Ubuntu, install them like this:
61-
62-
```bash
63-
$ sudo apt-get install lzop liblzo2-dev
64-
```
65-
66-
## Command Line Interface
67-
68-
The Snowplow S3 Loader has the following command-line interface:
69-
70-
```
71-
snowplow-s3-loader: Version 2.2.1
72-
73-
Usage: snowplow-s3-loader [options]
74-
75-
--config <filename>
76-
```
77-
78-
## Running
79-
80-
Create your own config file:
81-
82-
```bash
83-
$ cp config/config.hocon.sample my.conf
84-
```
85-
86-
You will need to edit all fields in the config. Consult [the configuration reference][config] of the setup guide on how to fill in the fields.
87-
88-
Next, start the sink, making sure to specify your new config file:
89-
90-
```bash
91-
$ java -jar snowplow-s3-loader-2.2.1.jar --config my.conf
92-
```
93-
9425
## Find out more
9526

9627
| Technical Docs | Setup Guide | Roadmap | Contributing |
@@ -114,7 +45,7 @@ limitations under the License.
11445
[travis-image]: https://travis-ci.org/snowplow/snowplow-s3-loader.png?branch=master
11546
[travis]: http://travis-ci.org/snowplow/snowplow-s3-loader
11647

117-
[release-image]: http://img.shields.io/badge/release-2.2.1-blue.svg?style=flat
48+
[release-image]: http://img.shields.io/badge/release-2.2.3-blue.svg?style=flat
11849
[releases]: https://github.com/snowplow/snowplow-s3-loader/releases
11950

12051
[license-image]: http://img.shields.io/badge/license-Apache--2-blue.svg?style=flat
@@ -128,10 +59,10 @@ limitations under the License.
12859
[s3]: http://aws.amazon.com/s3/
12960
[sbt]:https://www.scala-sbt.org/
13061

131-
[config]: https://docs.snowplowanalytics.com/docs/pipeline-components-and-applications/loaders-storage-targets/s3-loader/configuration-reference/
132-
[techdocs]: https://docs.snowplowanalytics.com/docs/pipeline-components-and-applications/loaders-storage-targets/s3-loader/
62+
[config]: https://docs.snowplow.io/docs/pipeline-components-and-applications/loaders-storage-targets/s3-loader/configuration-reference/
63+
[techdocs]: https://docs.snowplow.io/docs/pipeline-components-and-applications/loaders-storage-targets/s3-loader/
13364
[roadmap]: https://github.com/snowplow/snowplow/projects/7
134-
[contributing]: https://docs.snowplowanalytics.com/docs/contributing/
65+
[contributing]: https://docs.snowplow.io/docs/contributing/
13566

13667
[techdocs-image]: https://d3i6fms1cm1j0i.cloudfront.net/github/images/techdocs.png
13768
[setup-image]: https://d3i6fms1cm1j0i.cloudfront.net/github/images/setup.png

0 commit comments

Comments
 (0)