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
We're happy to announce the release of Conduit [v0.14.0](https://github.com/ConduitIO/conduit/releases/tag/v0.14.0), introducing the [`split`](/docs/using/processors/builtin/split) and [`clone`](/docs/using/processors/builtin/clone) processors, which enables one source record to trigger a write of multiple records in the destination.
9
+
10
+
:::tip
11
+
The new processors return multiple records, which is currently only supported in the new v2 engine. If you want to try them out, you need to start Conduit using `conduit run --preview.pipeline-arch-v2`.
Every second, you should see a JSON object like this:
138
+
This log entry is Conduit's way of showing you the data that was generated by the generator connector. If we look into the `record` field, we can see the following JSON object:
Copy file name to clipboardExpand all lines: docs/1-using/0-installing-and-running.mdx
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,12 +63,12 @@ First, download
63
63
the [latest Conduit release](https://github.com/ConduitIO/conduit/releases/latest)
64
64
for your platform.
65
65
66
-
Let's say you downloaded `conduit_0.13.6_Windows_x86_64.zip`.
66
+
Let's say you downloaded `conduit_0.14.0_Windows_x86_64.zip`.
67
67
68
68
### Unzip the archive
69
69
70
70
```shell
71
-
tar -xf conduit_0.13.6_Windows_x86_64.zip
71
+
tar -xf conduit_0.14.0_Windows_x86_64.zip
72
72
```
73
73
74
74
### Run
@@ -122,7 +122,7 @@ Before you can build Conduit from source, you need to have the latest version of
122
122
1. Start by downloading the source code from the latest stable release on the Conduit [Releases Page](https://github.com/ConduitIO/conduit/releases/latest). Alternatively, you can run this command to automatically download the latest stable source to your current directory:
0 commit comments