Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2021 10:20 AM
In Spark SQL, you could use commands like "insert overwrite directory" that indirectly creates a temporary file with the data
Using shell you could create directory using
%sh mkdir /tmp/file
& create temp file using
echo 'This is a test' > data.txt
If you have more questions, please let us know what is the use case are you trying to do