-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hdfs support #767
Hdfs support #767
Conversation
1edd51d
to
71b22a0
Compare
71b22a0
to
059df36
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This feature is looking good in general. A few things could be improved (see code comments). I did not test-run the code but tried compilation of the dependencies to check support in the Docker images.
Please make the integration optional like CUDA or MPI.
Thank you for the valuable feedback @corepointer. I will address the comments and make HDFS build optional. 👍 |
This commit adds the necessary packages for the container scripts and code in the build script to build the dependencies for HDFS support.
This commit adds the necessary packages for the container scripts and code in the build script to build the dependencies for HDFS support.
This commit caters to the ongoing discussion in GH issue daphne-eu#825 and changes the Docker container scripts to build upon Ubuntu 24.
This commit adds the necessary packages for the container scripts and code in the build script to build the dependencies for HDFS support. Co-authored-by: Mark Dokter <[email protected]>
This commit adds the necessary packages for the container scripts and code in the build script to build the dependencies for HDFS support. Co-authored-by: Mark Dokter <[email protected]>
Thank you @corepointer again for your review. I've added an optional |
This commit adds the necessary packages for the container scripts and code in the build script to build the dependencies for HDFS support. Co-authored-by: Mark Dokter <[email protected]>
This commit adds the necessary packages for the container scripts and code in the build script to build the dependencies for HDFS support. Co-authored-by: Mark Dokter <[email protected]>
This commit adds initial support to read and write files from Hadoop Filesystems in distributed mode. Besides the read, write and distributed functionality, this also contains new configuration options and a new context object to manage the connection information to the distributed filesystem. Finally, this feature requires the installation of more external dependencies. The compilation is therefore optional and can be activated with the --hdfs flag to build.sh. Closes daphne-eu#767 Co-authored-by: KostasBitsakos <[email protected]> Co-authored-by: Mark Dokter <[email protected]>
73cb076
to
d735331
Compare
LGTM - thx for your contribution @aristotelis96 @psomas @KostasBitsakos
|
Test cases would be nice ;-) [1] https://hadoop.apache.org/docs/stable/hadoop-project-dist/hadoop-common/SingleCluster.html |
This PR introduces support for Hadoop Distributed File System (HDFS).