Skip to content

Commit

Permalink
[Issue #736] Implement PixelsStreamReader and PixelsStreamWriter (#796)
Browse files Browse the repository at this point in the history
  • Loading branch information
huasiy authored Dec 12, 2024
1 parent f792d19 commit d3911b9
Show file tree
Hide file tree
Showing 8 changed files with 950 additions and 1,219 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ public final class Constants
public static final int REDIS_BUFFER_SIZE = 8 * 1024 * 1024;
public static final int GCS_BUFFER_SIZE = 8 * 1024 * 1024;
public static final int STREAM_BUFFER_SIZE = 8 * 1024 * 1024;
public static final int STREAM_READER_RG_BUFFER_SIZE = 1024 * 1024;
public static final int STREAM_READER_RG_FOOTER_BUFFER_SIZE = 1024;

public static final int MIN_REPEAT = 3;
public static final int MAX_SCOPE = 512;
Expand Down
13 changes: 13 additions & 0 deletions pixels-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,19 @@
<artifactId>netty-all</artifactId>
<optional>true</optional>
</dependency>

<dependency>
<groupId>io.pixelsdb</groupId>
<artifactId>pixels-storage-stream</artifactId>
<scope>test</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.pixelsdb</groupId>
<artifactId>pixels-storage-localfs</artifactId>
<scope>test</scope>
<optional>true</optional>
</dependency>
</dependencies>

<build>
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Loading

0 comments on commit d3911b9

Please sign in to comment.