-
Notifications
You must be signed in to change notification settings - Fork 242
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Integration tests: Install specific fastparquet version. [databricks] (…
…#9607) * Integration tests: Install specific fastparquet version. Fixes #9603. This commit changes the integration test setup to specifically install fastparquet-0.8.3. Prior to this change, when the fastparquet version is not specified, the pip install caused 0.5.0 to be installed on some nodes, e.g. on Dataproc 2.0 (with Spark 3.1.1). The older fastparquet versions do not support reading the contents of input directories recursively, causing the tests to fail. Note that this change doesn't bump the version all the way to 2023.8.0, so as to preserve compatibility with Dataproc 2.0. v0.8.3 seems to have the broadest support. Signed-off-by: MithunR <mythrocks@gmail.com> * Switching to one specific fastparquet version. * Added requirements.txt to the IT tar.gz package. This should allow the installation of the right `fastparquet` version. --------- Signed-off-by: MithunR <mythrocks@gmail.com>
- Loading branch information
Showing
6 changed files
with
9 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,4 @@ pandas | |
pyarrow | ||
pytest-xdist >= 2.0.0 | ||
findspark | ||
fastparquet >= 2023.8.0 | ||
fastparquet == 0.8.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters