Skip to content

Commit

Permalink
Change the default page size (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
liukun4515 authored and MyXOF committed May 17, 2018
1 parent c5f0248 commit 396e211
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ public class TSFileConfig {
*/
public int groupSizeInByte = 128 * 1024 * 1024;
/**
* The memory size for each series writer to pack page, default value is 1MB
* The memory size for each series writer to pack page, default value is 64KB
*/
public int pageSizeInByte = 1024 * 1024;
public int pageSizeInByte = 64 * 1024;
/**
* The maximum number of data points in a page, defalut value is 1024 * 1024
*/
Expand Down

0 comments on commit 396e211

Please sign in to comment.