blob: bf85bf0cb82394d782b1811a539a27067061e3d7 [file] [log] [blame]
{
"connector": {
"class": "org.apache.camel.kafkaconnector.jpa.CamelJpaSourceConnector",
"artifactId": "camel-jpa-kafka-connector",
"groupId": "org.apache.camel.kafkaconnector",
"id": "camel-jpa-source",
"type": "source",
"version": "0.7.0",
"description": "Store and retrieve Java objects from databases using Java Persistence API (JPA)."
},
"properties": {
"camel.source.path.entityType": {
"name": "camel.source.path.entityType",
"description": "Entity class name",
"priority": "HIGH",
"required": "true"
},
"camel.source.endpoint.joinTransaction": {
"name": "camel.source.endpoint.joinTransaction",
"description": "The camel-jpa component will join transaction by default. You can use this option to turn this off, for example if you use LOCAL_RESOURCE and join transaction doesn't work with your JPA provider. This option can also be set globally on the JpaComponent, instead of having to set it on all endpoints.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.maximumResults": {
"name": "camel.source.endpoint.maximumResults",
"description": "Set the maximum number of results to retrieve on the Query.",
"defaultValue": "-1",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.namedQuery": {
"name": "camel.source.endpoint.namedQuery",
"description": "To use a named query.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.nativeQuery": {
"name": "camel.source.endpoint.nativeQuery",
"description": "To use a custom native query. You may want to use the option resultClass also when using native queries.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.persistenceUnit": {
"name": "camel.source.endpoint.persistenceUnit",
"description": "The JPA persistence unit used by default.",
"defaultValue": "\"camel\"",
"priority": "HIGH",
"required": "true"
},
"camel.source.endpoint.query": {
"name": "camel.source.endpoint.query",
"description": "To use a custom query.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.resultClass": {
"name": "camel.source.endpoint.resultClass",
"description": "Defines the type of the returned payload (we will call entityManager.createNativeQuery(nativeQuery, resultClass) instead of entityManager.createNativeQuery(nativeQuery)). Without this option, we will return an object array. Only has an affect when using in conjunction with native query when consuming data.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.bridgeErrorHandler": {
"name": "camel.source.endpoint.bridgeErrorHandler",
"description": "Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that will be logged at WARN or ERROR level and ignored.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.consumeDelete": {
"name": "camel.source.endpoint.consumeDelete",
"description": "If true, the entity is deleted after it is consumed; if false, the entity is not deleted.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.consumeLockEntity": {
"name": "camel.source.endpoint.consumeLockEntity",
"description": "Specifies whether or not to set an exclusive lock on each entity bean while processing the results from polling.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.deleteHandler": {
"name": "camel.source.endpoint.deleteHandler",
"description": "To use a custom DeleteHandler to delete the row after the consumer is done processing the exchange",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.lockModeType": {
"name": "camel.source.endpoint.lockModeType",
"description": "To configure the lock mode on the consumer. One of: [READ] [WRITE] [OPTIMISTIC] [OPTIMISTIC_FORCE_INCREMENT] [PESSIMISTIC_READ] [PESSIMISTIC_WRITE] [PESSIMISTIC_FORCE_INCREMENT] [NONE]",
"defaultValue": "\"PESSIMISTIC_WRITE\"",
"priority": "MEDIUM",
"required": "false",
"enum": [
"READ",
"WRITE",
"OPTIMISTIC",
"OPTIMISTIC_FORCE_INCREMENT",
"PESSIMISTIC_READ",
"PESSIMISTIC_WRITE",
"PESSIMISTIC_FORCE_INCREMENT",
"NONE"
]
},
"camel.source.endpoint.maxMessagesPerPoll": {
"name": "camel.source.endpoint.maxMessagesPerPoll",
"description": "An integer value to define the maximum number of messages to gather per poll. By default, no maximum is set. Can be used to avoid polling many thousands of messages when starting up the server. Set a value of 0 or negative to disable.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.preDeleteHandler": {
"name": "camel.source.endpoint.preDeleteHandler",
"description": "To use a custom Pre-DeleteHandler to delete the row after the consumer has read the entity.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.sendEmptyMessageWhenIdle": {
"name": "camel.source.endpoint.sendEmptyMessageWhenIdle",
"description": "If the polling consumer did not poll any files, you can enable this option to send an empty message (no body) instead.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.skipLockedEntity": {
"name": "camel.source.endpoint.skipLockedEntity",
"description": "To configure whether to use NOWAIT on lock and silently skip the entity.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.transacted": {
"name": "camel.source.endpoint.transacted",
"description": "Whether to run the consumer in transacted mode, by which all messages will either commit or rollback, when the entire batch has been processed. The default behavior (false) is to commit all the previously successfully processed messages, and only rollback the last failed message.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.exceptionHandler": {
"name": "camel.source.endpoint.exceptionHandler",
"description": "To let the consumer use a custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this option is not in use. By default the consumer will deal with exceptions, that will be logged at WARN or ERROR level and ignored.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.exchangePattern": {
"name": "camel.source.endpoint.exchangePattern",
"description": "Sets the exchange pattern when the consumer creates an exchange. One of: [InOnly] [InOut] [InOptionalOut]",
"priority": "MEDIUM",
"required": "false",
"enum": [
"InOnly",
"InOut",
"InOptionalOut"
]
},
"camel.source.endpoint.parameters": {
"name": "camel.source.endpoint.parameters",
"description": "This key\/value mapping is used for building the query parameters. It is expected to be of the generic type java.util.Map where the keys are the named parameters of a given JPA query and the values are their corresponding effective values you want to select for. When it's used for producer, Simple expression can be used as a parameter value. It allows you to retrieve parameter values from the message body, header and etc.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.pollStrategy": {
"name": "camel.source.endpoint.pollStrategy",
"description": "A pluggable org.apache.camel.PollingConsumerPollingStrategy allowing you to provide your custom implementation to control error handling usually occurred during the poll operation before an Exchange have been created and being routed in Camel.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.entityManagerProperties": {
"name": "camel.source.endpoint.entityManagerProperties",
"description": "Additional properties for the entity manager to use.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.sharedEntityManager": {
"name": "camel.source.endpoint.sharedEntityManager",
"description": "Whether to use Spring's SharedEntityManager for the consumer\/producer. Note in most cases joinTransaction should be set to false as this is not an EXTENDED EntityManager.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.synchronous": {
"name": "camel.source.endpoint.synchronous",
"description": "Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.backoffErrorThreshold": {
"name": "camel.source.endpoint.backoffErrorThreshold",
"description": "The number of subsequent error polls (failed due some error) that should happen before the backoffMultipler should kick-in.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.backoffIdleThreshold": {
"name": "camel.source.endpoint.backoffIdleThreshold",
"description": "The number of subsequent idle polls that should happen before the backoffMultipler should kick-in.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.backoffMultiplier": {
"name": "camel.source.endpoint.backoffMultiplier",
"description": "To let the scheduled polling consumer backoff if there has been a number of subsequent idles\/errors in a row. The multiplier is then the number of polls that will be skipped before the next actual attempt is happening again. When this option is in use then backoffIdleThreshold and\/or backoffErrorThreshold must also be configured.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.delay": {
"name": "camel.source.endpoint.delay",
"description": "Milliseconds before the next poll.",
"defaultValue": "500L",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.greedy": {
"name": "camel.source.endpoint.greedy",
"description": "If greedy is enabled, then the ScheduledPollConsumer will run immediately again, if the previous run polled 1 or more messages.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.initialDelay": {
"name": "camel.source.endpoint.initialDelay",
"description": "Milliseconds before the first poll starts.",
"defaultValue": "1000L",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.repeatCount": {
"name": "camel.source.endpoint.repeatCount",
"description": "Specifies a maximum limit of number of fires. So if you set it to 1, the scheduler will only fire once. If you set it to 5, it will only fire five times. A value of zero or negative means fire forever.",
"defaultValue": "0L",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.runLoggingLevel": {
"name": "camel.source.endpoint.runLoggingLevel",
"description": "The consumer logs a start\/complete log line when it polls. This option allows you to configure the logging level for that. One of: [TRACE] [DEBUG] [INFO] [WARN] [ERROR] [OFF]",
"defaultValue": "\"TRACE\"",
"priority": "MEDIUM",
"required": "false",
"enum": [
"TRACE",
"DEBUG",
"INFO",
"WARN",
"ERROR",
"OFF"
]
},
"camel.source.endpoint.scheduledExecutorService": {
"name": "camel.source.endpoint.scheduledExecutorService",
"description": "Allows for configuring a custom\/shared thread pool to use for the consumer. By default each consumer has its own single threaded thread pool.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.scheduler": {
"name": "camel.source.endpoint.scheduler",
"description": "To use a cron scheduler from either camel-spring or camel-quartz component. Use value spring or quartz for built in scheduler",
"defaultValue": "\"none\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.schedulerProperties": {
"name": "camel.source.endpoint.schedulerProperties",
"description": "To configure additional properties when using a custom scheduler or any of the Quartz, Spring based scheduler.",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.startScheduler": {
"name": "camel.source.endpoint.startScheduler",
"description": "Whether the scheduler should be auto started.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.timeUnit": {
"name": "camel.source.endpoint.timeUnit",
"description": "Time unit for initialDelay and delay options. One of: [NANOSECONDS] [MICROSECONDS] [MILLISECONDS] [SECONDS] [MINUTES] [HOURS] [DAYS]",
"defaultValue": "\"MILLISECONDS\"",
"priority": "MEDIUM",
"required": "false",
"enum": [
"NANOSECONDS",
"MICROSECONDS",
"MILLISECONDS",
"SECONDS",
"MINUTES",
"HOURS",
"DAYS"
]
},
"camel.source.endpoint.useFixedDelay": {
"name": "camel.source.endpoint.useFixedDelay",
"description": "Controls if fixed delay or fixed rate is used. See ScheduledExecutorService in JDK for details.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.jpa.entityManagerFactory": {
"name": "camel.component.jpa.entityManagerFactory",
"description": "To use the EntityManagerFactory. This is strongly recommended to configure.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.jpa.joinTransaction": {
"name": "camel.component.jpa.joinTransaction",
"description": "The camel-jpa component will join transaction by default. You can use this option to turn this off, for example if you use LOCAL_RESOURCE and join transaction doesn't work with your JPA provider. This option can also be set globally on the JpaComponent, instead of having to set it on all endpoints.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.jpa.sharedEntityManager": {
"name": "camel.component.jpa.sharedEntityManager",
"description": "Whether to use Spring's SharedEntityManager for the consumer\/producer. Note in most cases joinTransaction should be set to false as this is not an EXTENDED EntityManager.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.jpa.transactionManager": {
"name": "camel.component.jpa.transactionManager",
"description": "To use the PlatformTransactionManager for managing transactions.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.jpa.bridgeErrorHandler": {
"name": "camel.component.jpa.bridgeErrorHandler",
"description": "Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that will be logged at WARN or ERROR level and ignored.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.jpa.autowiredEnabled": {
"name": "camel.component.jpa.autowiredEnabled",
"description": "Whether autowiring is enabled. This is used for automatic autowiring options (the option must be marked as autowired) by looking up in the registry to find if there is a single instance of matching type, which then gets configured on the component. This can be used for automatic configuring JDBC data sources, JMS connection factories, AWS Clients, etc.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
}
}
}