How do Blob Tools work on server?
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I have a blob output tool that takes a template from a shared drive and creates a copy of it with a given name (test_template.xlsx) and no file path. I'm just trying to wrap my head around how this works without a file path as it relates to server. Is it just creating a temporary copy somewhere since I didn't define a file path, and then allowing the user to download that temporary file? Everything is working as intended I'm just trying to better understand the process. Thanks for any insight!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @tristank ,
You got it!
Only so I don`t give you that lazy answer, here are the steps:
- Run a workflow on the Gallery
- A temporary Folder is created at %ProgramData%\Alteryx\Service\Staging\XProcessCache
- Your workflow package is downloaded from MongoDB and unzipped there
- Workflow is executed locally in this folder and all the outputs with no paths are saved and retrieved from there
- After run, the folder is deleted.
Best,
Fernando Vizcaino
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
It is important to mention that I learned this empirically so I could be 100% talking nonsense here 😁
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
@fmvizcaino that makes a lot of sense! So the app output and the template copy are existing in the same, temporary location since they don't have file paths just file names. Very interesting stuff! Thanks a lot :)
