You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "jorisvandenbossche (via GitHub)" <gi...@apache.org> on 2023/04/12 16:24:53 UTC

[GitHub] [arrow] jorisvandenbossche opened a new issue, #35078: [Python][CI] Tests on windows are running very slow

jorisvandenbossche opened a new issue, #35078:
URL: https://github.com/apache/arrow/issues/35078

   Appveyor is currently timing out (eg https://ci.appveyor.com/project/ApacheSoftwareFoundation/arrow/builds/46764558), and also the nightly crossbow wheel tests show very slow tests (eg [wheel-windows-cp310-amd64 latest raw logs](https://pipelines.actions.githubusercontent.com/serviceHosts/36b0b1a0-9453-4f79-b171-2b3905790445/_apis/pipelines/1/runs/145917/signedlogcontent/2?urlExpires=2023-04-12T16%3A19%3A38.3376942Z&urlSigningMethod=HMACV1&urlSignature=vvb%2F9vAHJ1L6BMuB0kqvjSdq06yQR9MWWNqveHr%2Fy8U%3D)). 
   
   Going back a bit in time, the same crossbow build from April 1 was fast: [raw logs](https://pipelines.actions.githubusercontent.com/serviceHosts/36b0b1a0-9453-4f79-b171-2b3905790445/_apis/pipelines/1/runs/144323/signedlogcontent/2?urlExpires=2023-04-12T16%3A20%3A34.0565439Z&urlSigningMethod=HMACV1&urlSignature=MDl1D1EF9Nt6wwvDZcXUEFP9WaVx0%2FOwFnVHRLSvwHQ%3D) (tests take about 5 minutes)


-- 
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: issues-unsubscribe@arrow.apache.org.apache.org

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


[GitHub] [arrow] westonpace commented on issue #35078: [Python][CI] Tests on windows are running very slow

Posted by "westonpace (via GitHub)" <gi...@apache.org>.
westonpace commented on issue #35078:
URL: https://github.com/apache/arrow/issues/35078#issuecomment-1505597781

   Is it a timeout?  It's pretty consistent on `test_conversion`.  I assumed it was a segfault.


-- 
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 issue #35078: [Python][CI] Tests on windows are running very slow

Posted by "raulcd (via GitHub)" <gi...@apache.org>.
raulcd commented on issue #35078:
URL: https://github.com/apache/arrow/issues/35078#issuecomment-1512674294

   The new Pytest release fixes the issue. Appveyor is now passing and the wheel tests for Windows are back to ~10 minutes instead of 2hours :). I am closing the issue.


-- 
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] mapleFU commented on issue #35078: [Python][CI] Tests on windows are running very slow

Posted by "mapleFU (via GitHub)" <gi...@apache.org>.
mapleFU commented on issue #35078:
URL: https://github.com/apache/arrow/issues/35078#issuecomment-1505595981

   "raw logs" url seems expired, or just I didn't have authority to visit it?


-- 
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] westonpace commented on issue #35078: [Python][CI] Tests on windows are running very slow

Posted by "westonpace (via GitHub)" <gi...@apache.org>.
westonpace commented on issue #35078:
URL: https://github.com/apache/arrow/issues/35078#issuecomment-1505607411

   > "raw logs" url seems expired, or just I didn't have authority to visit it?
   
   @mapleFU 
   
   Here's a more recent slow build: https://github.com/ursacomputing/crossbow/actions/runs/4676300747/jobs/8282436089
   
   I usually go to Zulip to find nightly test status: https://ursalabs.zulipchat.com/#narrow/stream/181017-nightlies/topic/report/near/348751506


-- 
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 issue #35078: [Python][CI] Tests on windows are running very slow

Posted by "jorisvandenbossche (via GitHub)" <gi...@apache.org>.
jorisvandenbossche commented on issue #35078:
URL: https://github.com/apache/arrow/issues/35078#issuecomment-1506561320

   Comparing the last fast and first slow crossbow build, the only external change in the python test environment was an update of pytest from 7.2.2 to 7.3.0, and that might actually be the culprit: https://github.com/pytest-dev/pytest/issues/10896


-- 
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 issue #35078: [Python][CI] Tests on windows are running very slow

Posted by "jorisvandenbossche (via GitHub)" <gi...@apache.org>.
jorisvandenbossche commented on issue #35078:
URL: https://github.com/apache/arrow/issues/35078#issuecomment-1505576564

   The first slow crossbow build seems to be 3 days ago: https://github.com/ursacomputing/crossbow/actions/runs/4649634532/jobs/8228109815


-- 
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 issue #35078: [Python][CI] Tests on windows are running very slow

Posted by "jorisvandenbossche (via GitHub)" <gi...@apache.org>.
jorisvandenbossche commented on issue #35078:
URL: https://github.com/apache/arrow/issues/35078#issuecomment-1506731951

   Sorry, wasn't aware that the raw logs urls expire so quickly. Updated the top post with linking to the normal github actions pages, where you can manually click on "View raw logs"


-- 
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 closed issue #35078: [Python][CI] Tests on windows are running very slow

Posted by "raulcd (via GitHub)" <gi...@apache.org>.
raulcd closed issue #35078: [Python][CI] Tests on windows are running very slow
URL: https://github.com/apache/arrow/issues/35078


-- 
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: issues-unsubscribe@arrow.apache.org

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