The cluster does not support Query services

@jmorris,

Do you request me the configuration?

var _config = new Couchbase.Configuration.Client.ClientConfiguration
                {
                    Servers = new List<Uri>
                  {
                       new Uri("http://localhost:8091/pools")
                  },
                    UseSsl = false,
                    DefaultOperationLifespan = int.MaxValue,
                    BucketConfigs = new Dictionary<string, Couchbase.Configuration.Client.BucketConfiguration>
                                  {
                                    {"default", new Couchbase.Configuration.Client.BucketConfiguration
                                    {
                                      BucketName = "default",
                                      UseSsl = false,
                                      Password = "",
                                      DefaultOperationLifespan = 2000,
                                     
                                      PoolConfiguration = new Couchbase.Configuration.Client.PoolConfiguration
                                      {
                                        MaxSize = int.MaxValue,
                                        MinSize = int.MaxValue - 1,
                                        SendTimeout = int.MaxValue,
                                        ConnectTimeout=int.MaxValue
                                      }
                                    }}}
                };
                instance = new Cluster(_config); 

I attach more detail about my config and another things.
https://mega.nz/#!AxZEnABK!blXhNLLXjoJdsO1ZcjlgcD3_OX0FQ5AeGApBNOBPj7A

Regards.