mark-bathori commented on PR #7999:
URL: https://github.com/apache/nifi/pull/7999#issuecomment-1802124689

   Thanks for the question @exceptionfactory.
   
   Currently if someone would like to move their data from one storage to 
another they would need to use a List processor into a Fetch processor and then 
to a Put processor. The fetched data will be stored in the content repository 
before it can be used by the Put processor. The `FileResourceService` main 
purpose is to skip the content repository and reference the data directly in 
the Put processor so instead of eg.: `ListGCS` -> `FetchGCS` -> `PutADLS` the 
user can do `ListGCS` -> `PutADLS`. 
   This should also provide better performance in the amount of processed data 
due avoiding the need of writing data in the content repository.
   The `FileResourceService` already have an implementation for local file 
systems(`StandardFileResourceService`) and my PR would provide and option for 
Google Cloud Storage.


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to