-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NIFI-13665 Refactored Bootstrap and Runtime Process Handling (#9192)
- Added BootstrapProcess main class to nifi-bootstrap - Added HTTP Management Server to nifi-runtime for status - Added HTTP client to nifi-bootstrap for status - Removed TCP socket listeners from nifi-bootstrap and nifi-runtime - Removed dump and env commands - Removed java property from bootstrap.conf - Removed nifi.bootstrap.listen.port from bootstrap.conf
- Loading branch information
1 parent
7945234
commit 6b6e8d6
Showing
76 changed files
with
4,100 additions
and
2,580 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
106 changes: 0 additions & 106 deletions
106
nifi-bootstrap/src/main/java/org/apache/nifi/bootstrap/BootstrapCodec.java
This file was deleted.
Oops, something went wrong.
53 changes: 53 additions & 0 deletions
53
nifi-bootstrap/src/main/java/org/apache/nifi/bootstrap/BootstrapProcess.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,53 @@ | ||
/* | ||
* 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. | ||
*/ | ||
package org.apache.nifi.bootstrap; | ||
|
||
import org.apache.nifi.bootstrap.command.BootstrapCommand; | ||
import org.apache.nifi.bootstrap.command.BootstrapCommandProvider; | ||
import org.apache.nifi.bootstrap.command.CommandStatus; | ||
import org.apache.nifi.bootstrap.command.StandardBootstrapCommandProvider; | ||
import org.apache.nifi.bootstrap.configuration.ApplicationClassName; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
/** | ||
* Bootstrap Process responsible for reading configuration and maintaining application status | ||
*/ | ||
public class BootstrapProcess { | ||
/** | ||
* Start Application | ||
* | ||
* @param arguments Array of arguments | ||
*/ | ||
public static void main(final String[] arguments) { | ||
final BootstrapCommandProvider bootstrapCommandProvider = new StandardBootstrapCommandProvider(); | ||
final BootstrapCommand bootstrapCommand = bootstrapCommandProvider.getBootstrapCommand(arguments); | ||
run(bootstrapCommand); | ||
} | ||
|
||
private static void run(final BootstrapCommand bootstrapCommand) { | ||
bootstrapCommand.run(); | ||
final CommandStatus commandStatus = bootstrapCommand.getCommandStatus(); | ||
if (CommandStatus.RUNNING == commandStatus) { | ||
final Logger logger = LoggerFactory.getLogger(ApplicationClassName.BOOTSTRAP_COMMAND.getName()); | ||
logger.info("Bootstrap Process Running"); | ||
} else { | ||
final int status = commandStatus.getStatus(); | ||
System.exit(status); | ||
} | ||
} | ||
} |
141 changes: 0 additions & 141 deletions
141
nifi-bootstrap/src/main/java/org/apache/nifi/bootstrap/NiFiListener.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.