From 6c47d5d078be38d8cdccee0424de24cf1150c176 Mon Sep 17 00:00:00 2001 From: gitea_admin Date: Wed, 11 Mar 2026 14:42:26 +0000 Subject: [PATCH] Update wiki Home page for solr --- Home.md | 53 +++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 39 insertions(+), 14 deletions(-) diff --git a/Home.md b/Home.md index 93a012c..ba86db8 100644 --- a/Home.md +++ b/Home.md @@ -1,21 +1,46 @@ -# Deploy the Project on CamelX Platform +# Solr -Deploy on CamelX Platform in three steps +Perform operations against Apache Lucene Solr. -## Step 1: Create a release -From the project space, click on **"Create a release"** +## Metadata -The new version is automatically available in the list +| Property | Value | +|----------|-------| +| Scheme | `solr` | +| Support Level | Stable | +| Labels | search,monitoring | +| Version | 4.10.2 | -## Step 2: Deploy -Click on **"Deploy"** +## Maven Dependency -- **Version:** Select the desired release -- **Environment:** Choose `Development`, `Staging`, or `Production` -- **Configuration:** Select the configuration source -- **Resources:** Set CPU and Memory +```xml + + org.apache.camel + camel-solr + 4.10.2 + +``` -## Step 3: Expose -Enable **"Expose"** +## Endpoint Properties -Choose an **API Gateway** (Internal, Public, etc.) +| Name | Type | Required | Default | Description | +|------|------|----------|---------|-------------| +| `host` | string | ✓ | | The solr instance host name (set to 'default' to use the host name defined on component level) | +| `port` | integer | | `8983` | The solr instance port number | +| `basePath` | string | | `/solr` | The solr instance base path (usually /solr) | +| `async` | boolean | | `true` | Use async request processing (when supported by the solr client) | +| `autoCommit` | boolean | | `false` | If true, each producer insert/delete operation will be automatically performing a commit | +| `collection` | string | | | The name of the collection to act against | +| `connectionTimeout` | integer | | | The time in ms to wait before connection will time out. | +| `deleteByQuery` | boolean | | `true` | For the delete instruction, interprete body as query/queries instead of id/ids. | +| `from` | integer | | | Starting index of the response. | +| `operation` | object | | | What operation to perform | +| `requestHandler` | string | | | The path of the update request handler (use for update requests / set solr parameter qt for search requests) | +| `requestTimeout` | integer | | | The time in ms to wait before the request will time out (former soTimeout). | +| `size` | integer | | | Size of the response. | +| `lazyStartProducer` | boolean | | `false` | Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. | +| `solrClient` | object | | | The solr client to connect to solr. When solrClient bean is provided, all connection properties will be used from that solrClient (host, port, username, password, connectionTimeout, requestTimeout, enableSSL, ...). When not explicitly configured, camel uses the HttpJdkSolrClient. | +| `certificatePath` | string | | | The certificate that can be used to access the solr host. It can be loaded by default from classpath, but you can prefix with classpath:, file:, or http: to load the resource from different systems. | +| `enableSSL` | boolean | | `false` | Enable SSL | +| `password` | string | | | Password for authenticating | +| `username` | string | | | Basic authenticate user |