|
17 | 17 | ~ under the License. |
18 | 18 | --> |
19 | 19 |
|
20 | | -Parquet Java (formerly Parquet MR) [](https://github.com/apache/parquet-java/actions) |
| 20 | +Parquet Java (formerly Parquet MR) [](https://github.com/apache/parquet-java/actions/workflows/ci-hadoop3.yml) |
21 | 21 | ====== |
22 | 22 |
|
23 | 23 | This repository contains a Java implementation of [Apache Parquet](https://parquet.apache.org/) |
24 | 24 |
|
25 | 25 | Apache Parquet is an open source, column-oriented data file format |
26 | 26 | designed for efficient data storage and retrieval. It provides high |
27 | 27 | performance compression and encoding schemes to handle complex data in |
28 | | -bulk and is supported in many programming language and analytics |
| 28 | +bulk and is supported in many programming languages and analytics |
29 | 29 | tools. |
30 | 30 |
|
31 | 31 | The [parquet-format](https://github.com/apache/parquet-format) |
32 | | -repository contains the file format specificiation. |
| 32 | +repository contains the file format specification. |
33 | 33 |
|
34 | 34 | Parquet uses the [record shredding and assembly algorithm](https://github.com/julienledem/redelm/wiki/The-striping-and-assembly-algorithms-from-the-Dremel-paper) described in the Dremel paper to represent nested structures. |
35 | 35 | You can find additional details about the format and intended use cases in our [Hadoop Summit 2013 presentation](http://www.slideshare.net/julienledem/parquet-hadoop-summit-2013) |
@@ -166,29 +166,29 @@ The build runs in [GitHub Actions](https://github.com/apache/parquet-java/action |
166 | 166 |
|
167 | 167 | ## Add Parquet as a dependency in Maven |
168 | 168 |
|
169 | | -The current release is version `1.14.3`. |
| 169 | +The current release is version `1.14.4`. |
170 | 170 |
|
171 | 171 | ```xml |
172 | 172 | <dependencies> |
173 | 173 | <dependency> |
174 | 174 | <groupId>org.apache.parquet</groupId> |
175 | 175 | <artifactId>parquet-common</artifactId> |
176 | | - <version>1.14.3</version> |
| 176 | + <version>1.14.4</version> |
177 | 177 | </dependency> |
178 | 178 | <dependency> |
179 | 179 | <groupId>org.apache.parquet</groupId> |
180 | 180 | <artifactId>parquet-encoding</artifactId> |
181 | | - <version>1.14.3</version> |
| 181 | + <version>1.14.4</version> |
182 | 182 | </dependency> |
183 | 183 | <dependency> |
184 | 184 | <groupId>org.apache.parquet</groupId> |
185 | 185 | <artifactId>parquet-column</artifactId> |
186 | | - <version>1.14.3</version> |
| 186 | + <version>1.14.4</version> |
187 | 187 | </dependency> |
188 | 188 | <dependency> |
189 | 189 | <groupId>org.apache.parquet</groupId> |
190 | 190 | <artifactId>parquet-hadoop</artifactId> |
191 | | - <version>1.14.3</version> |
| 191 | + <version>1.14.4</version> |
192 | 192 | </dependency> |
193 | 193 | </dependencies> |
194 | 194 | ``` |
|
0 commit comments