File tree Expand file tree Collapse file tree 3 files changed +5
-9
lines changed Expand file tree Collapse file tree 3 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -103,12 +103,6 @@ operations together on a single line like `sdf = sdf.apply().filter().print()`.
103103Chaining can be used alongside branching; the operations will be collectively treated 
104104as 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;
114108branches just generate additional nodes you can manipulate on them, 
Original file line number Diff line number Diff line change 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}
Original file line number Diff line number Diff 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+ 
1516from  datetime import  timedelta
1617
1718from  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+ 
5152from  quixstreams import  Application
5253app =  Application(... )
5354
@@ -73,7 +74,7 @@ all_orders.to_topic(output_topic)
7374
7475if  __name__  ==  ' __main__'  :
7576    app.run()
76-   ``` 
77+ ``` 
7778
7879
7980## Message ordering between partitions  
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments