You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2024/02/21 15:29:39 UTC

(camel) 01/09: CAMEL-20410: documentation fixes for camel-parquet-avro

This is an automated email from the ASF dual-hosted git repository.

orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 66e47fbee299b8ee0a36210d7c31ccc82e685c06
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Wed Feb 21 15:47:08 2024 +0100

    CAMEL-20410: documentation fixes for camel-parquet-avro
    
    - Fixed samples
    - Fixed grammar and typos
    - Fixed punctuation
    - Added and/or fixed links
    - Converted to use tabs
---
 .../src/main/docs/parquetAvro-dataformat.adoc               | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/components/camel-parquet-avro/src/main/docs/parquetAvro-dataformat.adoc b/components/camel-parquet-avro/src/main/docs/parquetAvro-dataformat.adoc
index a719c873c14..236b6aa1dad 100644
--- a/components/camel-parquet-avro/src/main/docs/parquetAvro-dataformat.adoc
+++ b/components/camel-parquet-avro/src/main/docs/parquetAvro-dataformat.adoc
@@ -11,7 +11,9 @@
 
 *Since Camel {since}*
 
-The ParquetAvro Data Format is a Camel Framework's data format implementation based on parquet-avro library for (de)/serialization purposes. Messages can be unmarshalled to Avro's GenericRecords or plain Java objects (POJOs). By the help of Camel's routing engine and data transformations you can then play with them and apply customised formatting and call other Camel Component's to convert and send messages to upstream systems.
+The ParquetAvro Data Format is a Camel Framework's data format implementation based on the parquet-avro library for (de)/serialization purposes.
+Messages can be unmarshalled to Avro's GenericRecords or plain Java objects (POJOs).
+With the help of Camel's routing engine and data transformations, you can then play with them and apply customised formatting and call other Camel Components to convert and send messages to upstream systems.
 
 == Parquet Data Format Options
 
@@ -21,7 +23,7 @@ include::partial$dataformat-options.adoc[]
 
 == Unmarshal
 
-There are ways to unmarshal parquet files/structures (Usually binary parquet files) where camel DSL allows
+There are ways to unmarshal parquet files/structures, usually binary parquet files, where camel DSL allows.
 
 In this first example we unmarshal file payload to OutputStream and send it to mock endpoint, then we will be able to get GenericRecord or POJO (it could be a list if that is coming through)
 
@@ -32,7 +34,7 @@ from("direct:unmarshal").unmarshal(parquet).to("mock:unmarshal");
 
 == Marshal
 
-Marshalling is the reverse process of unmarshalling so when you have your GenericRecord or POJO and marshal it you will get the parquet formatted output stream on your producer endpoint.
+Marshalling is the reverse process of unmarshalling, so when you have your GenericRecord or POJO and marshal it, you will get the parquet-formatted output stream on your producer endpoint.
 
 [source,java]
 -----------------------------------------------------------------------
@@ -44,9 +46,8 @@ from("direct:marshal").marshal(parquet).to("mock:marshal");
 To use parquet-avro data format in your camel routes you need to add a dependency on
 *camel-parquet-avro* which implements this data format.
 
-If you use Maven you can just add the following to your `pom.xml`,
-substituting the version number for the latest & greatest release (see
-the download page for the latest versions).
+If you use Maven you can add the following to your `pom.xml`,
+substituting the version number for the latest & greatest release.
 
 [source,xml]
 ----------------------------------------------------------