You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "comphead (via GitHub)" <gi...@apache.org> on 2023/02/05 18:27:17 UTC

[GitHub] [arrow-datafusion] comphead opened a new issue, #5186: DiskManager to create a spill folder if doesn't exist

comphead opened a new issue, #5186:
URL: https://github.com/apache/arrow-datafusion/issues/5186

   **Is your feature request related to a problem or challenge? Please describe what you are trying to do.**
   
   DiskManager will fail if spill directory doesn't exist
   ```
       #[test]
       fn test_disk_manager_create_spill_folder() {
           let config = DiskManagerConfig::new_specified(vec!["DOESNT_EXIST".into()]);
   
           DiskManager::try_new(config)
               .unwrap()
               .create_tmp_file("Testing")
               .unwrap();
       }
   ```
   
   **Describe the solution you'd like**
   Create automatically spill folder if doesn't exist
   
   **Describe alternatives you've considered**
   Not doing this
   **Additional context**
   None


-- 
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: github-unsubscribe@arrow.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow-datafusion] alamb closed issue #5186: DiskManager to create a spill folder if doesn't exist

Posted by "alamb (via GitHub)" <gi...@apache.org>.
alamb closed issue #5186: DiskManager to create a spill folder if doesn't exist
URL: https://github.com/apache/arrow-datafusion/issues/5186


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org