Repository: parquet-cpp Updated Branches: refs/heads/master 0a0323d85 -> aabb3db2c
PARQUET-694: Revert default data page size back to 1M Author: Uwe L. Korn <[email protected]> Closes #146 from xhochy/parquet-694 and squashes the following commits: a21638b [Uwe L. Korn] PARQUET-694: Revert default data page size back to 1M Project: http://git-wip-us.apache.org/repos/asf/parquet-cpp/repo Commit: http://git-wip-us.apache.org/repos/asf/parquet-cpp/commit/aabb3db2 Tree: http://git-wip-us.apache.org/repos/asf/parquet-cpp/tree/aabb3db2 Diff: http://git-wip-us.apache.org/repos/asf/parquet-cpp/diff/aabb3db2 Branch: refs/heads/master Commit: aabb3db2cf96d283bbf4344c4d45b76431e16c92 Parents: 0a0323d Author: Uwe L. Korn <[email protected]> Authored: Wed Aug 31 21:57:53 2016 -0400 Committer: Wes McKinney <[email protected]> Committed: Wed Aug 31 21:57:53 2016 -0400 ---------------------------------------------------------------------- src/parquet/column/properties.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/parquet-cpp/blob/aabb3db2/src/parquet/column/properties.h ---------------------------------------------------------------------- diff --git a/src/parquet/column/properties.h b/src/parquet/column/properties.h index 78478ad..3234dbc 100644 --- a/src/parquet/column/properties.h +++ b/src/parquet/column/properties.h @@ -77,7 +77,7 @@ class PARQUET_EXPORT ReaderProperties { ReaderProperties PARQUET_EXPORT default_reader_properties(); -static int64_t DEFAULT_PAGE_SIZE = 64 * 1024 * 1024; +static int64_t DEFAULT_PAGE_SIZE = 1024 * 1024; static int64_t DEFAULT_DICTIONARY_PAGE_SIZE = DEFAULT_PAGE_SIZE; static Encoding::type DEFAULT_ENCODING = Encoding::PLAIN; static constexpr ParquetVersion::type DEFAULT_WRITER_VERSION =
