timeabarna commented on a change in pull request #4815: URL: https://github.com/apache/nifi/pull/4815#discussion_r578969886
########## File path: nifi-nar-bundles/nifi-azure-bundle/nifi-azure-processors/src/main/resources/docs/org.apache.nifi.processors.azure.storage.PutAzureDataLakeStorage/additionalDetails.html ########## @@ -0,0 +1,57 @@ +<!DOCTYPE html> +<html lang="en"> +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<head> + <meta charset="utf-8" /> + <title>QuerySplunkIndexingStatus</title> + <link rel="stylesheet" href="/nifi-docs/css/component-usage.css" type="text/css" /> +</head> + +<body> +<h2>PutAzureDataLakeStorage</h2> + +<p> + This processor is responsible for uploading files to Azure Data Lake Storage servers. +</p> + +<h3>File uploading and cleanup process</h3> + +<h4>New file:</h4> + +<ol> + <li>An empty file is created.</li> + <li>Content is appended to file.</li> + <li>In case append failure the file is deleted.</li> + <li>In case file deletion failure the empty file remains on the server.</li> +</ol> + +<h4>Existing file:</h4> + +<ul> + <li>Processors with "Fail" conflict resolution strategy will be directed to "Failure" relationship.</li> + <li>Processors with "Ignore" conflict resolution strategy will be directed to "Success" relationship.</li> + <li>Processors with "replace" conflict resolution strategy:</li> + + <ol> + <li>An empty file overwrites the existing file, the original file is lost.</li> + <li>Content is appended to file.</li> + <li>In case append failure the file is deleted.</li> + <li>In case file deletion failure the empty file remains on the server.</li> + </ol> +</ul> + +</body> +</html> Review comment: All suggestions have been applied. Thanks Joey for your help. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected]
