You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/05/11 09:52:27 UTC

[GitHub] [arrow] raulcd opened a new pull request, #13119: MINOR: Add feedback information output when building in case of skipping pyarrow build

raulcd opened a new pull request, #13119:
URL: https://github.com/apache/arrow/pull/13119

   This minor PR tries to give the user a better hint on what is happening in case of their build being skipped because `cachedir != build_temp`. I faced the issue and had to ask and debug to understand that I had to clean my previous build:
   ```
   (pyarrow-dev) ~/arrow/python (master)  $ python setup.py build_ext --inplace
   running build_ext
   (pyarrow-dev) ~/arrow/python (master)  $
   ```
   The new output will show on that case:
   ```
   (pyarrow-dev) ~/arrow/python (master)  $ python setup.py build_ext --inplace
   running build_ext
   -- Skipping build. Temp build /home/raulcd/arrow/python/build/temp.linux-x86_64-3.10 does not match cached dir /arrow/python/build/temp.linux-x86_64-3.10
   (pyarrow-dev) ~/arrow/python (master)  $
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] jorisvandenbossche commented on pull request #13119: MINOR: Add feedback information output when building in case of skipping pyarrow build

Posted by GitBox <gi...@apache.org>.
jorisvandenbossche commented on PR #13119:
URL: https://github.com/apache/arrow/pull/13119#issuecomment-1123640611

   Thanks! While it's certainly useful to get some message printed instead of just the "running build_ext" without anything else, I am wondering if we can give an additional hint? Like suggesting to clean the build directory? (as that fixed it in your case)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] ursabot commented on pull request #13119: MINOR: Add feedback information output when building in case of skipping pyarrow build

Posted by GitBox <gi...@apache.org>.
ursabot commented on PR #13119:
URL: https://github.com/apache/arrow/pull/13119#issuecomment-1126413558

   Benchmark runs are scheduled for baseline = d653b71d79fc381c43f59d3095cc1c9fb0c1cf7c and contender = ee31931e8b5e1e709e2aeb2f2ed984376920ba82. ee31931e8b5e1e709e2aeb2f2ed984376920ba82 is a master commit associated with this PR. Results will be available as each benchmark for each run completes.
   Conbench compare runs links:
   [Finished :arrow_down:0.0% :arrow_up:0.0%] [ec2-t3-xlarge-us-east-2](https://conbench.ursa.dev/compare/runs/3cc857813d4f4f2eb8031781ddb2e05b...f625ddc14a1248e78ca02d97c20bcb3c/)
   [Failed :arrow_down:0.47% :arrow_up:0.0%] [test-mac-arm](https://conbench.ursa.dev/compare/runs/f5ee7f9482854fb194d861902ce5ee62...e81d323c3f4143c79762275213481d00/)
   [Finished :arrow_down:0.36% :arrow_up:0.0%] [ursa-i9-9960x](https://conbench.ursa.dev/compare/runs/afd3d96f53a84dc7954507f7a643cc9a...ec7c958e887e4aa0ade8977efae21858/)
   [Finished :arrow_down:0.32% :arrow_up:0.04%] [ursa-thinkcentre-m75q](https://conbench.ursa.dev/compare/runs/916f2d03453c40cda75dd0e7edc26c3a...1194585eecbc45ec9bab6d1b6341e6f8/)
   Buildkite builds:
   [Finished] [`ee31931e` ec2-t3-xlarge-us-east-2](https://buildkite.com/apache-arrow/arrow-bci-benchmark-on-ec2-t3-xlarge-us-east-2/builds/744)
   [Failed] [`ee31931e` test-mac-arm](https://buildkite.com/apache-arrow/arrow-bci-benchmark-on-test-mac-arm/builds/741)
   [Finished] [`ee31931e` ursa-i9-9960x](https://buildkite.com/apache-arrow/arrow-bci-benchmark-on-ursa-i9-9960x/builds/731)
   [Finished] [`ee31931e` ursa-thinkcentre-m75q](https://buildkite.com/apache-arrow/arrow-bci-benchmark-on-ursa-thinkcentre-m75q/builds/746)
   [Finished] [`d653b71d` ec2-t3-xlarge-us-east-2](https://buildkite.com/apache-arrow/arrow-bci-benchmark-on-ec2-t3-xlarge-us-east-2/builds/743)
   [Finished] [`d653b71d` test-mac-arm](https://buildkite.com/apache-arrow/arrow-bci-benchmark-on-test-mac-arm/builds/740)
   [Finished] [`d653b71d` ursa-i9-9960x](https://buildkite.com/apache-arrow/arrow-bci-benchmark-on-ursa-i9-9960x/builds/730)
   [Finished] [`d653b71d` ursa-thinkcentre-m75q](https://buildkite.com/apache-arrow/arrow-bci-benchmark-on-ursa-thinkcentre-m75q/builds/745)
   Supported benchmarks:
   ec2-t3-xlarge-us-east-2: Supported benchmark langs: Python, R. Runs only benchmarks with cloud = True
   test-mac-arm: Supported benchmark langs: C++, Python, R
   ursa-i9-9960x: Supported benchmark langs: Python, R, JavaScript
   ursa-thinkcentre-m75q: Supported benchmark langs: C++, Java
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] raulcd commented on pull request #13119: MINOR: Add feedback information output when building in case of skipping pyarrow build

Posted by GitBox <gi...@apache.org>.
raulcd commented on PR #13119:
URL: https://github.com/apache/arrow/pull/13119#issuecomment-1123723199

   > Thanks! While it's certainly useful to get some message printed instead of just the "running build_ext" without anything else, I am wondering if we can give an additional hint? Like suggesting to clean the build directory? (as that fixed it in your case)
   
   I have added the new hint:
   ```
   -- Skipping build. Temp build /home/raulcd/arrow/python/build/temp.linux-x86_64-3.10 does not match cached dir /arrow/python/build/temp.linux-x86_64-3.10
   ---- For a clean build you might want to delete /home/raulcd/arrow/python/build.
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] jorisvandenbossche closed pull request #13119: MINOR: Add feedback information output when building in case of skipping pyarrow build

Posted by GitBox <gi...@apache.org>.
jorisvandenbossche closed pull request #13119: MINOR: Add feedback information output when building in case of skipping pyarrow build
URL: https://github.com/apache/arrow/pull/13119


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org