muhdaizwan commented on issue #5262:
URL: https://github.com/apache/couchdb/issues/5262#issuecomment-2569451642
> [NOTE]: # ( ^^ Provide a general summary of the issue in the title above.
^^ )
> ## Description
> We are currently testing out Nouveau and are running into a blocker that I
can't find a solution for. After creating an index without any (visible)
errors. All requests to it end with the following response from CouchDB:
>
> ```
> {
> "error": "bad_request",
> "reason": "This TopFieldCollectorManager was created without concurrency
(supportsConcurrency=false), but multiple collectors are being created"
> }
> ```
> This seems to be related to the data in the index, other indexes are
running fine. First I thought that its related to the store flag (4th
parameter of the index function) because one index that was failing with
store:true worked well with store:false.
>
> [NOTE]: # ( Describe the problem you're encountering. )
> [TIP]: # ( Do NOT give us access or passwords to your actual CouchDB! )
> ## Steps to Reproduce
>
> Create an index in a design document like:
> ```
> function(doc){
> var searchValue = "";
> if(doc.Name){
> searchValue += doc.Name;
> }
> if(doc.Description){
> searchValue += doc.Description;
> }
> if(doc.PerformedBy){
> searchValue += doc.PerformedBy;
> }
> if(doc.Component.Name){
> searchValue += doc.Component.Name;
> }
> if(doc.LastEditedBy){
> searchValue += doc.LastEditedBy;
> }
>
> index("text", "search", searchValue, {"store": false});
> }
> ```
> Run a query like:
>
`http://localhost:5984/vesse1220/_partition/1220-taskhistory/_design/history_search/_nouveau/default?q=search:clean*`
>
> Please note the database is using partitions.
>
> [NOTE]: # ( Include commands to reproduce, if possible. curl is preferred.
)
> ## Expected Behaviour
> Getting the search results back.
>
>
> ## Your Environment
> * CouchDB version used: 3.4.1
> * Browser name and version: Chrome 129.0.6668.60
> * Operating system and version: Windows 11 22621.4169
>
> ## Additional Context
> Using openjdk jdk-17.0.8.101 to run the Nouveau
>
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]