From 8f83912b4877f29c4b8cc9b31df7a0077bf41789 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 bd7d074eaa263b951ed0ff0f3070f1e5860e7d49 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};