yq/pkg/yqlib/doc/Reduce.md

77 lines
1.8 KiB
Markdown
Raw Normal View History

2021-02-15 05:38:53 +00:00
Reduce is a powerful way to process a collection of data into a new form.
2021-02-15 06:31:12 +00:00
```
<exp> as $<name> ireduce (<init>; <block>)
```
2021-02-15 05:38:53 +00:00
2021-02-15 06:31:12 +00:00
e.g.
```
.[] as $item ireduce (0; . + $item)
```
On the LHS we are configuring the collection of items that will be reduced `<exp>` as well as what each element will be called `$<name>`. Note that the array has been splatted into its individual elements.
2021-02-15 07:23:50 +00:00
On the RHS there is `<init>`, the starting value of the accumulator and `<block>`, the expression that will update the accumulator for each element in the collection. Note that within the block expression, `.` will evaluate to the current value of the accumulator.
2021-02-15 05:38:53 +00:00
2021-02-15 06:31:12 +00:00
## yq vs jq syntax
Reduce syntax in `yq` is a little different from `jq` - as `yq` (currently) isn't as sophisticated as `jq` and its only supports infix notation (e.g. a + b, where the operator is in the middle of the two parameters) - where as `jq` uses a mix of infix notation with _prefix_ notation (e.g. `reduce a b` is like writing `+ a b`).
2021-02-15 07:23:50 +00:00
To that end, the reduce operator is called `ireduce` for backwards compatability if a `jq` like prefix version of `reduce` is ever added.
2021-02-15 05:38:53 +00:00
## Sum numbers
Given a sample.yml file of:
```yaml
- 10
- 2
- 5
- 3
```
then
```bash
yq eval '.[] as $item ireduce (0; . + $item)' sample.yml
```
will output
```yaml
20
```
2021-02-15 07:23:50 +00:00
## Merge all yaml files together
2021-02-15 06:31:12 +00:00
Given a sample.yml file of:
```yaml
a: cat
```
And another sample another.yml file of:
```yaml
b: dog
```
then
```bash
2021-02-15 07:23:50 +00:00
yq eval-all '. as $item ireduce ({}; . * $item )' sample.yml another.yml
2021-02-15 06:31:12 +00:00
```
will output
```yaml
a: cat
b: dog
```
2021-02-15 07:23:50 +00:00
## Convert an array to an object
2021-02-15 06:31:12 +00:00
Given a sample.yml file of:
```yaml
2021-02-15 07:23:50 +00:00
- name: Cathy
has: apples
- name: Bob
has: bananas
2021-02-15 06:31:12 +00:00
```
then
```bash
2021-02-15 07:23:50 +00:00
yq eval '.[] as $item ireduce ({}; .[$item | .name] = ($item | .has) )' sample.yml
2021-02-15 06:31:12 +00:00
```
will output
```yaml
2021-02-15 07:23:50 +00:00
Cathy: apples
Bob: bananas
2021-02-15 06:31:12 +00:00
```