Skip to content

Commit 6703b6e

Browse files
authored
Fix docs (#870)
1 parent 8b38bac commit 6703b6e

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

docs/branching.md

-6
Original file line numberDiff line numberDiff line change
@@ -103,12 +103,6 @@ operations together on a single line like `sdf = sdf.apply().filter().print()`.
103103
Chaining can be used alongside branching; the operations will be collectively treated
104104
as a single branch addition.
105105

106-
### Branching vs. Multiple Topics (Multi-SDF)
107-
108-
[Consuming multiple topics](consuming-multiple-topics.md) is independent of branching;
109-
branches can be used in each of the `SDF`s from multiple topics, but they cannot
110-
interact with one another in any way.
111-
112106
#### Clarifying Multiple SDFs
113107
`SDF`'s are delineated by the topic they are initialized with;
114108
branches just generate additional nodes you can manipulate on them,

docs/build/build.py

+1
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@
157157
"quixstreams.sources.community.kinesis.kinesis",
158158
"quixstreams.sources.community.pubsub.pubsub",
159159
"quixstreams.sources.community.pandas",
160+
"quixstreams.sources.community.influxdb3.influxdb3",
160161
]
161162
},
162163
}

docs/concatenating.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Use it when you need:
1212
**Example 1:** Aggregate e-commerce orders from different locations into one stream and calculate the average order size in 1h windows.
1313

1414
```python
15+
1516
from datetime import timedelta
1617

1718
from quixstreams import Application
@@ -43,11 +44,11 @@ if __name__ == '__main__':
4344
app.run()
4445
```
4546

46-
4747
**Example 2:** Combine branches of the same `StreamingDataFrame` back together.
48-
See the [Branching](branching.md) page for more details about branching.
48+
See the [Branching StreamingDataFrames](branching.md) page for more details about branching.
4949

5050
```python
51+
5152
from quixstreams import Application
5253
app = Application(...)
5354

@@ -73,7 +74,7 @@ all_orders.to_topic(output_topic)
7374

7475
if __name__ == '__main__':
7576
app.run()
76-
```
77+
```
7778

7879

7980
## Message ordering between partitions

0 commit comments

Comments
 (0)