This is an automated email from the ASF dual-hosted git repository.
yibocai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/master by this push:
new fccbfea51f ARROW-16669: [Go][CI] Test failure on ARM for pqarrow
(#13628)
fccbfea51f is described below
commit fccbfea51fb62adab4019cea122469db14181aa8
Author: Matt Topol <[email protected]>
AuthorDate: Sun Jul 17 06:07:42 2022 -0400
ARROW-16669: [Go][CI] Test failure on ARM for pqarrow (#13628)
By shrinking the size of the test cases used for the `pqarrow` module's row
tests from `10 * 1024 * 1024` to just `1024 * 1024` this should keep the RSS
needs for the ARM build with the `-race` tag down low enough to avoid
intermittent failures in the Travis CI builds.
CC @guyuqi
Authored-by: Matthew Topol <[email protected]>
Signed-off-by: Yibo Cai <[email protected]>
---
go/parquet/pqarrow/reader_writer_test.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/go/parquet/pqarrow/reader_writer_test.go
b/go/parquet/pqarrow/reader_writer_test.go
index 2a7bb44bae..a9d825ff66 100644
--- a/go/parquet/pqarrow/reader_writer_test.go
+++ b/go/parquet/pqarrow/reader_writer_test.go
@@ -33,7 +33,7 @@ import (
)
const alternateOrNA = -1
-const SIZELEN = 10 * 1024 * 1024
+const SIZELEN = 1024 * 1024
func randomUint8(size, truePct int, sampleVals [2]uint8, seed uint64) []uint8 {
ret := make([]uint8, size)