-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Port CDM updates to 2.26.x branch (#6434)
* DDF-6408 Improve Logging for CDM (#6064) (#6122) * Update the contentDirectoryMonitor appender configuration in org.ops4j.pax.logging.cfg to match log4j2.xml (#6344) * Cdm Set Max File Size (#6358) * Fix create commit before ingest * Set max file size for in place directory monitoring to 1GB and made configurable * CDM timeout update (#6339) * DDF-6334 added logging & camel will expire messages. Also set max number of threads for CDM * Update FrameworkProducer and TransformProducer to support timeouts * Update CDM timeouts to use camel component timeouts * Add failure retry * Camel component test updates Co-authored-by: Joseph Thweatt <joseph.thweatt@connexta.com> * Cleanup * reverting test updates to get build working * Updating policy for CDM Co-authored-by: Joseph Thweatt <joseph.thweatt@connexta.com> Co-authored-by: Emily Berk <emmberk@users.noreply.github.com> Co-authored-by: Chris Lockard <chris.lockard@connexta.com>
- Loading branch information
1 parent
faa1716
commit 28bb9aa
Showing
19 changed files
with
717 additions
and
69 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
52 changes: 52 additions & 0 deletions
52
...component/src/main/java/ddf/camel/component/catalog/framework/IngestTimeoutException.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,52 @@ | ||
/** | ||
* Copyright (c) Codice Foundation | ||
* | ||
* <p>This is free software: you can redistribute it and/or modify it under the terms of the GNU | ||
* Lesser General Public License as published by the Free Software Foundation, either version 3 of | ||
* the License, or any later version. | ||
* | ||
* <p>This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; | ||
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Lesser General Public License for more details. A copy of the GNU Lesser General Public | ||
* License is distributed along with this program and can be found at | ||
* <http://www.gnu.org/licenses/lgpl.html>. | ||
*/ | ||
package ddf.camel.component.catalog.framework; | ||
|
||
public class IngestTimeoutException extends FrameworkProducerException { | ||
/** The constant serialVersionUID. */ | ||
private static final long serialVersionUID = 1L; | ||
|
||
/** Instantiates a new {@code IngestTimeoutException}. */ | ||
public IngestTimeoutException() { | ||
super(); | ||
} | ||
|
||
/** | ||
* Instantiates a new {@code IngestTimeoutException} with the provided message. | ||
* | ||
* @param message the message | ||
*/ | ||
public IngestTimeoutException(String message) { | ||
super(message); | ||
} | ||
|
||
/** | ||
* Instantiates a new {@code IngestTimeoutException} with the provided message and throwable. | ||
* | ||
* @param message the message | ||
* @param throwable the throwable | ||
*/ | ||
public IngestTimeoutException(String message, Throwable throwable) { | ||
super(message, throwable); | ||
} | ||
|
||
/** | ||
* Instantiates a new {@code IngestTimeoutException} with the provided throwable. | ||
* | ||
* @param throwable the throwable | ||
*/ | ||
public IngestTimeoutException(Throwable throwable) { | ||
super(throwable); | ||
} | ||
} |
Oops, something went wrong.