Unable to "schedule" n1ql query error from Python service

I feel like I’ve missed something in either the configuration of my couchbase DB node, or the permissions I’ve got for my service account but I can’t seem to execute this query from my python api service. I get the following…

this is the settings I have for the user account for the service:

Can someone tell me what I’ve missed?

Hi @elbilo,

To help debug the issue better, are you able to run the query using the query workbench inside the Couchbase Server?

yes, I am. I also have checked and the connection looks to be solid in my python app.

And I’m still block on this.

If it makes a difference I’m using the enterprise 7.0.3 build 7031* version on an linux VM and my app is running under VSCode.

Thanks for checking. There are a few things that could be causing the issue.

The following information would be helpful in debugging the issue further:

  • What version of the Python SDK are you using?
  • Could you share the code snippet including the connection settings? You can remove sensitive information.
  • Could you run the application in debug mode & share the logs here?
    LCB_LOGLEVEL=5 python main.py

It seems in trying to “fix” my connection problem I’ve made it worse. Now even trying to connect to the CB instance is failing.
This is what I changed the app CB account permissions to:

As for versions:
couchbase python SDK : 3.2.7
Python : 3.7.8
FastAPI: 0.75.1
OS ubuntu : 20.04

import sys
import os
import asyncio
import json
import numbers
import socket
import time
import re            # regex package
import uvicorn      # fastAPI ingress service
from fastapi import FastAPI, Header, HTTPException, Request, status, Response
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import JSONResponse
from pydantic import BaseModel

# local libraries
from dal import DAL
from logstash_logger import send_log_message
from data_classes import bvMeta, IncentiveProgramResponse, Message

#-----------------------
# Declarations         |
#-----------------------
# CONSTANTS
dbHostUri = "http://dev-couchbase.bluevolt.io"
DbServiceUser = os.getenv('DB_SERVICE_USER')
DbServiceKey = os.getenv('DB_SERVICE_PASSWORD')

POOL_SIZE = 4
MAX_RETRIES = 10

def get_available_connection():
    # this routine finds the next available free connection in our database connection pool, reserves it, and
    # passes it back to the requester.  If no connection is available after MAX_RETRIES, None is returned
    global cache_pool
    connection = None
    retries = 0
    while not connection and retries < MAX_RETRIES:
        for item in range(POOL_SIZE):
            if not cache_pool[item]['busy']:
                connection = cache_pool[item]
                cache_pool[item]['busy'] = True
                break
        if not connection:
            time.sleep(0.1)
            retries += 1
            if retries == MAX_RETRIES: send_log_message("WARNING", None, "No available connections in pool", SERVICE_NAME)
    return connection

def free_connection(pool_id):
    # this routine frees a connection up in our cache connection pool
    global cache_pool
    cache_pool[pool_id]['busy'] = False
    return

#
# initilize db connection
#
# create cache connection.  Since our kafka listener is asynchronous, we only need
# a single synchronous cache connection.  Per couchbase doc, it is best to create this globally and allow it to
# persist, for performance reasons.  If no connection could be established, set cache_status accordingly

cache_pool = []
try:
    for i in range(POOL_SIZE):
        cache_pool.append({'id': i, 'cache': DAL(DbServiceUser, DbServiceKey, dbHostUri), 'busy': False})
    cache_status = 'connected'
except Exception as e:
    cache_status = 'unable to connect'

# initialize (FAST) API framework.
app = FastAPI()

# configure Cross-Origin Resource Sharing configuration
# TODO : Have to enter all the allowed origins
origins = ["*"]
app.add_middleware(
    CORSMiddleware,
    allow_origins=origins,
    allow_credentials=True,
    allow_methods=["*"],
    allow_headers=["*"],
)   


# GET available incentive programs for a given uni
#   The uniId selector is pulled from the BVMeta header object
@app.get("/incentives/uniPrograms", responses = {
    200: {"model": IncentiveProgramResponse},
    400: {"model": Message},
    404: {"model": Message, "description": "No incentive programs found."},
    403: {"model": Message, "description": "BAD_REQUEST"},
    422: {"model": Message, "message": "Missing or Invalid BVMeta.", "description": "UNPROCESSABLE_ENTITY"}})
async def getUniIncentivePrograms(request: Request, bvmeta: str = Header(None)):
    # validate ourBVMeta header contents
    bv_header = validate_bvmeta_header(bvmeta)
    uniId = 0
    if bv_header["universityId"] != {}: 
        if bv_header["universityId"] == None: return JSONResponse(status_code=403, content={"message": "Missing or invalid parameters."})
        uniId = bv_header["universityId"]
        # various validations - may well be moved to the DAL or BR layer
        # validate user is a member of uniAdmin for the university or a BTAdmin with proper permissions.
        # validate Uni is enabled for 3rd party incentive programs
        # validate incentive program meta data exists.
        try:
            if cache_status == "connected":
                cache_instance = get_available_connection()
                if cache_instance:
                    DAL = cache_instance["cache"]
                    results = DAL.fetchUniIncentivePrograms(uniId)
                    return JSONResponse(status_code=200, content={"message": results})
            else:
                return JSONResponse(status_code=404)    
        except: # catch *all* exceptions
            e = sys.exc_info()[0]
            return JSONResponse(status_code=400, content={"message": "<p>Error: %s</p>" % e})
    else: return JSONResponse(status_code=422, content={"message": "Missing or invalid bvMeta."})


if __name__ == "__main__":
    uvicorn.run(app, host="127.0.0.1", port=8000)

In the DAL.py; the data access layer:

class DAL:
    def __init__(self, user, passwd, host, bucket_name='BvUniversity',
                 collection_name="_default"):
        self.cluster = None
        self.bucket = None
        self.scope = None
        self.collection = None
        self.bucket_name = bucket_name
        self.scope_name = '_default'
        self.collection_name = collection_name
        self.user = user
        self.passwd = passwd
        self.host = host
        self.connect()
    #

    def connect(self):
        self.cluster = Cluster(self.host, ClusterOptions(PasswordAuthenticator(self.user, self.passwd)))
        self.bucket = self.cluster.bucket(self.bucket_name)
        self.collection = self.bucket.scope(self.scope_name).collection(self.collection_name)
    #

    def query(self, n1ql, params=[], autocommit=False):
        #if self.conn.closed:  # first off, lets confirm that we are still connected to the database.  Reconnect if not.
        #    self.connect()
        #    self.open_cursor()
        try:
            if params:
                result = self.cluster.query(n1ql, QueryOptions(positional_parameters=params))
            else:
                result = self.cluster.query(n1ql)
        except:
            result = {}
        #if autocommit and result:sql
        #    self.conn.commit()
        return result
    #
      def getUsersAvailableIncentivePrograms(self, userId, universityId):
        rows = self.query("SELECT im.userId, \
                                im.incentivePrograms[*].incentiveProgramId, \
                                ip.programName \
                            FROM default:`incentiveMemberships` im \
                            UNNEST im.incentivePrograms \
                            JOIN default:`incentivePrograms` ip \
                                ON im.incentivePrograms[*].incentiveProgramId = META(ip).id \
                            WHERE im.userId = $1", [userId])
        incentivePrograms = []
        for row in rows:
            incentivePrograms.append(row)
        return incentivePrograms

In the schema classes:

import uuid
from pydantic import BaseModel
from enum import Enum

class IncentiveProgramResponse(BaseModel):
    incentiveProgramId : str
    Name : str


#   StatusResponseCodes  - http codes used in this service
# TODO: add  statuses. 
class StatusResponseCodes(Enum):
    Approved = 200
    BadRequest = 400
    Unauthorized = 401
    Forbidden = 403
    NotFound = 404
    Conflict = 409
    InvalidAttributes = 422
    TooManyRequests = 429
    InternalServerError = 500
    ServiceUnavailable = 503   
    
class bvMeta (BaseModel):    
    transactionId: int
    universityId: int
    userId: int
    
class Message (BaseModel):
    message: str
    

I’m working on setting up and finding the log files.

Were you able to extract the logs?

That will help us in trying to get to the root of the problem.

Let us know if you need help with extracting the logs.

no I have not been able to find these logs and it’s not clear where I need to set this variable.
I’m still blocked on this and it’s getting critical. CAn you be more specific on what I need do to get these logs.

You should be able to do the following to see the detailed logs without changing much.

$ export LCB_LOGLEVEL=5
$ Run app: python app.py

I tried to add the variable as you suggested. I’m using visual studio code as my IDE and I added the LCB_LOGLEVEL to the launch.json file. Maybe I’m trying to set this variable in the wrong place. Do I set this on the remote VM running couchbase? or in the “local” machine running my app? If from the app machine is there a way to preform these settings from within the app?

The export command in Linux and MacOS sets an environment variable that any processes running in that same process (terminal window) will then use. In Windows you can set environment variables in a few different ways:

set and setx commands:

You can also set environment variables in the Gui - but it’s different per version of Windows. Note that Windows sometimes requires a reboot before other programs already running can see an environment variable set.

The Couchbase Documentation below explains how to set this up, per platform and also explains what log level to set (5 is Trace which will give you an extremely detailed log output):

Thanks,
Aaron

1 Like

The environment variable needs to be set from the machine running the application (connecting to Couchbase).

Another option to test connectivity to Couchbase from your local machine is to use the SDK Doctor. This will identify general connectivity issues (not Python SDK specific issues). The issue you are facing might not be directly related to the SDK. There is documentation on how to use it. If you use it with your cluster connection string, bucket & credentials, it will try to diagnose any issues.

I tried using set (unknow command) but setx did come back successfully, but that looks to me to set the local host environment variables (my windows environment) and not the virtual machine the VScode debugger is running.

I’ll try next the sdk doctor.

finally looks like I got the logging to work here’s what I see (in multiple parts)

PS C:\Users\larry.bilodeau\source\repos\university_incentives\ui-endpoints> & c:/Users/larry.bilodeau/source/repos/university_incentiints/.venv/Scripts/Activate.ps1
(.venv) PS C:\Users\larry.bilodeau\source\repos\university_incentives\ui-endpoints> & ‘c:\Users\larry.bilodeau\source\repos\universis\ui-endpoints.venv\Scripts\python.exe’ ‘c:\Users\larry.bilodeau.vscode\extensions\ms-python.python-2022.4.1\pythonFiles\lib\pythonncher’ ‘61471’ ‘–’ ‘c:\Users\larry.bilodeau\source\repos\university_incentives\ui-endpoints\api code\main.py’
INFO:couchbase:Initializing Couchbase logging. lcb_version=(‘3.2.5’, 197125)
0ms [Ibf4cd3e869cf9637] {5788} [INFO] (instance - L:521) Version=3.2.5, Changeset=e4de408c96550b48745b3a142d9827c898d4e96f
10ms [Ibf4cd3e869cf9637] {5788} [INFO] (instance - L:522) Effective connection string: http://dev-couchbase.bluevolt.io. Bucket=(null
219ms [Ibf4cd3e869cf9637] {5788} [INFO] (instance - L:212) DNS SRV lookup failed: LCB_ERR_UNKNOWN_HOST (1049). Ignore this if not rel
SRV records
230ms [Ibf4cd3e869cf9637] {5788} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:8091 to initial HTTP bootstrap list
235ms [Ibf4cd3e869cf9637] {5788} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:11210 to initial CCCP bootstrap lis
243ms [Ibf4cd3e869cf9637] {5788} [TRACE] (instance - L:193) Bootstrap hosts loaded (cccp:1, http:1)
INFO:couchbase.bootstrap:[1775212087] Requested network configuration: heuristic (L:277)
DEBUG:couchbase.confmon:[1775212087] Preparing providers (this may be called multiple times) (L:94)
DEBUG:couchbase.confmon:[1775212087] Provider CCCP is ENABLED (L:100)
DEBUG:couchbase.confmon:[1775212087] Provider HTTP is ENABLED (L:100)
DEBUG:couchbase.confmon:[1775212087] Refreshing current cluster map (bucket: (null)) (L:319)
INFO:couchbase.cccp:[1775212087] Requesting connection to node dev-couchbase.bluevolt.io:11210 for CCCP configuration (L:176)
DEBUG:couchbase.lcbio_mgr:[1775212087] dev-couchbase.bluevolt.io:11210 (HE=000001FFF3170F10) Creating new connection because none a in the pool (L:501)
DEBUG:couchbase.lcbio_mgr:[1775212087] dev-couchbase.bluevolt.io:11210 (HE=000001FFF3170F10) New pool entry: I=000001FFF522DBC0 (L:
INFO:couchbase.connection:[1775212087] dev-couchbase.bluevolt.io:11210 (SOCK=23bc34f2640c1e4e) Starting. Timeout=2000000us (L:497)
DEBUG:couchbase.confmon:[1775212087] Attempting to retrieve cluster map via CCCP (L:305)
ERROR:couchbase.cccp:[1775212087] NOHOST:NOPORT (CTX=0000000000000000,) Could not get configuration: LCB_ERR_TIMEOUT (201) (L:187)
INFO:couchbase.confmon:[1775212087] Provider ‘CCCP’ failed: LCB_ERR_TIMEOUT (201) (L:216)
DEBUG:couchbase.confmon:[1775212087] Will try next provider in 0us (L:260)
ERROR:couchbase.connection:[1775212087] dev-couchbase.bluevolt.io:11210 (SOCK=23bc34f2640c1e4e) Failed to establish connection: LCB (201), os errno=0 (L:168)
DEBUG:couchbase.lcbio_mgr:[1775212087] dev-couchbase.bluevolt.io:11210 (HE=000001FFF3170F10) Received result for I=000001FFF522DBC00000000; E=0xc9 (L:369)
DEBUG:couchbase.confmon:[1775212087] Attempting to retrieve cluster map via HTTP (L:305)
DEBUG:couchbase.htconfig:[1775212087] Starting HTTP Configuration Provider 000001FFF4F227C0 (L:359)
INFO:couchbase.connection:[1775212087] dev-couchbase.bluevolt.io:8091 (SOCK=deda552279c6c21b) Starting. Timeout=2000000us (L:497)
DEBUG:couchbase.connection:[1775212087] dev-couchbase.bluevolt.io:8091 (SOCK=deda552279c6c21b) Received completion handler. Status=No error] (L:393)
INFO:couchbase.connection:[1775212087] dev-couchbase.bluevolt.io:8091 (SOCK=deda552279c6c21b) Connected established (L:159)
INFO:couchbase.connection:[1775212087] dev-couchbase.bluevolt.io:8091 (SOCK=deda552279c6c21b) Couldn’t set TCP_NODELAY (L:108)
INFO:couchbase.connection:[1775212087] dev-couchbase.bluevolt.io:8091 (SOCK=deda552279c6c21b) Couldn’t set TCP_KEEPALIVE (L:108)
DEBUG:couchbase.htconfig:[1775212087] Successfuly connected to REST API dev-couchbase.bluevolt.io:8091 (L:315)
DEBUG:couchbase.ioctx:[1775212087] dev-couchbase.bluevolt.io:8091 (CTX=000001FFF2D4BEE0,unknown) Pairing with SOCK=deda552279c6c21b
DEBUG:couchbase.htconfig:[1775212087] dev-couchbase.bluevolt.io:8091 (CTX=000001FFF2D4BEE0,bc_http) Received 395 bytes on HTTP stre
DEBUG:couchbase.htconfig:[1775212087] dev-couchbase.bluevolt.io:8091 (CTX=000001FFF2D4BEE0,bc_http) Received 2920 bytes on HTTP str
DEBUG:couchbase.htconfig:[1775212087] dev-couchbase.bluevolt.io:8091 (CTX=000001FFF2D4BEE0,bc_http) Received 3787 bytes on HTTP str
DEBUG:couchbase.htconfig:[1775212087] dev-couchbase.bluevolt.io:8091 (CTX=000001FFF2D4BEE0,bc_http) Generation 0 → 1 (L:230)
INFO:couchbase.confmon:[1775212087] Setting initial configuration. Received via HTTP (bucket="", rev=-1:-1, address="dev-couchbase.bl
(L:183)
INFO:couchbase.bootstrap:[1775212087] Selected network configuration: “default” (L:95)
2387ms [I4eadf8c0b13189d3] {5788} [INFO] (instance - L:521) Version=3.2.5, Changeset=e4de408c96550b48745b3a142d9827c898d4e96f
2394ms [I4eadf8c0b13189d3] {5788} [INFO] (instance - L:522) Effective connection string: http://dev-couchbase.bluevolt.io/BvUniversitvUniversity
2401ms [I4eadf8c0b13189d3] {5788} [INFO] (instance - L:212) DNS SRV lookup failed: LCB_ERR_UNKNOWN_HOST (1049). Ignore this if not re SRV records
2407ms [I4eadf8c0b13189d3] {5788} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:8091 to initial HTTP bootstrap lis
2413ms [I4eadf8c0b13189d3] {5788} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:11210 to initial CCCP bootstrap li
2419ms [I4eadf8c0b13189d3] {5788} [TRACE] (instance - L:193) Bootstrap hosts loaded (cccp:1, http:1)
INFO:couchbase.bootstrap:[-1322153517] Requested network configuration: heuristic (L:277)
DEBUG:couchbase.confmon:[-1322153517] Preparing providers (this may be called multiple times) (L:94)
DEBUG:couchbase.confmon:[-1322153517] Provider CCCP is ENABLED (L:100)
DEBUG:couchbase.confmon:[-1322153517] Provider HTTP is ENABLED (L:100)
DEBUG:couchbase.confmon:[-1322153517] Refreshing current cluster map (bucket: BvUniversity) (L:319)
DEBUG:couchbase.confmon:[-1322153517] Attempting to retrieve cluster map via CCCP (L:305)
INFO:couchbase.cccp:[-1322153517] Requesting connection to node dev-couchbase.bluevolt.io:11210 for CCCP configuration (L:176)
DEBUG:couchbase.lcbio_mgr:[-1322153517] dev-couchbase.bluevolt.io:11210 (HE=000001FFF3171030) Creating new connection because none e in the pool (L:501)
DEBUG:couchbase.lcbio_mgr:[-1322153517] dev-couchbase.bluevolt.io:11210 (HE=000001FFF3171030) New pool entry: I=000001FFF646BD60 (L
INFO:couchbase.connection:[-1322153517] dev-couchbase.bluevolt.io:11210 (SOCK=41b711816bb8f867) Starting. Timeout=2000000us (L:497)
ERROR:couchbase.cccp:[-1322153517] NOHOST:NOPORT (CTX=0000000000000000,) Could not get configuration: LCB_ERR_TIMEOUT (201) (L:187)
INFO:couchbase.confmon:[-1322153517] Provider ‘CCCP’ failed: LCB_ERR_TIMEOUT (201) (L:216)
DEBUG:couchbase.confmon:[-1322153517] Will try next provider in 0us (L:260)
ERROR:couchbase.connection:[-1322153517] dev-couchbase.bluevolt.io:11210 (SOCK=41b711816bb8f867) Failed to establish connection: LCT (201), os errno=0 (L:168)
DEBUG:couchbase.lcbio_mgr:[-1322153517] dev-couchbase.bluevolt.io:11210 (HE=000001FFF3171030) Received result for I=000001FFF646BD600000000; E=0xc9 (L:369)
DEBUG:couchbase.confmon:[-1322153517] Attempting to retrieve cluster map via HTTP (L:305)
DEBUG:couchbase.htconfig:[-1322153517] Starting HTTP Configuration Provider 000001FFF4F22D60 (L:359)
INFO:couchbase.connection:[-1322153517] dev-couchbase.bluevolt.io:8091 (SOCK=8ff1b6cd405c843a) Starting. Timeout=2000000us (L:497)
DEBUG:couchbase.connection:[-1322153517] dev-couchbase.bluevolt.io:8091 (SOCK=8ff1b6cd405c843a) Received completion handler. Status
[No error] (L:393)
INFO:couchbase.connection:[-1322153517] dev-couchbase.bluevolt.io:8091 (SOCK=8ff1b6cd405c843a) Connected established (L:159)
INFO:couchbase.connection:[-1322153517] dev-couchbase.bluevolt.io:8091 (SOCK=8ff1b6cd405c843a) Couldn’t set TCP_NODELAY (L:108)
INFO:couchbase.connection:[-1322153517] dev-couchbase.bluevolt.io:8091 (SOCK=8ff1b6cd405c843a) Couldn’t set TCP_KEEPALIVE (L:108)
DEBUG:couchbase.htconfig:[-1322153517] Successfuly connected to REST API dev-couchbase.bluevolt.io:8091 (L:315)
DEBUG:couchbase.ioctx:[-1322153517] dev-couchbase.bluevolt.io:8091 (CTX=000001FFF2D4B790,unknown) Pairing with SOCK=8ff1b6cd405c843
DEBUG:couchbase.htconfig:[-1322153517] dev-couchbase.bluevolt.io:8091 (CTX=000001FFF2D4B790,bc_http) Received 395 bytes on HTTP str
DEBUG:couchbase.htconfig:[-1322153517] dev-couchbase.bluevolt.io:8091 (CTX=000001FFF2D4B790,bc_http) Received 8814 bytes on HTTP stDEBUG:couchbase.htconfig:[-1322153517] dev-couchbase.bluevolt.io:8091 (CTX=000001FFF2D4B790,bc_http) Generation 0 → 1 (L:230)
INFO:couchbase.confmon:[-1322153517] Setting initial configuration. Received via HTTP (bucket=“BvUniversity”, rev=1:3586, address=“debluevolt.io”) (L:183)
INFO:couchbase.bootstrap:[-1322153517] Selected network configuration: “default” (L:95)
214ms [I238e61f8aa887ba1] {5788} [INFO] (instance - L:521) Version=3.2.5, Changeset=e4de408c96550b48745b3a142d9827c898d4e96f
221ms [I238e61f8aa887ba1] {5788} [INFO] (instance - L:522) Effective connection string: http://dev-couchbase.bluevolt.io/BvUniversity_UniIncentives. Bucket=BvUniversity
365ms [I238e61f8aa887ba1] {5788} [INFO] (instance - L:212) DNS SRV lookup failed: LCB_ERR_UNKNOWN_HOST (1049). Ignore this if not rel
SRV records
393ms [I238e61f8aa887ba1] {5788} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:8091 to initial HTTP bootstrap list
398ms [I238e61f8aa887ba1] {5788} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:11210 to initial CCCP bootstrap lis
404ms [I238e61f8aa887ba1] {5788} [TRACE] (instance - L:193) Bootstrap hosts loaded (cccp:1, http:1)
INFO:couchbase.bootstrap:[-1433896031] Requested network configuration: heuristic (L:277)
DEBUG:couchbase.confmon:[-1433896031] Preparing providers (this may be called multiple times) (L:94)
DEBUG:couchbase.confmon:[-1433896031] Provider CCCP is ENABLED (L:100)
DEBUG:couchbase.confmon:[-1433896031] Provider HTTP is ENABLED (L:100)
DEBUG:couchbase.confmon:[-1433896031] Refreshing current cluster map (bucket: BvUniversity) (L:319)
DEBUG:couchbase.confmon:[-1433896031] Attempting to retrieve cluster map via CCCP (L:305)
INFO:couchbase.cccp:[-1433896031] Requesting connection to node dev-couchbase.bluevolt.io:11210 for CCCP configuration (L:176)
DEBUG:couchbase.lcbio_mgr:[-1433896031] dev-couchbase.bluevolt.io:11210 (HE=000001FFF31711E0) Creating new connection because none e in the pool (L:501)
DEBUG:couchbase.lcbio_mgr:[-1433896031] dev-couchbase.bluevolt.io:11210 (HE=000001FFF31711E0) New pool entry: I=000001FFF646B220 (L
INFO:couchbase.connection:[-1433896031] dev-couchbase.bluevolt.io:11210 (SOCK=fb0c9c08c5a4c4ee) Starting. Timeout=2000000us (L:497)
ERROR:couchbase.cccp:[-1433896031] NOHOST:NOPORT (CTX=0000000000000000,) Could not get configuration: LCB_ERR_TIMEOUT (201) (L:187)
INFO:couchbase.confmon:[-1433896031] Provider ‘CCCP’ failed: LCB_ERR_TIMEOUT (201) (L:216)
DEBUG:couchbase.confmon:[-1433896031] Will try next provider in 0us (L:260)
ERROR:couchbase.connection:[-1433896031] dev-couchbase.bluevolt.io:11210 (SOCK=fb0c9c08c5a4c4ee) Failed to establish connection: LCT (201), os errno=0 (L:168)
DEBUG:couchbase.lcbio_mgr:[-1433896031] dev-couchbase.bluevolt.io:11210 (HE=000001FFF31711E0) Received result for I=000001FFF646B2200000000; E=0xc9 (L:369)
DEBUG:couchbase.confmon:[-1433896031] Attempting to retrieve cluster map via HTTP (L:305)
DEBUG:couchbase.htconfig:[-1433896031] Starting HTTP Configuration Provider 000001FFF4F22F40 (L:359)
INFO:couchbase.connection:[-1433896031] dev-couchbase.bluevolt.io:8091 (SOCK=702b25fdc5aebfac) Starting. Timeout=2000000us (L:497)
DEBUG:couchbase.connection:[-1433896031] dev-couchbase.bluevolt.io:8091 (SOCK=702b25fdc5aebfac) Received completion handler. Status
[No error] (L:393)
INFO:couchbase.connection:[-1433896031] dev-couchbase.bluevolt.io:8091 (SOCK=702b25fdc5aebfac) Connected established (L:159)
INFO:couchbase.connection:[-1433896031] dev-couchbase.bluevolt.io:8091 (SOCK=702b25fdc5aebfac) Couldn’t set TCP_NODELAY (L:108)
(.venv) PS C:\Users\larry.bilodeau\source\repos\university_incentives\ui-endpoints> c:; cd ‘c:\Users\larry.bilodeau\source\repos\university_incentives\ui-endpoints’; & ‘c:\Users\larry.bilodeau\source\repos\university_incentives\ui-endpoints.venv\Scripts\python.exe’ ‘c:\Users\larry.bilodeau.vscode\extensions\ms-python.python-2022.4.1\pythonFiles\lib\python\debugpy\launcher’ ‘61585’ ‘–’ ‘c:\Users\larry.bilodeau\source\repos\university_incentives\ui-endpoints\api code\main.py’

part 2 of logs:

INFO:couchbase:Initializing Couchbase logging. lcb_version=(‘3.2.5’, 197125)
0ms [I1af299acef072fba] {14824} [INFO] (instance - L:521) Version=3.2.5, Changeset=e4de408c96550b48745b3a142d9827c898d4e96f
5ms [I1af299acef072fba] {14824} [INFO] (instance - L:522) Effective connection string: http://dev-couchbase.bluevolt.io. Bucket=(null)
144ms [I1af299acef072fba] {14824} [INFO] (instance - L:212) DNS SRV lookup failed: LCB_ERR_UNKNOWN_HOST (1049). Ignore this if not relying on DNS SRV records
152ms [I1af299acef072fba] {14824} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:8091 to initial HTTP bootstrap list
158ms [I1af299acef072fba] {14824} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:11210 to initial CCCP bootstrap list163ms [I1af299acef072fba] {14824} [TRACE] (instance - L:193) Bootstrap hosts loaded (cccp:1, http:1)
INFO:couchbase.bootstrap:[-284741702] Requested network configuration: heuristic (L:277)
DEBUG:couchbase.confmon:[-284741702] Preparing providers (this may be called multiple times) (L:94)
DEBUG:couchbase.confmon:[-284741702] Provider CCCP is ENABLED (L:100)
DEBUG:couchbase.confmon:[-284741702] Provider HTTP is ENABLED (L:100)
DEBUG:couchbase.confmon:[-284741702] Refreshing current cluster map (bucket: (null)) (L:319)
INFO:couchbase.cccp:[-284741702] Requesting connection to node dev-couchbase.bluevolt.io:11210 for CCCP configuration (L:176)
DEBUG:couchbase.lcbio_mgr:[-284741702] dev-couchbase.bluevolt.io:11210 (HE=000001FA908615A0) Creating new connection because none are available in the pool (L:501)
DEBUG:couchbase.lcbio_mgr:[-284741702] dev-couchbase.bluevolt.io:11210 (HE=000001FA908615A0) New pool entry: I=000001FA9368E800 (L:413)
INFO:couchbase.connection:[-284741702] dev-couchbase.bluevolt.io:11210 (SOCK=f9e5737ecc7f9e18) Starting. Timeout=2000000us (L:497)
DEBUG:couchbase.confmon:[-284741702] Attempting to retrieve cluster map via CCCP (L:305)
ERROR:couchbase.cccp:[-284741702] NOHOST:NOPORT (CTX=0000000000000000,) Could not get configuration: LCB_ERR_TIMEOUT (201) (L:187)
INFO:couchbase.confmon:[-284741702] Provider ‘CCCP’ failed: LCB_ERR_TIMEOUT (201) (L:216)
DEBUG:couchbase.confmon:[-284741702] Will try next provider in 0us (L:260)
ERROR:couchbase.connection:[-284741702] dev-couchbase.bluevolt.io:11210 (SOCK=f9e5737ecc7f9e18) Failed to establish connection: LCB_ERR_TIMEOUT (201), os errno=0 (L:168)
DEBUG:couchbase.lcbio_mgr:[-284741702] dev-couchbase.bluevolt.io:11210 (HE=000001FA908615A0) Received result for I=000001FA9368E800,C=0000000000000000; E=0xc9 (L:369)
DEBUG:couchbase.confmon:[-284741702] Attempting to retrieve cluster map via HTTP (L:305)
DEBUG:couchbase.htconfig:[-284741702] Starting HTTP Configuration Provider 000001FA934B92E0 (L:359)
INFO:couchbase.connection:[-284741702] dev-couchbase.bluevolt.io:8091 (SOCK=f5a2a2e6c27795a0) Starting. Timeout=2000000us (L:497)
DEBUG:couchbase.connection:[-284741702] dev-couchbase.bluevolt.io:8091 (SOCK=f5a2a2e6c27795a0) Received completion handler. Status=0. errno=0 [No error] (L:393)
INFO:couchbase.connection:[-284741702] dev-couchbase.bluevolt.io:8091 (SOCK=f5a2a2e6c27795a0) Connected established (L:159)
INFO:couchbase.connection:[-284741702] dev-couchbase.bluevolt.io:8091 (SOCK=f5a2a2e6c27795a0) Couldn’t set TCP_NODELAY (L:108)
INFO:couchbase.connection:[-284741702] dev-couchbase.bluevolt.io:8091 (SOCK=f5a2a2e6c27795a0) Couldn’t set TCP_KEEPALIVE (L:108)
DEBUG:couchbase.htconfig:[-284741702] Successfuly connected to REST API dev-couchbase.bluevolt.io:8091 (L:315)
DEBUG:couchbase.ioctx:[-284741702] dev-couchbase.bluevolt.io:8091 (CTX=000001FA908C60B0,unknown) Pairing with SOCK=f5a2a2e6c27795a0 (L:94)
DEBUG:couchbase.htconfig:[-284741702] dev-couchbase.bluevolt.io:8091 (CTX=000001FA908C60B0,bc_http) Received 395 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[-284741702] dev-couchbase.bluevolt.io:8091 (CTX=000001FA908C60B0,bc_http) Received 2920 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[-284741702] dev-couchbase.bluevolt.io:8091 (CTX=000001FA908C60B0,bc_http) Received 3815 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[-284741702] dev-couchbase.bluevolt.io:8091 (CTX=000001FA908C60B0,bc_http) Generation 0 → 1 (L:230)
INFO:couchbase.confmon:[-284741702] Setting initial configuration. Received via HTTP (bucket="", rev=-1:-1, address=“dev-couchbase.bluevolt.io”) (L:183)
INFO:couchbase.bootstrap:[-284741702] Selected network configuration: “default” (L:95)
2291ms [Id40f9e614cca2ecc] {14824} [INFO] (instance - L:521) Version=3.2.5, Changeset=e4de408c96550b48745b3a142d9827c898d4e96f
2297ms [Id40f9e614cca2ecc] {14824} [INFO] (instance - L:522) Effective connection string: http://dev-couchbase.bluevolt.io/BvUniversity?. Bucket=BvUniversity
2305ms [Id40f9e614cca2ecc] {14824} [INFO] (instance - L:212) DNS SRV lookup failed: LCB_ERR_UNKNOWN_HOST (1049). Ignore this if not relying on DNS SRV records
2312ms [Id40f9e614cca2ecc] {14824} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:8091 to initial HTTP bootstrap list2317ms [Id40f9e614cca2ecc] {14824} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:11210 to initial CCCP bootstrap list
2323ms [Id40f9e614cca2ecc] {14824} [TRACE] (instance - L:193) Bootstrap hosts loaded (cccp:1, http:1)
INFO:couchbase.bootstrap:[1288318668] Requested network configuration: heuristic (L:277)
DEBUG:couchbase.confmon:[1288318668] Preparing providers (this may be called multiple times) (L:94)
DEBUG:couchbase.confmon:[1288318668] Provider CCCP is ENABLED (L:100)
DEBUG:couchbase.confmon:[1288318668] Provider HTTP is ENABLED (L:100)
DEBUG:couchbase.confmon:[1288318668] Refreshing current cluster map (bucket: BvUniversity) (L:319)
DEBUG:couchbase.confmon:[1288318668] Attempting to retrieve cluster map via CCCP (L:305)
INFO:couchbase.cccp:[1288318668] Requesting connection to node dev-couchbase.bluevolt.io:11210 for CCCP configuration (L:176)
DEBUG:couchbase.lcbio_mgr:[1288318668] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BC760) Creating new connection because none are available in the pool (L:501)
DEBUG:couchbase.lcbio_mgr:[1288318668] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BC760) New pool entry: I=000001FA949D4210 (L:413)
INFO:couchbase.connection:[1288318668] dev-couchbase.bluevolt.io:11210 (SOCK=8c7d815516c202ce) Starting. Timeout=2000000us (L:497)
ERROR:couchbase.cccp:[1288318668] NOHOST:NOPORT (CTX=0000000000000000,) Could not get configuration: LCB_ERR_TIMEOUT (201) (L:187)
INFO:couchbase.confmon:[1288318668] Provider ‘CCCP’ failed: LCB_ERR_TIMEOUT (201) (L:216)
DEBUG:couchbase.confmon:[1288318668] Will try next provider in 0us (L:260)
ERROR:couchbase.connection:[1288318668] dev-couchbase.bluevolt.io:11210 (SOCK=8c7d815516c202ce) Failed to establish connection: LCB_ERR_TIMEOUT (201), os errno=0 (L:168)
DEBUG:couchbase.lcbio_mgr:[1288318668] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BC760) Received result for I=000001FA949D4210,C=0000000000000000; E=0xc9 (L:369)
DEBUG:couchbase.confmon:[1288318668] Attempting to retrieve cluster map via HTTP (L:305)
DEBUG:couchbase.htconfig:[1288318668] Starting HTTP Configuration Provider 000001FA934B8CA0 (L:359)
INFO:couchbase.connection:[1288318668] dev-couchbase.bluevolt.io:8091 (SOCK=71942e35afdbe794) Starting. Timeout=2000000us (L:497)
DEBUG:couchbase.connection:[1288318668] dev-couchbase.bluevolt.io:8091 (SOCK=71942e35afdbe794) Received completion handler. Status=0. errno=0 [No error] (L:393)
INFO:couchbase.connection:[1288318668] dev-couchbase.bluevolt.io:8091 (SOCK=71942e35afdbe794) Connected established (L:159)
INFO:couchbase.connection:[1288318668] dev-couchbase.bluevolt.io:8091 (SOCK=71942e35afdbe794) Couldn’t set TCP_NODELAY (L:108)
INFO:couchbase.connection:[1288318668] dev-couchbase.bluevolt.io:8091 (SOCK=71942e35afdbe794) Couldn’t set TCP_KEEPALIVE (L:108)
DEBUG:couchbase.htconfig:[1288318668] Successfuly connected to REST API dev-couchbase.bluevolt.io:8091 (L:315)
DEBUG:couchbase.ioctx:[1288318668] dev-couchbase.bluevolt.io:8091 (CTX=000001FA908C5BD0,unknown) Pairing with SOCK=71942e35afdbe794 (L:94)
DEBUG:couchbase.htconfig:[1288318668] dev-couchbase.bluevolt.io:8091 (CTX=000001FA908C5BD0,bc_http) Received 395 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[1288318668] dev-couchbase.bluevolt.io:8091 (CTX=000001FA908C5BD0,bc_http) Received 2920 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[1288318668] dev-couchbase.bluevolt.io:8091 (CTX=000001FA908C5BD0,bc_http) Received 5894 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[1288318668] dev-couchbase.bluevolt.io:8091 (CTX=000001FA908C5BD0,bc_http) Generation 0 → 1 (L:230)
INFO:couchbase.confmon:[1288318668] Setting initial configuration. Received via HTTP (bucket=“BvUniversity”, rev=1:3586, address=“dev-couchbase.bluevolt.io”) (L:183)
INFO:couchbase.bootstrap:[1288318668] Selected network configuration: “default” (L:95)
1142ms [Ie638c0da314e7c0f] {14824} [INFO] (instance - L:521) Version=3.2.5, Changeset=e4de408c96550b48745b3a142d9827c898d4e96f
1148ms [Ie638c0da314e7c0f] {14824} [INFO] (instance - L:522) Effective connection string: http://dev-couchbase.bluevolt.io/BvUniversity?username=sp_UniIncentives. Bucket=BvUniversity
1379ms [Ie638c0da314e7c0f] {14824} [INFO] (instance - L:212) DNS SRV lookup failed: LCB_ERR_UNKNOWN_HOST (1049). Ignore this if not relying on DNS SRV records
1389ms [Ie638c0da314e7c0f] {14824} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:8091 to initial HTTP bootstrap list1395ms [Ie638c0da314e7c0f] {14824} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:11210 to initial CCCP bootstrap list
1402ms [Ie638c0da314e7c0f] {14824} [TRACE] (instance - L:193) Bootstrap hosts loaded (cccp:1, http:1)
INFO:couchbase.bootstrap:[827227151] Requested network configuration: heuristic (L:277)
DEBUG:couchbase.confmon:[827227151] Preparing providers (this may be called multiple times) (L:94)
DEBUG:couchbase.confmon:[827227151] Provider CCCP is ENABLED (L:100)
DEBUG:couchbase.confmon:[827227151] Provider HTTP is ENABLED (L:100)
DEBUG:couchbase.confmon:[827227151] Refreshing current cluster map (bucket: BvUniversity) (L:319)
DEBUG:couchbase.confmon:[827227151] Attempting to retrieve cluster map via CCCP (L:305)
INFO:couchbase.cccp:[827227151] Requesting connection to node dev-couchbase.bluevolt.io:11210 for CCCP configuration (L:176)
DEBUG:couchbase.lcbio_mgr:[827227151] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BC370) Creating new connection because none are
available in the pool (L:501)
DEBUG:couchbase.lcbio_mgr:[827227151] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BC370) New pool entry: I=000001FA91687740 (L:413)
INFO:couchbase.connection:[827227151] dev-couchbase.bluevolt.io:11210 (SOCK=eaf80f0600495518) Starting. Timeout=2000000us (L:497)
ERROR:couchbase.cccp:[827227151] NOHOST:NOPORT (CTX=0000000000000000,) Could not get configuration: LCB_ERR_TIMEOUT (201) (L:187)
INFO:couchbase.confmon:[827227151] Provider ‘CCCP’ failed: LCB_ERR_TIMEOUT (201) (L:216)
DEBUG:couchbase.confmon:[827227151] Will try next provider in 0us (L:260)
ERROR:couchbase.connection:[827227151] dev-couchbase.bluevolt.io:11210 (SOCK=eaf80f0600495518) Failed to establish connection: LCB_ERR_TIMEOUT (201), os errno=0 (L:168)
DEBUG:couchbase.lcbio_mgr:[827227151] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BC370) Received result for I=000001FA91687740,C=0000000000000000; E=0xc9 (L:369)
DEBUG:couchbase.confmon:[827227151] Attempting to retrieve cluster map via HTTP (L:305)
DEBUG:couchbase.htconfig:[827227151] Starting HTTP Configuration Provider 000001FA934B8F20 (L:359)
INFO:couchbase.connection:[827227151] dev-couchbase.bluevolt.io:8091 (SOCK=0fafeef60873c934) Starting. Timeout=2000000us (L:497)
DEBUG:couchbase.connection:[827227151] dev-couchbase.bluevolt.io:8091 (SOCK=0fafeef60873c934) Received completion handler. Status=0.
errno=0 [No error] (L:393)
INFO:couchbase.connection:[827227151] dev-couchbase.bluevolt.io:8091 (SOCK=0fafeef60873c934) Connected established (L:159)
INFO:couchbase.connection:[827227151] dev-couchbase.bluevolt.io:8091 (SOCK=0fafeef60873c934) Couldn’t set TCP_NODELAY (L:108)
INFO:couchbase.connection:[827227151] dev-couchbase.bluevolt.io:8091 (SOCK=0fafeef60873c934) Couldn’t set TCP_KEEPALIVE (L:108)
DEBUG:couchbase.htconfig:[827227151] Successfuly connected to REST API dev-couchbase.bluevolt.io:8091 (L:315)
DEBUG:couchbase.ioctx:[827227151] dev-couchbase.bluevolt.io:8091 (CTX=000001FA908C56F0,unknown) Pairing with SOCK=0fafeef60873c934 (L:94)
DEBUG:couchbase.htconfig:[827227151] dev-couchbase.bluevolt.io:8091 (CTX=000001FA908C56F0,bc_http) Received 395 bytes on HTTP stream
(L:214)
DEBUG:couchbase.htconfig:[827227151] dev-couchbase.bluevolt.io:8091 (CTX=000001FA908C56F0,bc_http) Received 1460 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[827227151] dev-couchbase.bluevolt.io:8091 (CTX=000001FA908C56F0,bc_http) Received 1460 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[827227151] dev-couchbase.bluevolt.io:8091 (CTX=000001FA908C56F0,bc_http) Received 4380 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[827227151] dev-couchbase.bluevolt.io:8091 (CTX=000001FA908C56F0,bc_http) Received 1514 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[827227151] dev-couchbase.bluevolt.io:8091 (CTX=000001FA908C56F0,bc_http) Generation 0 → 1 (L:230)
INFO:couchbase.confmon:[827227151] Setting initial configuration. Received via HTTP (bucket=“BvUniversity”, rev=1:3586, address=“dev-couchbase.bluevolt.io”) (L:183)
INFO:couchbase.bootstrap:[827227151] Selected network configuration: “default” (L:95)
3509ms [I9ed690a910bd4595] {14824} [INFO] (instance - L:521) Version=3.2.5, Changeset=e4de408c96550b48745b3a142d9827c898d4e96f
3514ms [I9ed690a910bd4595] {14824} [INFO] (instance - L:522) Effective connection string: http://dev-couchbase.bluevolt.io. Bucket=(null)
3520ms [I9ed690a910bd4595] {14824} [INFO] (instance - L:212) DNS SRV lookup failed: LCB_ERR_UNKNOWN_HOST (1049). Ignore this if not relying on DNS SRV records
3526ms [I9ed690a910bd4595] {14824} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:8091 to initial HTTP bootstrap list3532ms [I9ed690a910bd4595] {14824} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:11210 to initial CCCP bootstrap list
3538ms [I9ed690a910bd4595] {14824} [TRACE] (instance - L:193) Bootstrap hosts loaded (cccp:1, http:1)
INFO:couchbase.bootstrap:[280839573] Requested network configuration: heuristic (L:277)
DEBUG:couchbase.confmon:[280839573] Preparing providers (this may be called multiple times) (L:94)
DEBUG:couchbase.confmon:[280839573] Provider CCCP is ENABLED (L:100)
DEBUG:couchbase.confmon:[280839573] Provider HTTP is ENABLED (L:100)
DEBUG:couchbase.confmon:[280839573] Refreshing current cluster map (bucket: (null)) (L:319)
INFO:couchbase.cccp:[280839573] Requesting connection to node dev-couchbase.bluevolt.io:11210 for CCCP configuration (L:176)
DEBUG:couchbase.lcbio_mgr:[280839573] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BC400) Creating new connection because none are
available in the pool (L:501)
DEBUG:couchbase.lcbio_mgr:[280839573] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BC400) New pool entry: I=000001FA91686B40 (L:413)
INFO:couchbase.connection:[280839573] dev-couchbase.bluevolt.io:11210 (SOCK=ace3562ec2a47c8a) Starting. Timeout=2000000us (L:497)
DEBUG:couchbase.confmon:[280839573] Attempting to retrieve cluster map via CCCP (L:305)
ERROR:couchbase.cccp:[280839573] NOHOST:NOPORT (CTX=0000000000000000,) Could not get configuration: LCB_ERR_TIMEOUT (201) (L:187)
INFO:couchbase.confmon:[280839573] Provider ‘CCCP’ failed: LCB_ERR_TIMEOUT (201) (L:216)
DEBUG:couchbase.confmon:[280839573] Will try next provider in 0us (L:260)
ERROR:couchbase.connection:[280839573] dev-couchbase.bluevolt.io:11210 (SOCK=ace3562ec2a47c8a) Failed to establish connection: LCB_ERR_TIMEOUT (201), os errno=0 (L:168)
DEBUG:couchbase.lcbio_mgr:[280839573] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BC400) Received result for I=000001FA91686B40,C=0000000000000000; E=0xc9 (L:369)
DEBUG:couchbase.confmon:[280839573] Attempting to retrieve cluster map via HTTP (L:305)
DEBUG:couchbase.htconfig:[280839573] Starting HTTP Configuration Provider 000001FA934B8980 (L:359)
INFO:couchbase.connection:[280839573] dev-couchbase.bluevolt.io:8091 (SOCK=08dea7cbb47eab54) Starting. Timeout=2000000us (L:497)
DEBUG:couchbase.connection:[280839573] dev-couchbase.bluevolt.io:8091 (SOCK=08dea7cbb47eab54) Received completion handler. Status=0.
errno=0 [No error] (L:393)
INFO:couchbase.connection:[280839573] dev-couchbase.bluevolt.io:8091 (SOCK=08dea7cbb47eab54) Connected established (L:159)
INFO:couchbase.connection:[280839573] dev-couchbase.bluevolt.io:8091 (SOCK=08dea7cbb47eab54) Couldn’t set TCP_NODELAY (L:108)
INFO:couchbase.connection:[280839573] dev-couchbase.bluevolt.io:8091 (SOCK=08dea7cbb47eab54) Couldn’t set TCP_KEEPALIVE (L:108)
DEBUG:couchbase.htconfig:[280839573] Successfuly connected to REST API dev-couchbase.bluevolt.io:8091 (L:315)
DEBUG:couchbase.ioctx:[280839573] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A65920,unknown) Pairing with SOCK=08dea7cbb47eab54 (L:94)
DEBUG:couchbase.htconfig:[280839573] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A65920,bc_http) Received 395 bytes on HTTP stream
(L:214)
DEBUG:couchbase.htconfig:[280839573] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A65920,bc_http) Received 2920 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[280839573] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A65920,bc_http) Received 3813 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[280839573] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A65920,bc_http) Generation 0 → 1 (L:230)
INFO:couchbase.confmon:[280839573] Setting initial configuration. Received via HTTP (bucket="", rev=-1:-1, address=“dev-couchbase.bluevolt.io”) (L:183)
INFO:couchbase.bootstrap:[280839573] Selected network configuration: “default” (L:95)
1343ms [I2c197c7e921bfdb3] {14824} [INFO] (instance - L:521) Version=3.2.5, Changeset=e4de408c96550b48745b3a142d9827c898d4e96f
1348ms [I2c197c7e921bfdb3] {14824} [INFO] (instance - L:522) Effective connection string: http://dev-couchbase.bluevolt.io/BvUniversity?. Bucket=BvUniversity
1354ms [I2c197c7e921bfdb3] {14824} [INFO] (instance - L:212) DNS SRV lookup failed: LCB_ERR_UNKNOWN_HOST (1049). Ignore this if not relying on DNS SRV records
1361ms [I2c197c7e921bfdb3] {14824} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:8091 to initial HTTP bootstrap list1368ms [I2c197c7e921bfdb3] {14824} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:11210 to initial CCCP bootstrap list
1375ms [I2c197c7e921bfdb3] {14824} [TRACE] (instance - L:193) Bootstrap hosts loaded (cccp:1, http:1)
INFO:couchbase.bootstrap:[-1843659341] Requested network configuration: heuristic (L:277)
DEBUG:couchbase.confmon:[-1843659341] Preparing providers (this may be called multiple times) (L:94)
DEBUG:couchbase.confmon:[-1843659341] Provider CCCP is ENABLED (L:100)
DEBUG:couchbase.confmon:[-1843659341] Provider HTTP is ENABLED (L:100)
DEBUG:couchbase.confmon:[-1843659341] Refreshing current cluster map (bucket: BvUniversity) (L:319)
DEBUG:couchbase.confmon:[-1843659341] Attempting to retrieve cluster map via CCCP (L:305)
INFO:couchbase.cccp:[-1843659341] Requesting connection to node dev-couchbase.bluevolt.io:11210 for CCCP configuration (L:176)
DEBUG:couchbase.lcbio_mgr:[-1843659341] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BBCB0) Creating new connection because none are available in the pool (L:501)
DEBUG:couchbase.lcbio_mgr:[-1843659341] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BBCB0) New pool entry: I=000001FA94A75B20 (L:413)
INFO:couchbase.connection:[-1843659341] dev-couchbase.bluevolt.io:11210 (SOCK=83efd8e148ed1a6c) Starting. Timeout=2000000us (L:497)
ERROR:couchbase.cccp:[-1843659341] NOHOST:NOPORT (CTX=0000000000000000,) Could not get configuration: LCB_ERR_TIMEOUT (201) (L:187)
INFO:couchbase.confmon:[-1843659341] Provider ‘CCCP’ failed: LCB_ERR_TIMEOUT (201) (L:216)
DEBUG:couchbase.confmon:[-1843659341] Will try next provider in 0us (L:260)
ERROR:couchbase.connection:[-1843659341] dev-couchbase.bluevolt.io:11210 (SOCK=83efd8e148ed1a6c) Failed to establish connection: LCB_ERR_TIMEOUT (201), os errno=0 (L:168)
DEBUG:couchbase.lcbio_mgr:[-1843659341] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BBCB0) Received result for I=000001FA94A75B20,C=0000000000000000; E=0xc9 (L:369)
DEBUG:couchbase.confmon:[-1843659341] Attempting to retrieve cluster map via HTTP (L:305)
DEBUG:couchbase.htconfig:[-1843659341] Starting HTTP Configuration Provider 000001FA934B8A20 (L:359)
INFO:couchbase.connection:[-1843659341] dev-couchbase.bluevolt.io:8091 (SOCK=57dc954b8ea18011) Starting. Timeout=2000000us (L:497)
DEBUG:couchbase.connection:[-1843659341] dev-couchbase.bluevolt.io:8091 (SOCK=57dc954b8ea18011) Received completion handler. Status=0. errno=0 [No error] (L:393)
INFO:couchbase.connection:[-1843659341] dev-couchbase.bluevolt.io:8091 (SOCK=57dc954b8ea18011) Connected established (L:159)
INFO:couchbase.connection:[-1843659341] dev-couchbase.bluevolt.io:8091 (SOCK=57dc954b8ea18011) Couldn’t set TCP_NODELAY (L:108)
INFO:couchbase.connection:[-1843659341] dev-couchbase.bluevolt.io:8091 (SOCK=57dc954b8ea18011) Couldn’t set TCP_KEEPALIVE (L:108)
DEBUG:couchbase.htconfig:[-1843659341] Successfuly connected to REST API dev-couchbase.bluevolt.io:8091 (L:315)
DEBUG:couchbase.ioctx:[-1843659341] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A65AC0,unknown) Pairing with SOCK=57dc954b8ea18011
(L:94)
DEBUG:couchbase.htconfig:[-1843659341] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A65AC0,bc_http) Received 395 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[-1843659341] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A65AC0,bc_http) Received 4380 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[-1843659341] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A65AC0,bc_http) Received 1460 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[-1843659341] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A65AC0,bc_http) Received 2974 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[-1843659341] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A65AC0,bc_http) Generation 0 → 1 (L:230)
INFO:couchbase.confmon:[-1843659341] Setting initial configuration. Received via HTTP (bucket=“BvUniversity”, rev=1:3586, address=“dev-couchbase.bluevolt.io”) (L:183)
INFO:couchbase.bootstrap:[-1843659341] Selected network configuration: “default” (L:95)
187ms [Ide38bbfeea7108fc] {14824} [INFO] (instance - L:521) Version=3.2.5, Changeset=e4de408c96550b48745b3a142d9827c898d4e96f
195ms [Ide38bbfeea7108fc] {14824} [INFO] (instance - L:522) Effective connection string: http://dev-couchbase.bluevolt.io/BvUniversity?username=sp_UniIncentives. Bucket=BvUniversity
345ms [Ide38bbfeea7108fc] {14824} [INFO] (instance - L:212) DNS SRV lookup failed: LCB_ERR_UNKNOWN_HOST (1049). Ignore this if not relying on DNS SRV records
353ms [Ide38bbfeea7108fc] {14824} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:8091 to initial HTTP bootstrap list
358ms [Ide38bbfeea7108fc] {14824} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:11210 to initial CCCP bootstrap list363ms [Ide38bbfeea7108fc] {14824} [TRACE] (instance - L:193) Bootstrap hosts loaded (cccp:1, http:1)

part 3:

INFO:couchbase.bootstrap:[-361690884] Requested network configuration: heuristic (L:277)
DEBUG:couchbase.confmon:[-361690884] Preparing providers (this may be called multiple times) (L:94)
DEBUG:couchbase.confmon:[-361690884] Provider CCCP is ENABLED (L:100)
DEBUG:couchbase.confmon:[-361690884] Provider HTTP is ENABLED (L:100)
DEBUG:couchbase.confmon:[-361690884] Refreshing current cluster map (bucket: BvUniversity) (L:319)
DEBUG:couchbase.confmon:[-361690884] Attempting to retrieve cluster map via CCCP (L:305)
INFO:couchbase.cccp:[-361690884] Requesting connection to node dev-couchbase.bluevolt.io:11210 for CCCP configuration (L:176)
DEBUG:couchbase.lcbio_mgr:[-361690884] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BCBE0) Creating new connection because none are available in the pool (L:501)
DEBUG:couchbase.lcbio_mgr:[-361690884] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BCBE0) New pool entry: I=000001FA94A74CE0 (L:413)
INFO:couchbase.connection:[-361690884] dev-couchbase.bluevolt.io:11210 (SOCK=e2859eeb39383754) Starting. Timeout=2000000us (L:497)
ERROR:couchbase.cccp:[-361690884] NOHOST:NOPORT (CTX=0000000000000000,) Could not get configuration: LCB_ERR_TIMEOUT (201) (L:187)
INFO:couchbase.confmon:[-361690884] Provider ‘CCCP’ failed: LCB_ERR_TIMEOUT (201) (L:216)
DEBUG:couchbase.confmon:[-361690884] Will try next provider in 0us (L:260)
ERROR:couchbase.connection:[-361690884] dev-couchbase.bluevolt.io:11210 (SOCK=e2859eeb39383754) Failed to establish connection: LCB_ERR_TIMEOUT (201), os errno=0 (L:168)
DEBUG:couchbase.lcbio_mgr:[-361690884] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BCBE0) Received result for I=000001FA94A74CE0,C=0000000000000000; E=0xc9 (L:369)
DEBUG:couchbase.confmon:[-361690884] Attempting to retrieve cluster map via HTTP (L:305)
DEBUG:couchbase.htconfig:[-361690884] Starting HTTP Configuration Provider 000001FA934B8AC0 (L:359)
INFO:couchbase.connection:[-361690884] dev-couchbase.bluevolt.io:8091 (SOCK=06ae3cbbd5ee5f04) Starting. Timeout=2000000us (L:497)
DEBUG:couchbase.connection:[-361690884] dev-couchbase.bluevolt.io:8091 (SOCK=06ae3cbbd5ee5f04) Received completion handler. Status=0. errno=0 [No error] (L:393)
INFO:couchbase.connection:[-361690884] dev-couchbase.bluevolt.io:8091 (SOCK=06ae3cbbd5ee5f04) Connected established (L:159)
INFO:couchbase.connection:[-361690884] dev-couchbase.bluevolt.io:8091 (SOCK=06ae3cbbd5ee5f04) Couldn’t set TCP_NODELAY (L:108)
INFO:couchbase.connection:[-361690884] dev-couchbase.bluevolt.io:8091 (SOCK=06ae3cbbd5ee5f04) Couldn’t set TCP_KEEPALIVE (L:108)
DEBUG:couchbase.htconfig:[-361690884] Successfuly connected to REST API dev-couchbase.bluevolt.io:8091 (L:315)
DEBUG:couchbase.ioctx:[-361690884] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A655E0,unknown) Pairing with SOCK=06ae3cbbd5ee5f04 (L:94)
DEBUG:couchbase.htconfig:[-361690884] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A655E0,bc_http) Received 395 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[-361690884] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A655E0,bc_http) Received 8814 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[-361690884] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A655E0,bc_http) Generation 0 → 1 (L:230)
INFO:couchbase.confmon:[-361690884] Setting initial configuration. Received via HTTP (bucket=“BvUniversity”, rev=1:3586, address=“dev-couchbase.bluevolt.io”) (L:183)
INFO:couchbase.bootstrap:[-361690884] Selected network configuration: “default” (L:95)
2453ms [I7761201131d49c51] {14824} [INFO] (instance - L:521) Version=3.2.5, Changeset=e4de408c96550b48745b3a142d9827c898d4e96f
2462ms [I7761201131d49c51] {14824} [INFO] (instance - L:522) Effective connection string: http://dev-couchbase.bluevolt.io. Bucket=(null)
2469ms [I7761201131d49c51] {14824} [INFO] (instance - L:212) DNS SRV lookup failed: LCB_ERR_UNKNOWN_HOST (1049). Ignore this if not relying on DNS SRV records
2476ms [I7761201131d49c51] {14824} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:8091 to initial HTTP bootstrap list2483ms [I7761201131d49c51] {14824} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:11210 to initial CCCP bootstrap list
2489ms [I7761201131d49c51] {14824} [TRACE] (instance - L:193) Bootstrap hosts loaded (cccp:1, http:1)
INFO:couchbase.bootstrap:[836017233] Requested network configuration: heuristic (L:277)
DEBUG:couchbase.confmon:[836017233] Preparing providers (this may be called multiple times) (L:94)
DEBUG:couchbase.confmon:[836017233] Provider CCCP is ENABLED (L:100)
DEBUG:couchbase.confmon:[836017233] Provider HTTP is ENABLED (L:100)
DEBUG:couchbase.confmon:[836017233] Refreshing current cluster map (bucket: (null)) (L:319)
INFO:couchbase.cccp:[836017233] Requesting connection to node dev-couchbase.bluevolt.io:11210 for CCCP configuration (L:176)
DEBUG:couchbase.lcbio_mgr:[836017233] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BC6D0) Creating new connection because none are
available in the pool (L:501)
DEBUG:couchbase.lcbio_mgr:[836017233] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BC6D0) New pool entry: I=000001FA94A74D40 (L:413)
INFO:couchbase.connection:[836017233] dev-couchbase.bluevolt.io:11210 (SOCK=c5de0397935ce06b) Starting. Timeout=2000000us (L:497)
DEBUG:couchbase.confmon:[836017233] Attempting to retrieve cluster map via CCCP (L:305)
ERROR:couchbase.cccp:[836017233] NOHOST:NOPORT (CTX=0000000000000000,) Could not get configuration: LCB_ERR_TIMEOUT (201) (L:187)
INFO:couchbase.confmon:[836017233] Provider ‘CCCP’ failed: LCB_ERR_TIMEOUT (201) (L:216)
DEBUG:couchbase.confmon:[836017233] Will try next provider in 0us (L:260)
ERROR:couchbase.connection:[836017233] dev-couchbase.bluevolt.io:11210 (SOCK=c5de0397935ce06b) Failed to establish connection: LCB_ERR_TIMEOUT (201), os errno=0 (L:168)
DEBUG:couchbase.lcbio_mgr:[836017233] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BC6D0) Received result for I=000001FA94A74D40,C=0000000000000000; E=0xc9 (L:369)
DEBUG:couchbase.confmon:[836017233] Attempting to retrieve cluster map via HTTP (L:305)
DEBUG:couchbase.htconfig:[836017233] Starting HTTP Configuration Provider 000001FA934B91A0 (L:359)
INFO:couchbase.connection:[836017233] dev-couchbase.bluevolt.io:8091 (SOCK=c052e19f3f8f4076) Starting. Timeout=2000000us (L:497)
DEBUG:couchbase.connection:[836017233] dev-couchbase.bluevolt.io:8091 (SOCK=c052e19f3f8f4076) Received completion handler. Status=0.
errno=0 [No error] (L:393)
INFO:couchbase.connection:[836017233] dev-couchbase.bluevolt.io:8091 (SOCK=c052e19f3f8f4076) Connected established (L:159)
INFO:couchbase.connection:[836017233] dev-couchbase.bluevolt.io:8091 (SOCK=c052e19f3f8f4076) Couldn’t set TCP_NODELAY (L:108)
INFO:couchbase.connection:[836017233] dev-couchbase.bluevolt.io:8091 (SOCK=c052e19f3f8f4076) Couldn’t set TCP_KEEPALIVE (L:108)
DEBUG:couchbase.htconfig:[836017233] Successfuly connected to REST API dev-couchbase.bluevolt.io:8091 (L:315)
DEBUG:couchbase.ioctx:[836017233] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A66B00,unknown) Pairing with SOCK=c052e19f3f8f4076 (L:94)
DEBUG:couchbase.htconfig:[836017233] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A66B00,bc_http) Received 395 bytes on HTTP stream
(L:214)
DEBUG:couchbase.htconfig:[836017233] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A66B00,bc_http) Received 2920 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[836017233] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A66B00,bc_http) Received 3813 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[836017233] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A66B00,bc_http) Generation 0 → 1 (L:230)
INFO:couchbase.confmon:[836017233] Setting initial configuration. Received via HTTP (bucket="", rev=-1:-1, address=“dev-couchbase.bluevolt.io”) (L:183)
INFO:couchbase.bootstrap:[836017233] Selected network configuration: “default” (L:95)
319ms [If00885c60c6b5899] {14824} [INFO] (instance - L:521) Version=3.2.5, Changeset=e4de408c96550b48745b3a142d9827c898d4e96f
324ms [If00885c60c6b5899] {14824} [INFO] (instance - L:522) Effective connection string: http://dev-couchbase.bluevolt.io/BvUniversity?. Bucket=BvUniversity
561ms [If00885c60c6b5899] {14824} [INFO] (instance - L:212) DNS SRV lookup failed: LCB_ERR_UNKNOWN_HOST (1049). Ignore this if not relying on DNS SRV records
573ms [If00885c60c6b5899] {14824} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:8091 to initial HTTP bootstrap list
580ms [If00885c60c6b5899] {14824} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:11210 to initial CCCP bootstrap list589ms [If00885c60c6b5899] {14824} [TRACE] (instance - L:193) Bootstrap hosts loaded (cccp:1, http:1)
INFO:couchbase.bootstrap:[208361625] Requested network configuration: heuristic (L:277)
DEBUG:couchbase.confmon:[208361625] Preparing providers (this may be called multiple times) (L:94)
DEBUG:couchbase.confmon:[208361625] Provider CCCP is ENABLED (L:100)
DEBUG:couchbase.confmon:[208361625] Provider HTTP is ENABLED (L:100)
DEBUG:couchbase.confmon:[208361625] Refreshing current cluster map (bucket: BvUniversity) (L:319)
DEBUG:couchbase.confmon:[208361625] Attempting to retrieve cluster map via CCCP (L:305)
INFO:couchbase.cccp:[208361625] Requesting connection to node dev-couchbase.bluevolt.io:11210 for CCCP configuration (L:176)
DEBUG:couchbase.lcbio_mgr:[208361625] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BC910) Creating new connection because none are
available in the pool (L:501)
DEBUG:couchbase.lcbio_mgr:[208361625] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BC910) New pool entry: I=000001FA949F7C60 (L:413)
INFO:couchbase.connection:[208361625] dev-couchbase.bluevolt.io:11210 (SOCK=6dd61db04bfefdfc) Starting. Timeout=2000000us (L:497)
ERROR:couchbase.cccp:[208361625] NOHOST:NOPORT (CTX=0000000000000000,) Could not get configuration: LCB_ERR_TIMEOUT (201) (L:187)
INFO:couchbase.confmon:[208361625] Provider ‘CCCP’ failed: LCB_ERR_TIMEOUT (201) (L:216)
DEBUG:couchbase.confmon:[208361625] Will try next provider in 0us (L:260)
ERROR:couchbase.connection:[208361625] dev-couchbase.bluevolt.io:11210 (SOCK=6dd61db04bfefdfc) Failed to establish connection: LCB_ERR_TIMEOUT (201), os errno=0 (L:168)
DEBUG:couchbase.lcbio_mgr:[208361625] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BC910) Received result for I=000001FA949F7C60,C=0000000000000000; E=0xc9 (L:369)
DEBUG:couchbase.confmon:[208361625] Attempting to retrieve cluster map via HTTP (L:305)
DEBUG:couchbase.htconfig:[208361625] Starting HTTP Configuration Provider 000001FA934B96A0 (L:359)
INFO:couchbase.connection:[208361625] dev-couchbase.bluevolt.io:8091 (SOCK=5234dd0e5ec67c9b) Starting. Timeout=2000000us (L:497)
DEBUG:couchbase.connection:[208361625] dev-couchbase.bluevolt.io:8091 (SOCK=5234dd0e5ec67c9b) Received completion handler. Status=0.
errno=0 [No error] (L:393)
INFO:couchbase.connection:[208361625] dev-couchbase.bluevolt.io:8091 (SOCK=5234dd0e5ec67c9b) Connected established (L:159)
INFO:couchbase.connection:[208361625] dev-couchbase.bluevolt.io:8091 (SOCK=5234dd0e5ec67c9b) Couldn’t set TCP_NODELAY (L:108)
INFO:couchbase.connection:[208361625] dev-couchbase.bluevolt.io:8091 (SOCK=5234dd0e5ec67c9b) Couldn’t set TCP_KEEPALIVE (L:108)
DEBUG:couchbase.htconfig:[208361625] Successfuly connected to REST API dev-couchbase.bluevolt.io:8091 (L:315)
DEBUG:couchbase.ioctx:[208361625] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A65D30,unknown) Pairing with SOCK=5234dd0e5ec67c9b (L:94)
DEBUG:couchbase.htconfig:[208361625] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A65D30,bc_http) Received 395 bytes on HTTP stream
(L:214)
DEBUG:couchbase.htconfig:[208361625] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A65D30,bc_http) Received 2920 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[208361625] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A65D30,bc_http) Received 5894 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[208361625] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A65D30,bc_http) Generation 0 → 1 (L:230)
INFO:couchbase.confmon:[208361625] Setting initial configuration. Received via HTTP (bucket=“BvUniversity”, rev=1:3586, address=“dev-couchbase.bluevolt.io”) (L:183)
INFO:couchbase.bootstrap:[208361625] Selected network configuration: “default” (L:95)
3707ms [Id87e04b9f3a4189b] {14824} [INFO] (instance - L:521) Version=3.2.5, Changeset=e4de408c96550b48745b3a142d9827c898d4e96f
3715ms [Id87e04b9f3a4189b] {14824} [INFO] (instance - L:522) Effective connection string: http://dev-couchbase.bluevolt.io/BvUniversity?username=sp_UniIncentives. Bucket=BvUniversity
3724ms [Id87e04b9f3a4189b] {14824} [INFO] (instance - L:212) DNS SRV lookup failed: LCB_ERR_UNKNOWN_HOST (1049). Ignore this if not relying on DNS SRV records
3731ms [Id87e04b9f3a4189b] {14824} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:8091 to initial HTTP bootstrap list3737ms [Id87e04b9f3a4189b] {14824} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:11210 to initial CCCP bootstrap list
3742ms [Id87e04b9f3a4189b] {14824} [TRACE] (instance - L:193) Bootstrap hosts loaded (cccp:1, http:1)
INFO:couchbase.bootstrap:[-207349605] Requested network configuration: heuristic (L:277)
DEBUG:couchbase.confmon:[-207349605] Preparing providers (this may be called multiple times) (L:94)
DEBUG:couchbase.confmon:[-207349605] Provider CCCP is ENABLED (L:100)
DEBUG:couchbase.confmon:[-207349605] Provider HTTP is ENABLED (L:100)
DEBUG:couchbase.confmon:[-207349605] Refreshing current cluster map (bucket: BvUniversity) (L:319)
DEBUG:couchbase.confmon:[-207349605] Attempting to retrieve cluster map via CCCP (L:305)
INFO:couchbase.cccp:[-207349605] Requesting connection to node dev-couchbase.bluevolt.io:11210 for CCCP configuration (L:176)
DEBUG:couchbase.lcbio_mgr:[-207349605] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BC130) Creating new connection because none are available in the pool (L:501)

final part of the logs for making the connection to CB:

DEBUG:couchbase.lcbio_mgr:[-207349605] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BC130) New pool entry: I=000001FA949F8140 (L:413)
INFO:couchbase.connection:[-207349605] dev-couchbase.bluevolt.io:11210 (SOCK=f3bd6b47699af2b6) Starting. Timeout=2000000us (L:497)
ERROR:couchbase.cccp:[-207349605] NOHOST:NOPORT (CTX=0000000000000000,) Could not get configuration: LCB_ERR_TIMEOUT (201) (L:187)
INFO:couchbase.confmon:[-207349605] Provider ‘CCCP’ failed: LCB_ERR_TIMEOUT (201) (L:216)
DEBUG:couchbase.confmon:[-207349605] Will try next provider in 0us (L:260)
ERROR:couchbase.connection:[-207349605] dev-couchbase.bluevolt.io:11210 (SOCK=f3bd6b47699af2b6) Failed to establish connection: LCB_ERR_TIMEOUT (201), os errno=0 (L:168)
DEBUG:couchbase.lcbio_mgr:[-207349605] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BC130) Received result for I=000001FA949F8140,C=0000000000000000; E=0xc9 (L:369)
DEBUG:couchbase.confmon:[-207349605] Attempting to retrieve cluster map via HTTP (L:305)
DEBUG:couchbase.htconfig:[-207349605] Starting HTTP Configuration Provider 000001FA934B9560 (L:359)
INFO:couchbase.connection:[-207349605] dev-couchbase.bluevolt.io:8091 (SOCK=6913dc098eedc40a) Starting. Timeout=2000000us (L:497)
DEBUG:couchbase.connection:[-207349605] dev-couchbase.bluevolt.io:8091 (SOCK=6913dc098eedc40a) Received completion handler. Status=0. errno=0 [No error] (L:393)
INFO:couchbase.connection:[-207349605] dev-couchbase.bluevolt.io:8091 (SOCK=6913dc098eedc40a) Connected established (L:159)
INFO:couchbase.connection:[-207349605] dev-couchbase.bluevolt.io:8091 (SOCK=6913dc098eedc40a) Couldn’t set TCP_NODELAY (L:108)
INFO:couchbase.connection:[-207349605] dev-couchbase.bluevolt.io:8091 (SOCK=6913dc098eedc40a) Couldn’t set TCP_KEEPALIVE (L:108)
DEBUG:couchbase.htconfig:[-207349605] Successfuly connected to REST API dev-couchbase.bluevolt.io:8091 (L:315)
DEBUG:couchbase.ioctx:[-207349605] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A65780,unknown) Pairing with SOCK=6913dc098eedc40a (L:94)
DEBUG:couchbase.htconfig:[-207349605] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A65780,bc_http) Received 395 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[-207349605] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A65780,bc_http) Received 8814 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[-207349605] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A65780,bc_http) Generation 0 → 1 (L:230)
INFO:couchbase.confmon:[-207349605] Setting initial configuration. Received via HTTP (bucket=“BvUniversity”, rev=1:3586, address=“dev-couchbase.bluevolt.io”) (L:183)
INFO:couchbase.bootstrap:[-207349605] Selected network configuration: “default” (L:95)
1550ms [I7fe59f2c6496579] {14824} [INFO] (instance - L:521) Version=3.2.5, Changeset=e4de408c96550b48745b3a142d9827c898d4e96f
1557ms [I7fe59f2c6496579] {14824} [INFO] (instance - L:522) Effective connection string: http://dev-couchbase.bluevolt.io. Bucket=(null)
1749ms [I7fe59f2c6496579] {14824} [INFO] (instance - L:212) DNS SRV lookup failed: LCB_ERR_UNKNOWN_HOST (1049). Ignore this if not relying on DNS SRV records
1757ms [I7fe59f2c6496579] {14824} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:8091 to initial HTTP bootstrap list
1763ms [I7fe59f2c6496579] {14824} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:11210 to initial CCCP bootstrap list1769ms [I7fe59f2c6496579] {14824} [TRACE] (instance - L:193) Bootstrap hosts loaded (cccp:1, http:1)
INFO:couchbase.bootstrap:[-968268423] Requested network configuration: heuristic (L:277)
DEBUG:couchbase.confmon:[-968268423] Preparing providers (this may be called multiple times) (L:94)
DEBUG:couchbase.confmon:[-968268423] Provider CCCP is ENABLED (L:100)
DEBUG:couchbase.confmon:[-968268423] Provider HTTP is ENABLED (L:100)
DEBUG:couchbase.confmon:[-968268423] Refreshing current cluster map (bucket: (null)) (L:319)
INFO:couchbase.cccp:[-968268423] Requesting connection to node dev-couchbase.bluevolt.io:11210 for CCCP configuration (L:176)
DEBUG:couchbase.lcbio_mgr:[-968268423] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BBB90) Creating new connection because none are available in the pool (L:501)
DEBUG:couchbase.lcbio_mgr:[-968268423] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BBB90) New pool entry: I=000001FA94AA82F0 (L:413)
INFO:couchbase.connection:[-968268423] dev-couchbase.bluevolt.io:11210 (SOCK=e5040b0351278fe5) Starting. Timeout=2000000us (L:497)
DEBUG:couchbase.confmon:[-968268423] Attempting to retrieve cluster map via CCCP (L:305)
ERROR:couchbase.cccp:[-968268423] NOHOST:NOPORT (CTX=0000000000000000,) Could not get configuration: LCB_ERR_TIMEOUT (201) (L:187)
INFO:couchbase.confmon:[-968268423] Provider ‘CCCP’ failed: LCB_ERR_TIMEOUT (201) (L:216)
DEBUG:couchbase.confmon:[-968268423] Will try next provider in 0us (L:260)
ERROR:couchbase.connection:[-968268423] dev-couchbase.bluevolt.io:11210 (SOCK=e5040b0351278fe5) Failed to establish connection: LCB_ERR_TIMEOUT (201), os errno=0 (L:168)
DEBUG:couchbase.lcbio_mgr:[-968268423] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BBB90) Received result for I=000001FA94AA82F0,C=0000000000000000; E=0xc9 (L:369)
DEBUG:couchbase.confmon:[-968268423] Attempting to retrieve cluster map via HTTP (L:305)
DEBUG:couchbase.htconfig:[-968268423] Starting HTTP Configuration Provider 000001FA934B9740 (L:359)
INFO:couchbase.connection:[-968268423] dev-couchbase.bluevolt.io:8091 (SOCK=ba2533c501fccca5) Starting. Timeout=2000000us (L:497)
DEBUG:couchbase.connection:[-968268423] dev-couchbase.bluevolt.io:8091 (SOCK=ba2533c501fccca5) Received completion handler. Status=0. errno=0 [No error] (L:393)
INFO:couchbase.connection:[-968268423] dev-couchbase.bluevolt.io:8091 (SOCK=ba2533c501fccca5) Connected established (L:159)
INFO:couchbase.connection:[-968268423] dev-couchbase.bluevolt.io:8091 (SOCK=ba2533c501fccca5) Couldn’t set TCP_NODELAY (L:108)
INFO:couchbase.connection:[-968268423] dev-couchbase.bluevolt.io:8091 (SOCK=ba2533c501fccca5) Couldn’t set TCP_KEEPALIVE (L:108)
DEBUG:couchbase.htconfig:[-968268423] Successfuly connected to REST API dev-couchbase.bluevolt.io:8091 (L:315)
DEBUG:couchbase.ioctx:[-968268423] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A65FA0,unknown) Pairing with SOCK=ba2533c501fccca5 (L:94)
DEBUG:couchbase.htconfig:[-968268423] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A65FA0,bc_http) Received 395 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[-968268423] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A65FA0,bc_http) Received 2920 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[-968268423] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A65FA0,bc_http) Received 3815 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[-968268423] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A65FA0,bc_http) Generation 0 → 1 (L:230)
INFO:couchbase.confmon:[-968268423] Setting initial configuration. Received via HTTP (bucket="", rev=-1:-1, address=“dev-couchbase.bluevolt.io”) (L:183)
INFO:couchbase.bootstrap:[-968268423] Selected network configuration: “default” (L:95)
3884ms [I3479102a2b8ce8bd] {14824} [INFO] (instance - L:521) Version=3.2.5, Changeset=e4de408c96550b48745b3a142d9827c898d4e96f
3892ms [I3479102a2b8ce8bd] {14824} [INFO] (instance - L:522) Effective connection string: http://dev-couchbase.bluevolt.io/BvUniversity?. Bucket=BvUniversity
3901ms [I3479102a2b8ce8bd] {14824} [INFO] (instance - L:212) DNS SRV lookup failed: LCB_ERR_UNKNOWN_HOST (1049). Ignore this if not relying on DNS SRV records
3909ms [I3479102a2b8ce8bd] {14824} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:8091 to initial HTTP bootstrap list3914ms [I3479102a2b8ce8bd] {14824} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:11210 to initial CCCP bootstrap list
3920ms [I3479102a2b8ce8bd] {14824} [TRACE] (instance - L:193) Bootstrap hosts loaded (cccp:1, http:1)
INFO:couchbase.bootstrap:[730654909] Requested network configuration: heuristic (L:277)
DEBUG:couchbase.confmon:[730654909] Preparing providers (this may be called multiple times) (L:94)
DEBUG:couchbase.confmon:[730654909] Provider CCCP is ENABLED (L:100)
DEBUG:couchbase.confmon:[730654909] Provider HTTP is ENABLED (L:100)
DEBUG:couchbase.confmon:[730654909] Refreshing current cluster map (bucket: BvUniversity) (L:319)
DEBUG:couchbase.confmon:[730654909] Attempting to retrieve cluster map via CCCP (L:305)
INFO:couchbase.cccp:[730654909] Requesting connection to node dev-couchbase.bluevolt.io:11210 for CCCP configuration (L:176)
DEBUG:couchbase.lcbio_mgr:[730654909] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BD450) Creating new connection because none are
available in the pool (L:501)
DEBUG:couchbase.lcbio_mgr:[730654909] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BD450) New pool entry: I=000001FA94AA76F0 (L:413)
INFO:couchbase.connection:[730654909] dev-couchbase.bluevolt.io:11210 (SOCK=e17335cad07167d6) Starting. Timeout=2000000us (L:497)
ERROR:couchbase.cccp:[730654909] NOHOST:NOPORT (CTX=0000000000000000,) Could not get configuration: LCB_ERR_TIMEOUT (201) (L:187)
INFO:couchbase.confmon:[730654909] Provider ‘CCCP’ failed: LCB_ERR_TIMEOUT (201) (L:216)
DEBUG:couchbase.confmon:[730654909] Will try next provider in 0us (L:260)
ERROR:couchbase.connection:[730654909] dev-couchbase.bluevolt.io:11210 (SOCK=e17335cad07167d6) Failed to establish connection: LCB_ERR_TIMEOUT (201), os errno=0 (L:168)
DEBUG:couchbase.lcbio_mgr:[730654909] dev-couchbase.bluevolt.io:11210 (HE=000001FA949BD450) Received result for I=000001FA94AA76F0,C=0000000000000000; E=0xc9 (L:369)
DEBUG:couchbase.confmon:[730654909] Attempting to retrieve cluster map via HTTP (L:305)
DEBUG:couchbase.htconfig:[730654909] Starting HTTP Configuration Provider 000001FA934B9060 (L:359)
INFO:couchbase.connection:[730654909] dev-couchbase.bluevolt.io:8091 (SOCK=c77f0ee7a02d3cb7) Starting. Timeout=2000000us (L:497)
DEBUG:couchbase.connection:[730654909] dev-couchbase.bluevolt.io:8091 (SOCK=c77f0ee7a02d3cb7) Received completion handler. Status=0.
errno=0 [No error] (L:393)
INFO:couchbase.connection:[730654909] dev-couchbase.bluevolt.io:8091 (SOCK=c77f0ee7a02d3cb7) Connected established (L:159)
INFO:couchbase.connection:[730654909] dev-couchbase.bluevolt.io:8091 (SOCK=c77f0ee7a02d3cb7) Couldn’t set TCP_NODELAY (L:108)
INFO:couchbase.connection:[730654909] dev-couchbase.bluevolt.io:8091 (SOCK=c77f0ee7a02d3cb7) Couldn’t set TCP_KEEPALIVE (L:108)
DEBUG:couchbase.htconfig:[730654909] Successfuly connected to REST API dev-couchbase.bluevolt.io:8091 (L:315)
DEBUG:couchbase.ioctx:[730654909] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A66A30,unknown) Pairing with SOCK=c77f0ee7a02d3cb7 (L:94)
DEBUG:couchbase.htconfig:[730654909] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A66A30,bc_http) Received 395 bytes on HTTP stream
(L:214)
DEBUG:couchbase.htconfig:[730654909] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A66A30,bc_http) Received 8814 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[730654909] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94A66A30,bc_http) Generation 0 → 1 (L:230)
INFO:couchbase.confmon:[730654909] Setting initial configuration. Received via HTTP (bucket=“BvUniversity”, rev=1:3586, address=“dev-couchbase.bluevolt.io”) (L:183)
INFO:couchbase.bootstrap:[730654909] Selected network configuration: “default” (L:95)
1708ms [I1d981ce784be8582] {14824} [INFO] (instance - L:521) Version=3.2.5, Changeset=e4de408c96550b48745b3a142d9827c898d4e96f
1713ms [I1d981ce784be8582] {14824} [INFO] (instance - L:522) Effective connection string: http://dev-couchbase.bluevolt.io/BvUniversity?username=sp_UniIncentives. Bucket=BvUniversity
1922ms [I1d981ce784be8582] {14824} [INFO] (instance - L:212) DNS SRV lookup failed: LCB_ERR_UNKNOWN_HOST (1049). Ignore this if not relying on DNS SRV records
1932ms [I1d981ce784be8582] {14824} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:8091 to initial HTTP bootstrap list1938ms [I1d981ce784be8582] {14824} [DEBUG] (instance - L:155) Adding host dev-couchbase.bluevolt.io:11210 to initial CCCP bootstrap list
1944ms [I1d981ce784be8582] {14824} [TRACE] (instance - L:193) Bootstrap hosts loaded (cccp:1, http:1)
INFO:couchbase.bootstrap:[-2067888766] Requested network configuration: heuristic (L:277)
DEBUG:couchbase.confmon:[-2067888766] Preparing providers (this may be called multiple times) (L:94)
DEBUG:couchbase.confmon:[-2067888766] Provider CCCP is ENABLED (L:100)
DEBUG:couchbase.confmon:[-2067888766] Provider HTTP is ENABLED (L:100)
DEBUG:couchbase.confmon:[-2067888766] Refreshing current cluster map (bucket: BvUniversity) (L:319)
DEBUG:couchbase.confmon:[-2067888766] Attempting to retrieve cluster map via CCCP (L:305)
INFO:couchbase.cccp:[-2067888766] Requesting connection to node dev-couchbase.bluevolt.io:11210 for CCCP configuration (L:176)
DEBUG:couchbase.lcbio_mgr:[-2067888766] dev-couchbase.bluevolt.io:11210 (HE=000001FA94AC6F50) Creating new connection because none are available in the pool (L:501)
DEBUG:couchbase.lcbio_mgr:[-2067888766] dev-couchbase.bluevolt.io:11210 (HE=000001FA94AC6F50) New pool entry: I=000001FA94AA78D0 (L:413)
INFO:couchbase.connection:[-2067888766] dev-couchbase.bluevolt.io:11210 (SOCK=6a91de72af59382a) Starting. Timeout=2000000us (L:497)
ERROR:couchbase.cccp:[-2067888766] NOHOST:NOPORT (CTX=0000000000000000,) Could not get configuration: LCB_ERR_TIMEOUT (201) (L:187)
INFO:couchbase.confmon:[-2067888766] Provider ‘CCCP’ failed: LCB_ERR_TIMEOUT (201) (L:216)
DEBUG:couchbase.confmon:[-2067888766] Will try next provider in 0us (L:260)
ERROR:couchbase.connection:[-2067888766] dev-couchbase.bluevolt.io:11210 (SOCK=6a91de72af59382a) Failed to establish connection: LCB_ERR_TIMEOUT (201), os errno=0 (L:168)
DEBUG:couchbase.lcbio_mgr:[-2067888766] dev-couchbase.bluevolt.io:11210 (HE=000001FA94AC6F50) Received result for I=000001FA94AA78D0,C=0000000000000000; E=0xc9 (L:369)
DEBUG:couchbase.confmon:[-2067888766] Attempting to retrieve cluster map via HTTP (L:305)
DEBUG:couchbase.htconfig:[-2067888766] Starting HTTP Configuration Provider 000001FA934B8D40 (L:359)
INFO:couchbase.connection:[-2067888766] dev-couchbase.bluevolt.io:8091 (SOCK=48030046bf068144) Starting. Timeout=2000000us (L:497)
DEBUG:couchbase.connection:[-2067888766] dev-couchbase.bluevolt.io:8091 (SOCK=48030046bf068144) Received completion handler. Status=0. errno=0 [No error] (L:393)
INFO:couchbase.connection:[-2067888766] dev-couchbase.bluevolt.io:8091 (SOCK=48030046bf068144) Connected established (L:159)
INFO:couchbase.connection:[-2067888766] dev-couchbase.bluevolt.io:8091 (SOCK=48030046bf068144) Couldn’t set TCP_NODELAY (L:108)
INFO:couchbase.connection:[-2067888766] dev-couchbase.bluevolt.io:8091 (SOCK=48030046bf068144) Couldn’t set TCP_KEEPALIVE (L:108)
DEBUG:couchbase.htconfig:[-2067888766] Successfuly connected to REST API dev-couchbase.bluevolt.io:8091 (L:315)
DEBUG:couchbase.ioctx:[-2067888766] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94ACE690,unknown) Pairing with SOCK=48030046bf068144
(L:94)
DEBUG:couchbase.htconfig:[-2067888766] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94ACE690,bc_http) Received 395 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[-2067888766] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94ACE690,bc_http) Received 8814 bytes on HTTP stream (L:214)
DEBUG:couchbase.htconfig:[-2067888766] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94ACE690,bc_http) Generation 0 → 1 (L:230)
INFO:couchbase.confmon:[-2067888766] Setting initial configuration. Received via HTTP (bucket=“BvUniversity”, rev=1:3586, address=“dev-couchbase.bluevolt.io”) (L:183)
INFO:couchbase.bootstrap:[-2067888766] Selected network configuration: “default” (L:95)

and this is the logs up through the exception being thrown when I try to iterate over the results returned from my N1QL query:

INFO:uvicorn.error:Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
DEBUG:couchbase.http-io:[1288318668] dev-couchbase.bluevolt.io:8091 GET http://dev-couchbase.bluevolt.io:8091/pools. Body=0 bytes (L:394)
DEBUG:couchbase.lcbio_mgr:[1288318668] dev-couchbase.bluevolt.io:8091 (HE=000001FA94AC77C0) Creating new connection because none are
available in the pool (L:501)
DEBUG:couchbase.lcbio_mgr:[1288318668] dev-couchbase.bluevolt.io:8091 (HE=000001FA94AC77C0) New pool entry: I=000001FA94A0A350 (L:413)
INFO:couchbase.connection:[1288318668] dev-couchbase.bluevolt.io:8091 (SOCK=aebb790ce513c47a) Starting. Timeout=75000000us (L:497)
INFO:couchbase.logging-meter:[1288318668] Metrics: {“meta”:{“emit_interval_s”:600},“operations”:{}} (L:104)
DEBUG:couchbase.connection:[1288318668] dev-couchbase.bluevolt.io:11210 (SOCK=8c7d815516c202ce) Received completion handler. Status=-1. errno=138 [timed out] (L:393)
DEBUG:couchbase.connection:[1288318668] dev-couchbase.bluevolt.io:8091 (SOCK=aebb790ce513c47a) Received completion handler. Status=0. errno=138 [timed out] (L:393)
INFO:couchbase.connection:[1288318668] dev-couchbase.bluevolt.io:8091 (SOCK=aebb790ce513c47a) Connected established (L:159)
INFO:couchbase.connection:[1288318668] dev-couchbase.bluevolt.io:8091 (SOCK=aebb790ce513c47a) Couldn’t set TCP_NODELAY (L:108)
INFO:couchbase.connection:[1288318668] dev-couchbase.bluevolt.io:8091 (SOCK=aebb790ce513c47a) Couldn’t set TCP_KEEPALIVE (L:108)
DEBUG:couchbase.lcbio_mgr:[1288318668] dev-couchbase.bluevolt.io:8091 (HE=000001FA94AC77C0) Received result for I=000001FA94A0A350,C=0000000000000000; E=0x0 (L:369)
DEBUG:couchbase.lcbio_mgr:[1288318668] dev-couchbase.bluevolt.io:8091 (HE=000001FA94AC77C0) Assigning R=000001FA9368E2C0 SOCKET=000001FA94A01DC0 (L:329)
DEBUG:couchbase.ioctx:[1288318668] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94ACE760,unknown) Pairing with SOCK=aebb790ce513c47a (L:94)
DEBUG:couchbase.ioctx:[1288318668] dev-couchbase.bluevolt.io:8091 (CTX=000001FA94ACE760,mgmt/capi) Destroying context for SOCK=aebb790ce513c47a. Pending Writes=0, Entered=true, Socket Refcount=1 (L:140)

From the logs, it looks like it is related to connectivity to the Query service in your Couchbase cluster.

Could you also try checking the connectivity with SDK Doctor?

Try connection string with ip address and see if that works.

tried that long ago and again this morning. same results.