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
Copy file name to clipboardExpand all lines: docs/utilities/streaming.md
+36
Original file line number
Diff line number
Diff line change
@@ -93,6 +93,42 @@ We provide popular built-in transformations that you can apply against your stre
93
93
94
94
## Advanced
95
95
96
+
### Reading ahead or backwards
97
+
98
+
`S3Object` implements [Python I/O interface](https://docs.python.org/3/tutorial/inputoutput.html){target="_blank"}. This means you can use `seek` to start reading contents of your file from any particular position, saving you processing time.
99
+
100
+
#### Reading backwards
101
+
102
+
For example, let's imagine you have a large CSV file, each row has a non-uniform size (bytes), and you want to read and process the last row only.
0 commit comments