From d41bd169ae3f9c3dcdc18921143b0079b3fe5aca Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Sat, 3 Apr 2021 13:27:25 -0400 Subject: [PATCH 1/2] Print out the size of docker container --- docker-compose.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index cdcae905dd5..7ea6d0b7009 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1179,6 +1179,9 @@ services: /arrow/ci/scripts/cpp_build.sh /arrow /build && /arrow/ci/scripts/go_build.sh /arrow && /arrow/ci/scripts/java_build.sh /arrow /build && + df -h && + du -hx --threshold=100M / && + du -hx --threshold=500M /arrow/ && /arrow/ci/scripts/js_build.sh /arrow /build && /arrow/ci/scripts/integration_arrow.sh /arrow /build"] From 25cfe932640d7d725767f6d9e21652e7efb2bd62 Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Sun, 4 Apr 2021 05:46:11 -0400 Subject: [PATCH 2/2] add comments to trigger integration test --- rust/datafusion/src/execution/dataframe_impl.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/datafusion/src/execution/dataframe_impl.rs b/rust/datafusion/src/execution/dataframe_impl.rs index 62c18ebc985..0e74bb7a9f3 100644 --- a/rust/datafusion/src/execution/dataframe_impl.rs +++ b/rust/datafusion/src/execution/dataframe_impl.rs @@ -15,7 +15,7 @@ // specific language governing permissions and limitations // under the License. -//! Implementation of DataFrame API +//! Implementation of DataFrame API. Some comments to trigger integration test use std::sync::{Arc, Mutex};