We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Write_parquet connexion to hdfs impossible due to filesystem error The problem was solved when adding file_system arg in the write_parquet function
import edsnlp df=pd.DataFrame(data=[('a',1,'test'), ('a',1,'test'), ('a',1,'test'), ('a',1,'test'), ('a',1,'test'), ('a',1,'test'), ('a',1,'test')], columns=['name','id','test']) docs=edsnlp.data.from_pandas(df) edsnlp.data.write_parquet(docs, 'hdfs://bbsedsi/user/<PATH_TO_PARQUET>')
import fsspec hdfs = fsspec.get_filesystem_class("hdfs")() docs=edsnlp.data.from_pandas(df) edsnlp.data.write_parquet(docs, 'hdfs://user/<PATH_TO_PARQUET>', filesystem=hdfs)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Write_parquet connexion to hdfs impossible due to filesystem error
The problem was solved when adding file_system arg in the write_parquet function
How to reproduce the bug
Solved the problem
The text was updated successfully, but these errors were encountered: