forked from apache/nifi
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NIFI-13807: Ensure that we always close InputStream / OutputSTrema fo…
…r HttpExchange. Verified fix using InvokeHTTP to hit the health endpoint hundreds of thousands of times and verified NiFi heap usage was still at 200 MB after a young GC event
- Loading branch information
Showing
5 changed files
with
86 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
...dle/nifi-framework/nifi-runtime/src/main/java/org/apache/nifi/util/HttpExchangeUtils.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package org.apache.nifi.util; | ||
|
||
import com.sun.net.httpserver.HttpExchange; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
import java.io.IOException; | ||
import java.io.InputStream; | ||
|
||
public class HttpExchangeUtils { | ||
private static final Logger logger = LoggerFactory.getLogger(HttpExchangeUtils.class); | ||
|
||
public static void drainRequestBody(final HttpExchange exchange) throws IOException { | ||
final byte[] buffer = new byte[4096]; | ||
try (final InputStream in = exchange.getRequestBody()) { | ||
while ((in.read(buffer)) != -1) { | ||
// Ignore the data read, just drain the input stream | ||
} | ||
} catch (final IOException ioe) { | ||
// Since we don't actually care about the contents of the input, we will ignore any Exceptions when reading from it. | ||
logger.debug("Failed to fully drain HttpExchange InputStream", ioe); | ||
} | ||
} | ||
|
||
} |