Uploaded image for project: 'Couchbase Go SDK'
  1. Couchbase Go SDK
  2. GOCBC-890

SearchQueries do not work on non-GCCCP clusters without waiting

    XMLWordPrintable

Details

    • Bug
    • Resolution: Fixed
    • Major
    • 2.1.2
    • 2.1.0
    • library
    • None
    • 1

    Description

      Summary

      SearchQuery (FTS) ops do not work in the 2.x Go SDK without sleeping for a while beforehand, if the cluster doesn't support GCCCP (i.e. is <6.5.0).

      Steps to Reproduce

      1. Create a single node 6.0.3 cluster running KV and Search.
      2. Load the travel-sample bucket onto the cluster
      3. Create an FTS index, the default (i.e. just click 'Create Index') is sufficient to demonstrate the issue
      4. Run an FTS search from the Go SDK, ensuring to follow the advice in the documentation:

        When using a Couchbase version < 6.5 you must create a valid Bucket connection using cluster.Bucket(name) before you can use Search.

        I have attached an example self-contained reproduction case as main.go, and the logs as no_sleep.log.

      Expected Results
      The search results are returned successfully.

      Actual Results
      The application panics due to the following error:

      panic: failed to get query provider: not connected to cluster | {"query":{"match":"swanky"}}
      

      Analysis
      This seems to not work after opening a bucket, then immediately performing a search.

      There are 2 ways to get this to work, one is to perform some KV ops on the default collection, which forces the connections to open.
      The other is to sleep the calling goroutine for a bit (e.g. 5 seconds), if you sleep then the search works and you don't even need the default collection to be opened.
      I've attached logs with the sleep as with_sleep.log to demonstrate the difference.

      I suspect there's not appropriate handling within the SearchQuery code to wait for a cluster that's still initializing if the cluster does not support GCCCP.

      Workaround

      Wait until the bucket object is ready to have operations performed against it, this can be done using the Bucket.WaitUntilReady() API.

      For example:

              bucket := cluster.Bucket("travel-sample")
              bucket.WaitUntilReady(30 * time.Second, &gocb.WaitUntilReadyOptions{DesiredState: gocb.ClusterStateOnline})
       
              matchResult, err := cluster.SearchQuery(
                      "travel-sample-index-hotel-description",
                      search.NewMatchQuery("swanky"),
                      &gocb.SearchOptions{
                              Limit: 10,
                      },
              )

      Attachments

        1. main.go
          1.0 kB
        2. no_sleep.log
          3 kB
        3. with_sleep.log
          23 kB

        Issue Links

          No reviews matched the request. Check your Options in the drop-down menu of this sections header.

          Activity

            People

              charles.dixon Charles Dixon
              matt.carabine Matt Carabine (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Gerrit Reviews

                  There are no open Gerrit changes

                  PagerDuty