Verity not indexing all records from query

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Verity not indexing all records from query

    Hello, I'm running into an issue that I haven't encountered before.

    I'm running a query against database, and then using CFINDEX to index the
    results of the query. The problem is that the query is returning, say, 9
    records. But when I do a basic search against the collection, I'm only getting
    3 records. So, of the 9 records being returned from the database, Verity only
    seems to be hanging onto 3 of them.

    Here's the query code:

    <cfquery name="getNewsForIndex" datasource="#datasourceLIVE#">
    SELECT id, category_type, headlines, partial_story, full_story, date_live
    FROM news_admin
    </cfquery>

    Here's the CFINDEX statement:

    <cfindex collection="myCollection" action="update" type="custom"
    query="getNewsForIndex" key="id" title="headlines"
    body="headlines,partial_story,full_story" custom1="news"
    custom2="category_type">

    Does anyone have any idea why this might be happening? I've used this method
    on several occasions before and never run into this issue.

    Thanks.

    Matt

    CFDaddio Guest

  2. Similar Questions and Discussions

    1. Verity No Longer Indexing
      Can anyone tell what the error "invalid style files" means. None of my indexing scripts seems to be working. They were working. Recently upgraded to...
    2. Verity Indexing
      I have created and indexed a collection called Stds_Specs. The problem that I have know is that when one of the users uploads a file, I want verity...
    3. CF5 Verity Indexing Issue
      Our CF5 based document management web application uses the search engine(Verity) is one of the key components in the system, we have customers...
    4. CFMX 7 Verity issue with indexing full query resultsproperly
      I manage a site-wide search via CFMX's built in verity functionality. In evaluating whether to upgrade to CFMX 7, I have come across a problem that...
    5. MX 6.1 Verity Indexing
      When I try to index collections in the administrator using CF MX 6.1 Enterprise edition I don't get any error message or anything. All I get is a...
  3. #2

    Default Re: Verity not indexing all records from query

    What configuration and versions are you using? We are using Win2003, IIS and
    CFMX7 Ent and I give CFINDEX a query with about 90000 records and it always
    stops at 65520; every time and on a couple of different servers. It doesn't
    give any kind of error, so we ran it like this for a few weeks before we
    noticed it. My understanding was that CFMX7 Ent had a limit of 125K
    documents, but this is almost exactly 64K. We don't have a solution as of yet.

    fgwenger Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139