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
* feature: filesystem telemetry integration
* refactor: move telemetry initialization to ConfigBuilder
- in order to pass telemetry to filesystem
- make fstab aware of telemetry
* feature: integate filesystem with telemetry
* fix: rebuild dsl definitions
Flow Filesystem is a unified solution to store and retrieve data at remote and local filesystems.
19
-
What differentiates Flow Filesystem from other libraries is the ability to store data in Blocks and read
20
-
it by byte ranges.
18
+
Flow Filesystem is a unified solution to store and retrieve data at remote and local filesystems.
19
+
What differentiates Flow Filesystem from other libraries is the ability to store data in Blocks and read
20
+
it by byte ranges.
21
21
22
-
This means, that while writing data to a large remote file, instead we can literally stream the data and based on the implementation
23
-
of the filesystem, it will be saved in blocks.
22
+
This means, that while writing data to a large remote file, instead we can literally stream the data and based on the
23
+
implementation
24
+
of the filesystem, it will be saved in blocks.
24
25
25
-
When reading, instead of iterating through the whole file to find the data you need, you can directly access the data you need by specifying the byte range.
26
+
When reading, instead of iterating through the whole file to find the data you need, you can directly access the data
0 commit comments