bobbai00 opened a new pull request, #3761: URL: https://github.com/apache/texera/pull/3761
## Summary This PR pins the R arrow package to version 14.0.2.1 in the computing-unit-master Dockerfile to ensure compatibility with R operators. ## Problem The R arrow package was not pinned to a specific version, causing the latest version (21.0.0) to be installed. This version is incompatible with Texera's R operators, causing them to fail at runtime. ## Solution - Split R package installation into two steps - Install `coro` and `dplyr` packages first using standard install.packages - Pin `arrow` package to version 14.0.2.1 using `remotes::install_version()` - Add `upgrade='never'` parameter to prevent automatic upgrades - Include verification output to confirm the correct arrow version is installed ## Testing - Built the Docker image with the pinned version - Verified R operators work correctly with arrow 14.0.2.1 - Confirmed the version output shows the expected version Fixes #3760 -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
