session.go 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959
  1. // Copyright (c) 2012 The gocql Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. package gocql
  5. import (
  6. "bytes"
  7. "context"
  8. "encoding/binary"
  9. "errors"
  10. "fmt"
  11. "io"
  12. "net"
  13. "strings"
  14. "sync"
  15. "sync/atomic"
  16. "time"
  17. "unicode"
  18. "github.com/gocql/gocql/internal/lru"
  19. )
  20. // Session is the interface used by users to interact with the database.
  21. //
  22. // It's safe for concurrent use by multiple goroutines and a typical usage
  23. // scenario is to have one global session object to interact with the
  24. // whole Cassandra cluster.
  25. //
  26. // This type extends the Node interface by adding a convinient query builder
  27. // and automatically sets a default consistency level on all operations
  28. // that do not have a consistency level set.
  29. type Session struct {
  30. cons Consistency
  31. pageSize int
  32. prefetch float64
  33. routingKeyInfoCache routingKeyInfoLRU
  34. schemaDescriber *schemaDescriber
  35. trace Tracer
  36. queryObserver QueryObserver
  37. batchObserver BatchObserver
  38. connectObserver ConnectObserver
  39. frameObserver FrameHeaderObserver
  40. hostSource *ringDescriber
  41. stmtsLRU *preparedLRU
  42. connCfg *ConnConfig
  43. executor *queryExecutor
  44. pool *policyConnPool
  45. policy HostSelectionPolicy
  46. ring ring
  47. metadata clusterMetadata
  48. mu sync.RWMutex
  49. control *controlConn
  50. // event handlers
  51. nodeEvents *eventDebouncer
  52. schemaEvents *eventDebouncer
  53. // ring metadata
  54. hosts []HostInfo
  55. useSystemSchema bool
  56. cfg ClusterConfig
  57. quit chan struct{}
  58. closeMu sync.RWMutex
  59. isClosed bool
  60. }
  61. var queryPool = &sync.Pool{
  62. New: func() interface{} {
  63. return new(Query)
  64. },
  65. }
  66. func addrsToHosts(addrs []string, defaultPort int) ([]*HostInfo, error) {
  67. var hosts []*HostInfo
  68. for _, hostport := range addrs {
  69. resolvedHosts, err := hostInfo(hostport, defaultPort)
  70. if err != nil {
  71. // Try other hosts if unable to resolve DNS name
  72. if _, ok := err.(*net.DNSError); ok {
  73. Logger.Printf("gocql: dns error: %v\n", err)
  74. continue
  75. }
  76. return nil, err
  77. }
  78. hosts = append(hosts, resolvedHosts...)
  79. }
  80. if len(hosts) == 0 {
  81. return nil, errors.New("failed to resolve any of the provided hostnames")
  82. }
  83. return hosts, nil
  84. }
  85. // NewSession wraps an existing Node.
  86. func NewSession(cfg ClusterConfig) (*Session, error) {
  87. // Check that hosts in the ClusterConfig is not empty
  88. if len(cfg.Hosts) < 1 {
  89. return nil, ErrNoHosts
  90. }
  91. s := &Session{
  92. cons: cfg.Consistency,
  93. prefetch: 0.25,
  94. cfg: cfg,
  95. pageSize: cfg.PageSize,
  96. stmtsLRU: &preparedLRU{lru: lru.New(cfg.MaxPreparedStmts)},
  97. quit: make(chan struct{}),
  98. connectObserver: cfg.ConnectObserver,
  99. }
  100. s.schemaDescriber = newSchemaDescriber(s)
  101. s.nodeEvents = newEventDebouncer("NodeEvents", s.handleNodeEvent)
  102. s.schemaEvents = newEventDebouncer("SchemaEvents", s.handleSchemaEvent)
  103. s.routingKeyInfoCache.lru = lru.New(cfg.MaxRoutingKeyInfo)
  104. s.hostSource = &ringDescriber{session: s}
  105. if cfg.PoolConfig.HostSelectionPolicy == nil {
  106. cfg.PoolConfig.HostSelectionPolicy = RoundRobinHostPolicy()
  107. }
  108. s.pool = cfg.PoolConfig.buildPool(s)
  109. s.policy = cfg.PoolConfig.HostSelectionPolicy
  110. s.policy.Init(s)
  111. s.executor = &queryExecutor{
  112. pool: s.pool,
  113. policy: cfg.PoolConfig.HostSelectionPolicy,
  114. }
  115. s.queryObserver = cfg.QueryObserver
  116. s.batchObserver = cfg.BatchObserver
  117. s.connectObserver = cfg.ConnectObserver
  118. s.frameObserver = cfg.FrameHeaderObserver
  119. //Check the TLS Config before trying to connect to anything external
  120. connCfg, err := connConfig(&s.cfg)
  121. if err != nil {
  122. //TODO: Return a typed error
  123. return nil, fmt.Errorf("gocql: unable to create session: %v", err)
  124. }
  125. s.connCfg = connCfg
  126. if err := s.init(); err != nil {
  127. s.Close()
  128. if err == ErrNoConnectionsStarted {
  129. //This error used to be generated inside NewSession & returned directly
  130. //Forward it on up to be backwards compatible
  131. return nil, ErrNoConnectionsStarted
  132. } else {
  133. // TODO(zariel): dont wrap this error in fmt.Errorf, return a typed error
  134. return nil, fmt.Errorf("gocql: unable to create session: %v", err)
  135. }
  136. }
  137. return s, nil
  138. }
  139. func (s *Session) init() error {
  140. hosts, err := addrsToHosts(s.cfg.Hosts, s.cfg.Port)
  141. if err != nil {
  142. return err
  143. }
  144. s.ring.endpoints = hosts
  145. if !s.cfg.disableControlConn {
  146. s.control = createControlConn(s)
  147. if s.cfg.ProtoVersion == 0 {
  148. proto, err := s.control.discoverProtocol(hosts)
  149. if err != nil {
  150. return fmt.Errorf("unable to discover protocol version: %v", err)
  151. } else if proto == 0 {
  152. return errors.New("unable to discovery protocol version")
  153. }
  154. // TODO(zariel): we really only need this in 1 place
  155. s.cfg.ProtoVersion = proto
  156. s.connCfg.ProtoVersion = proto
  157. }
  158. if err := s.control.connect(hosts); err != nil {
  159. return err
  160. }
  161. if !s.cfg.DisableInitialHostLookup {
  162. var partitioner string
  163. newHosts, partitioner, err := s.hostSource.GetHosts()
  164. if err != nil {
  165. return err
  166. }
  167. s.policy.SetPartitioner(partitioner)
  168. filteredHosts := make([]*HostInfo, 0, len(newHosts))
  169. for _, host := range newHosts {
  170. if !s.cfg.filterHost(host) {
  171. filteredHosts = append(filteredHosts, host)
  172. }
  173. }
  174. hosts = append(hosts, filteredHosts...)
  175. }
  176. }
  177. hostMap := make(map[string]*HostInfo, len(hosts))
  178. for _, host := range hosts {
  179. hostMap[host.ConnectAddress().String()] = host
  180. }
  181. for _, host := range hostMap {
  182. host = s.ring.addOrUpdate(host)
  183. s.addNewNode(host)
  184. }
  185. // TODO(zariel): we probably dont need this any more as we verify that we
  186. // can connect to one of the endpoints supplied by using the control conn.
  187. // See if there are any connections in the pool
  188. if s.cfg.ReconnectInterval > 0 {
  189. go s.reconnectDownedHosts(s.cfg.ReconnectInterval)
  190. }
  191. // If we disable the initial host lookup, we need to still check if the
  192. // cluster is using the newer system schema or not... however, if control
  193. // connection is disable, we really have no choice, so we just make our
  194. // best guess...
  195. if !s.cfg.disableControlConn && s.cfg.DisableInitialHostLookup {
  196. newer, _ := checkSystemSchema(s.control)
  197. s.useSystemSchema = newer
  198. } else {
  199. host := s.ring.rrHost()
  200. s.useSystemSchema = host.Version().Major >= 3
  201. }
  202. if s.pool.Size() == 0 {
  203. return ErrNoConnectionsStarted
  204. }
  205. return nil
  206. }
  207. func (s *Session) reconnectDownedHosts(intv time.Duration) {
  208. reconnectTicker := time.NewTicker(intv)
  209. defer reconnectTicker.Stop()
  210. for {
  211. select {
  212. case <-reconnectTicker.C:
  213. hosts := s.ring.allHosts()
  214. // Print session.ring for debug.
  215. if gocqlDebug {
  216. buf := bytes.NewBufferString("Session.ring:")
  217. for _, h := range hosts {
  218. buf.WriteString("[" + h.ConnectAddress().String() + ":" + h.State().String() + "]")
  219. }
  220. Logger.Println(buf.String())
  221. }
  222. for _, h := range hosts {
  223. if h.IsUp() {
  224. continue
  225. }
  226. s.handleNodeUp(h.ConnectAddress(), h.Port(), true)
  227. }
  228. case <-s.quit:
  229. return
  230. }
  231. }
  232. }
  233. // SetConsistency sets the default consistency level for this session. This
  234. // setting can also be changed on a per-query basis and the default value
  235. // is Quorum.
  236. func (s *Session) SetConsistency(cons Consistency) {
  237. s.mu.Lock()
  238. s.cons = cons
  239. s.mu.Unlock()
  240. }
  241. // SetPageSize sets the default page size for this session. A value <= 0 will
  242. // disable paging. This setting can also be changed on a per-query basis.
  243. func (s *Session) SetPageSize(n int) {
  244. s.mu.Lock()
  245. s.pageSize = n
  246. s.mu.Unlock()
  247. }
  248. // SetPrefetch sets the default threshold for pre-fetching new pages. If
  249. // there are only p*pageSize rows remaining, the next page will be requested
  250. // automatically. This value can also be changed on a per-query basis and
  251. // the default value is 0.25.
  252. func (s *Session) SetPrefetch(p float64) {
  253. s.mu.Lock()
  254. s.prefetch = p
  255. s.mu.Unlock()
  256. }
  257. // SetTrace sets the default tracer for this session. This setting can also
  258. // be changed on a per-query basis.
  259. func (s *Session) SetTrace(trace Tracer) {
  260. s.mu.Lock()
  261. s.trace = trace
  262. s.mu.Unlock()
  263. }
  264. // Query generates a new query object for interacting with the database.
  265. // Further details of the query may be tweaked using the resulting query
  266. // value before the query is executed. Query is automatically prepared
  267. // if it has not previously been executed.
  268. func (s *Session) Query(stmt string, values ...interface{}) *Query {
  269. qry := queryPool.Get().(*Query)
  270. qry.session = s
  271. qry.stmt = stmt
  272. qry.values = values
  273. qry.defaultsFromSession()
  274. return qry
  275. }
  276. type QueryInfo struct {
  277. Id []byte
  278. Args []ColumnInfo
  279. Rval []ColumnInfo
  280. PKeyColumns []int
  281. }
  282. // Bind generates a new query object based on the query statement passed in.
  283. // The query is automatically prepared if it has not previously been executed.
  284. // The binding callback allows the application to define which query argument
  285. // values will be marshalled as part of the query execution.
  286. // During execution, the meta data of the prepared query will be routed to the
  287. // binding callback, which is responsible for producing the query argument values.
  288. func (s *Session) Bind(stmt string, b func(q *QueryInfo) ([]interface{}, error)) *Query {
  289. qry := queryPool.Get().(*Query)
  290. qry.session = s
  291. qry.stmt = stmt
  292. qry.binding = b
  293. qry.defaultsFromSession()
  294. return qry
  295. }
  296. // Close closes all connections. The session is unusable after this
  297. // operation.
  298. func (s *Session) Close() {
  299. s.closeMu.Lock()
  300. defer s.closeMu.Unlock()
  301. if s.isClosed {
  302. return
  303. }
  304. s.isClosed = true
  305. if s.pool != nil {
  306. s.pool.Close()
  307. }
  308. if s.control != nil {
  309. s.control.close()
  310. }
  311. if s.nodeEvents != nil {
  312. s.nodeEvents.stop()
  313. }
  314. if s.schemaEvents != nil {
  315. s.schemaEvents.stop()
  316. }
  317. if s.quit != nil {
  318. close(s.quit)
  319. }
  320. }
  321. func (s *Session) Closed() bool {
  322. s.closeMu.RLock()
  323. closed := s.isClosed
  324. s.closeMu.RUnlock()
  325. return closed
  326. }
  327. func (s *Session) executeQuery(qry *Query) (it *Iter) {
  328. // fail fast
  329. if s.Closed() {
  330. return &Iter{err: ErrSessionClosed}
  331. }
  332. iter, err := s.executor.executeQuery(qry)
  333. if err != nil {
  334. return &Iter{err: err}
  335. }
  336. if iter == nil {
  337. panic("nil iter")
  338. }
  339. return iter
  340. }
  341. func (s *Session) removeHost(h *HostInfo) {
  342. s.policy.RemoveHost(h)
  343. s.pool.removeHost(h.ConnectAddress())
  344. s.ring.removeHost(h.ConnectAddress())
  345. }
  346. // KeyspaceMetadata returns the schema metadata for the keyspace specified. Returns an error if the keyspace does not exist.
  347. func (s *Session) KeyspaceMetadata(keyspace string) (*KeyspaceMetadata, error) {
  348. // fail fast
  349. if s.Closed() {
  350. return nil, ErrSessionClosed
  351. } else if keyspace == "" {
  352. return nil, ErrNoKeyspace
  353. }
  354. return s.schemaDescriber.getSchema(keyspace)
  355. }
  356. func (s *Session) getConn() *Conn {
  357. hosts := s.ring.allHosts()
  358. for _, host := range hosts {
  359. if !host.IsUp() {
  360. continue
  361. }
  362. pool, ok := s.pool.getPool(host)
  363. if !ok {
  364. continue
  365. } else if conn := pool.Pick(); conn != nil {
  366. return conn
  367. }
  368. }
  369. return nil
  370. }
  371. // returns routing key indexes and type info
  372. func (s *Session) routingKeyInfo(ctx context.Context, stmt string) (*routingKeyInfo, error) {
  373. s.routingKeyInfoCache.mu.Lock()
  374. entry, cached := s.routingKeyInfoCache.lru.Get(stmt)
  375. if cached {
  376. // done accessing the cache
  377. s.routingKeyInfoCache.mu.Unlock()
  378. // the entry is an inflight struct similar to that used by
  379. // Conn to prepare statements
  380. inflight := entry.(*inflightCachedEntry)
  381. // wait for any inflight work
  382. inflight.wg.Wait()
  383. if inflight.err != nil {
  384. return nil, inflight.err
  385. }
  386. key, _ := inflight.value.(*routingKeyInfo)
  387. return key, nil
  388. }
  389. // create a new inflight entry while the data is created
  390. inflight := new(inflightCachedEntry)
  391. inflight.wg.Add(1)
  392. defer inflight.wg.Done()
  393. s.routingKeyInfoCache.lru.Add(stmt, inflight)
  394. s.routingKeyInfoCache.mu.Unlock()
  395. var (
  396. info *preparedStatment
  397. partitionKey []*ColumnMetadata
  398. )
  399. conn := s.getConn()
  400. if conn == nil {
  401. // TODO: better error?
  402. inflight.err = errors.New("gocql: unable to fetch prepared info: no connection available")
  403. return nil, inflight.err
  404. }
  405. // get the query info for the statement
  406. info, inflight.err = conn.prepareStatement(ctx, stmt, nil)
  407. if inflight.err != nil {
  408. // don't cache this error
  409. s.routingKeyInfoCache.Remove(stmt)
  410. return nil, inflight.err
  411. }
  412. // TODO: it would be nice to mark hosts here but as we are not using the policies
  413. // to fetch hosts we cant
  414. if info.request.colCount == 0 {
  415. // no arguments, no routing key, and no error
  416. return nil, nil
  417. }
  418. if len(info.request.pkeyColumns) > 0 {
  419. // proto v4 dont need to calculate primary key columns
  420. types := make([]TypeInfo, len(info.request.pkeyColumns))
  421. for i, col := range info.request.pkeyColumns {
  422. types[i] = info.request.columns[col].TypeInfo
  423. }
  424. routingKeyInfo := &routingKeyInfo{
  425. indexes: info.request.pkeyColumns,
  426. types: types,
  427. }
  428. inflight.value = routingKeyInfo
  429. return routingKeyInfo, nil
  430. }
  431. // get the table metadata
  432. table := info.request.columns[0].Table
  433. var keyspaceMetadata *KeyspaceMetadata
  434. keyspaceMetadata, inflight.err = s.KeyspaceMetadata(info.request.columns[0].Keyspace)
  435. if inflight.err != nil {
  436. // don't cache this error
  437. s.routingKeyInfoCache.Remove(stmt)
  438. return nil, inflight.err
  439. }
  440. tableMetadata, found := keyspaceMetadata.Tables[table]
  441. if !found {
  442. // unlikely that the statement could be prepared and the metadata for
  443. // the table couldn't be found, but this may indicate either a bug
  444. // in the metadata code, or that the table was just dropped.
  445. inflight.err = ErrNoMetadata
  446. // don't cache this error
  447. s.routingKeyInfoCache.Remove(stmt)
  448. return nil, inflight.err
  449. }
  450. partitionKey = tableMetadata.PartitionKey
  451. size := len(partitionKey)
  452. routingKeyInfo := &routingKeyInfo{
  453. indexes: make([]int, size),
  454. types: make([]TypeInfo, size),
  455. }
  456. for keyIndex, keyColumn := range partitionKey {
  457. // set an indicator for checking if the mapping is missing
  458. routingKeyInfo.indexes[keyIndex] = -1
  459. // find the column in the query info
  460. for argIndex, boundColumn := range info.request.columns {
  461. if keyColumn.Name == boundColumn.Name {
  462. // there may be many such bound columns, pick the first
  463. routingKeyInfo.indexes[keyIndex] = argIndex
  464. routingKeyInfo.types[keyIndex] = boundColumn.TypeInfo
  465. break
  466. }
  467. }
  468. if routingKeyInfo.indexes[keyIndex] == -1 {
  469. // missing a routing key column mapping
  470. // no routing key, and no error
  471. return nil, nil
  472. }
  473. }
  474. // cache this result
  475. inflight.value = routingKeyInfo
  476. return routingKeyInfo, nil
  477. }
  478. func (b *Batch) execute(conn *Conn) *Iter {
  479. return conn.executeBatch(b)
  480. }
  481. func (s *Session) executeBatch(batch *Batch) *Iter {
  482. // fail fast
  483. if s.Closed() {
  484. return &Iter{err: ErrSessionClosed}
  485. }
  486. // Prevent the execution of the batch if greater than the limit
  487. // Currently batches have a limit of 65536 queries.
  488. // https://datastax-oss.atlassian.net/browse/JAVA-229
  489. if batch.Size() > BatchSizeMaximum {
  490. return &Iter{err: ErrTooManyStmts}
  491. }
  492. iter, err := s.executor.executeQuery(batch)
  493. if err != nil {
  494. return &Iter{err: err}
  495. }
  496. return iter
  497. }
  498. // ExecuteBatch executes a batch operation and returns nil if successful
  499. // otherwise an error is returned describing the failure.
  500. func (s *Session) ExecuteBatch(batch *Batch) error {
  501. iter := s.executeBatch(batch)
  502. return iter.Close()
  503. }
  504. // ExecuteBatchCAS executes a batch operation and returns true if successful and
  505. // an iterator (to scan aditional rows if more than one conditional statement)
  506. // was sent.
  507. // Further scans on the interator must also remember to include
  508. // the applied boolean as the first argument to *Iter.Scan
  509. func (s *Session) ExecuteBatchCAS(batch *Batch, dest ...interface{}) (applied bool, iter *Iter, err error) {
  510. iter = s.executeBatch(batch)
  511. if err := iter.checkErrAndNotFound(); err != nil {
  512. iter.Close()
  513. return false, nil, err
  514. }
  515. if len(iter.Columns()) > 1 {
  516. dest = append([]interface{}{&applied}, dest...)
  517. iter.Scan(dest...)
  518. } else {
  519. iter.Scan(&applied)
  520. }
  521. return applied, iter, nil
  522. }
  523. // MapExecuteBatchCAS executes a batch operation much like ExecuteBatchCAS,
  524. // however it accepts a map rather than a list of arguments for the initial
  525. // scan.
  526. func (s *Session) MapExecuteBatchCAS(batch *Batch, dest map[string]interface{}) (applied bool, iter *Iter, err error) {
  527. iter = s.executeBatch(batch)
  528. if err := iter.checkErrAndNotFound(); err != nil {
  529. iter.Close()
  530. return false, nil, err
  531. }
  532. iter.MapScan(dest)
  533. applied = dest["[applied]"].(bool)
  534. delete(dest, "[applied]")
  535. // we usually close here, but instead of closing, just returin an error
  536. // if MapScan failed. Although Close just returns err, using Close
  537. // here might be confusing as we are not actually closing the iter
  538. return applied, iter, iter.err
  539. }
  540. func (s *Session) connect(host *HostInfo, errorHandler ConnErrorHandler) (*Conn, error) {
  541. if s.connectObserver != nil {
  542. obs := ObservedConnect{
  543. Host: host,
  544. Start: time.Now(),
  545. }
  546. conn, err := s.dial(host, s.connCfg, errorHandler)
  547. obs.End = time.Now()
  548. obs.Err = err
  549. s.connectObserver.ObserveConnect(obs)
  550. return conn, err
  551. }
  552. return s.dial(host, s.connCfg, errorHandler)
  553. }
  554. type hostMetrics struct {
  555. Attempts int
  556. TotalLatency int64
  557. }
  558. type queryMetrics struct {
  559. l sync.RWMutex
  560. m map[string]*hostMetrics
  561. }
  562. // Query represents a CQL statement that can be executed.
  563. type Query struct {
  564. stmt string
  565. values []interface{}
  566. cons Consistency
  567. pageSize int
  568. routingKey []byte
  569. routingKeyBuffer []byte
  570. pageState []byte
  571. prefetch float64
  572. trace Tracer
  573. observer QueryObserver
  574. session *Session
  575. rt RetryPolicy
  576. spec SpeculativeExecutionPolicy
  577. binding func(q *QueryInfo) ([]interface{}, error)
  578. serialCons SerialConsistency
  579. defaultTimestamp bool
  580. defaultTimestampValue int64
  581. disableSkipMetadata bool
  582. context context.Context
  583. cancelQuery func()
  584. idempotent bool
  585. customPayload map[string][]byte
  586. metrics *queryMetrics
  587. disableAutoPage bool
  588. }
  589. func (q *Query) defaultsFromSession() {
  590. s := q.session
  591. s.mu.RLock()
  592. q.cons = s.cons
  593. q.pageSize = s.pageSize
  594. q.trace = s.trace
  595. q.observer = s.queryObserver
  596. q.prefetch = s.prefetch
  597. q.rt = s.cfg.RetryPolicy
  598. q.serialCons = s.cfg.SerialConsistency
  599. q.defaultTimestamp = s.cfg.DefaultTimestamp
  600. q.idempotent = s.cfg.DefaultIdempotence
  601. q.metrics = &queryMetrics{m: make(map[string]*hostMetrics)}
  602. // Initiate an empty context with a cancel call
  603. q.WithContext(context.Background())
  604. q.spec = &NonSpeculativeExecution{}
  605. s.mu.RUnlock()
  606. }
  607. func (q *Query) getHostMetrics(host *HostInfo) *hostMetrics {
  608. q.metrics.l.Lock()
  609. metrics, exists := q.metrics.m[host.ConnectAddress().String()]
  610. if !exists {
  611. // if the host is not in the map, it means it's been accessed for the first time
  612. metrics = &hostMetrics{}
  613. q.metrics.m[host.ConnectAddress().String()] = metrics
  614. }
  615. q.metrics.l.Unlock()
  616. return metrics
  617. }
  618. // Statement returns the statement that was used to generate this query.
  619. func (q Query) Statement() string {
  620. return q.stmt
  621. }
  622. // String implements the stringer interface.
  623. func (q Query) String() string {
  624. return fmt.Sprintf("[query statement=%q values=%+v consistency=%s]", q.stmt, q.values, q.cons)
  625. }
  626. //Attempts returns the number of times the query was executed.
  627. func (q *Query) Attempts() int {
  628. q.metrics.l.Lock()
  629. var attempts int
  630. for _, metric := range q.metrics.m {
  631. attempts += metric.Attempts
  632. }
  633. q.metrics.l.Unlock()
  634. return attempts
  635. }
  636. func (q *Query) AddAttempts(i int, host *HostInfo) {
  637. hostMetric := q.getHostMetrics(host)
  638. q.metrics.l.Lock()
  639. hostMetric.Attempts += i
  640. q.metrics.l.Unlock()
  641. }
  642. //Latency returns the average amount of nanoseconds per attempt of the query.
  643. func (q *Query) Latency() int64 {
  644. q.metrics.l.Lock()
  645. var attempts int
  646. var latency int64
  647. for _, metric := range q.metrics.m {
  648. attempts += metric.Attempts
  649. latency += metric.TotalLatency
  650. }
  651. q.metrics.l.Unlock()
  652. if attempts > 0 {
  653. return latency / int64(attempts)
  654. }
  655. return 0
  656. }
  657. func (q *Query) AddLatency(l int64, host *HostInfo) {
  658. hostMetric := q.getHostMetrics(host)
  659. q.metrics.l.Lock()
  660. hostMetric.TotalLatency += l
  661. q.metrics.l.Unlock()
  662. }
  663. // Consistency sets the consistency level for this query. If no consistency
  664. // level have been set, the default consistency level of the cluster
  665. // is used.
  666. func (q *Query) Consistency(c Consistency) *Query {
  667. q.cons = c
  668. return q
  669. }
  670. // GetConsistency returns the currently configured consistency level for
  671. // the query.
  672. func (q *Query) GetConsistency() Consistency {
  673. return q.cons
  674. }
  675. // Same as Consistency but without a return value
  676. func (q *Query) SetConsistency(c Consistency) {
  677. q.cons = c
  678. }
  679. // CustomPayload sets the custom payload level for this query.
  680. func (q *Query) CustomPayload(customPayload map[string][]byte) *Query {
  681. q.customPayload = customPayload
  682. return q
  683. }
  684. func (q *Query) GetContext() context.Context {
  685. return q.context
  686. }
  687. // Trace enables tracing of this query. Look at the documentation of the
  688. // Tracer interface to learn more about tracing.
  689. func (q *Query) Trace(trace Tracer) *Query {
  690. q.trace = trace
  691. return q
  692. }
  693. // Observer enables query-level observer on this query.
  694. // The provided observer will be called every time this query is executed.
  695. func (q *Query) Observer(observer QueryObserver) *Query {
  696. q.observer = observer
  697. return q
  698. }
  699. // PageSize will tell the iterator to fetch the result in pages of size n.
  700. // This is useful for iterating over large result sets, but setting the
  701. // page size too low might decrease the performance. This feature is only
  702. // available in Cassandra 2 and onwards.
  703. func (q *Query) PageSize(n int) *Query {
  704. q.pageSize = n
  705. return q
  706. }
  707. // DefaultTimestamp will enable the with default timestamp flag on the query.
  708. // If enable, this will replace the server side assigned
  709. // timestamp as default timestamp. Note that a timestamp in the query itself
  710. // will still override this timestamp. This is entirely optional.
  711. //
  712. // Only available on protocol >= 3
  713. func (q *Query) DefaultTimestamp(enable bool) *Query {
  714. q.defaultTimestamp = enable
  715. return q
  716. }
  717. // WithTimestamp will enable the with default timestamp flag on the query
  718. // like DefaultTimestamp does. But also allows to define value for timestamp.
  719. // It works the same way as USING TIMESTAMP in the query itself, but
  720. // should not break prepared query optimization
  721. //
  722. // Only available on protocol >= 3
  723. func (q *Query) WithTimestamp(timestamp int64) *Query {
  724. q.DefaultTimestamp(true)
  725. q.defaultTimestampValue = timestamp
  726. return q
  727. }
  728. // RoutingKey sets the routing key to use when a token aware connection
  729. // pool is used to optimize the routing of this query.
  730. func (q *Query) RoutingKey(routingKey []byte) *Query {
  731. q.routingKey = routingKey
  732. return q
  733. }
  734. // WithContext will set the context to use during a query, it will be used to
  735. // timeout when waiting for responses from Cassandra. Additionally it adds
  736. // the cancel function so that it can be called whenever necessary.
  737. func (q *Query) WithContext(ctx context.Context) *Query {
  738. q.context, q.cancelQuery = context.WithCancel(ctx)
  739. return q
  740. }
  741. func (q *Query) Cancel() {
  742. q.cancelQuery()
  743. }
  744. func (q *Query) execute(conn *Conn) *Iter {
  745. return conn.executeQuery(q)
  746. }
  747. func (q *Query) attempt(keyspace string, end, start time.Time, iter *Iter, host *HostInfo) {
  748. q.AddAttempts(1, host)
  749. q.AddLatency(end.Sub(start).Nanoseconds(), host)
  750. if q.observer != nil {
  751. q.observer.ObserveQuery(q.context, ObservedQuery{
  752. Keyspace: keyspace,
  753. Statement: q.stmt,
  754. Start: start,
  755. End: end,
  756. Rows: iter.numRows,
  757. Host: host,
  758. Metrics: q.getHostMetrics(host),
  759. Err: iter.err,
  760. })
  761. }
  762. }
  763. func (q *Query) retryPolicy() RetryPolicy {
  764. return q.rt
  765. }
  766. // Keyspace returns the keyspace the query will be executed against.
  767. func (q *Query) Keyspace() string {
  768. if q.session == nil {
  769. return ""
  770. }
  771. // TODO(chbannis): this should be parsed from the query or we should let
  772. // this be set by users.
  773. return q.session.cfg.Keyspace
  774. }
  775. // GetRoutingKey gets the routing key to use for routing this query. If
  776. // a routing key has not been explicitly set, then the routing key will
  777. // be constructed if possible using the keyspace's schema and the query
  778. // info for this query statement. If the routing key cannot be determined
  779. // then nil will be returned with no error. On any error condition,
  780. // an error description will be returned.
  781. func (q *Query) GetRoutingKey() ([]byte, error) {
  782. if q.routingKey != nil {
  783. return q.routingKey, nil
  784. } else if q.binding != nil && len(q.values) == 0 {
  785. // If this query was created using session.Bind we wont have the query
  786. // values yet, so we have to pass down to the next policy.
  787. // TODO: Remove this and handle this case
  788. return nil, nil
  789. }
  790. // try to determine the routing key
  791. routingKeyInfo, err := q.session.routingKeyInfo(q.context, q.stmt)
  792. if err != nil {
  793. return nil, err
  794. }
  795. if routingKeyInfo == nil {
  796. return nil, nil
  797. }
  798. if len(routingKeyInfo.indexes) == 1 {
  799. // single column routing key
  800. routingKey, err := Marshal(
  801. routingKeyInfo.types[0],
  802. q.values[routingKeyInfo.indexes[0]],
  803. )
  804. if err != nil {
  805. return nil, err
  806. }
  807. return routingKey, nil
  808. }
  809. // We allocate that buffer only once, so that further re-bind/exec of the
  810. // same query don't allocate more memory.
  811. if q.routingKeyBuffer == nil {
  812. q.routingKeyBuffer = make([]byte, 0, 256)
  813. }
  814. // composite routing key
  815. buf := bytes.NewBuffer(q.routingKeyBuffer)
  816. for i := range routingKeyInfo.indexes {
  817. encoded, err := Marshal(
  818. routingKeyInfo.types[i],
  819. q.values[routingKeyInfo.indexes[i]],
  820. )
  821. if err != nil {
  822. return nil, err
  823. }
  824. lenBuf := []byte{0x00, 0x00}
  825. binary.BigEndian.PutUint16(lenBuf, uint16(len(encoded)))
  826. buf.Write(lenBuf)
  827. buf.Write(encoded)
  828. buf.WriteByte(0x00)
  829. }
  830. routingKey := buf.Bytes()
  831. return routingKey, nil
  832. }
  833. func (q *Query) shouldPrepare() bool {
  834. stmt := strings.TrimLeftFunc(strings.TrimRightFunc(q.stmt, func(r rune) bool {
  835. return unicode.IsSpace(r) || r == ';'
  836. }), unicode.IsSpace)
  837. var stmtType string
  838. if n := strings.IndexFunc(stmt, unicode.IsSpace); n >= 0 {
  839. stmtType = strings.ToLower(stmt[:n])
  840. }
  841. if stmtType == "begin" {
  842. if n := strings.LastIndexFunc(stmt, unicode.IsSpace); n >= 0 {
  843. stmtType = strings.ToLower(stmt[n+1:])
  844. }
  845. }
  846. switch stmtType {
  847. case "select", "insert", "update", "delete", "batch":
  848. return true
  849. }
  850. return false
  851. }
  852. // SetPrefetch sets the default threshold for pre-fetching new pages. If
  853. // there are only p*pageSize rows remaining, the next page will be requested
  854. // automatically.
  855. func (q *Query) Prefetch(p float64) *Query {
  856. q.prefetch = p
  857. return q
  858. }
  859. // RetryPolicy sets the policy to use when retrying the query.
  860. func (q *Query) RetryPolicy(r RetryPolicy) *Query {
  861. q.rt = r
  862. return q
  863. }
  864. // SetSpeculativeExecutionPolicy sets the execution policy
  865. func (q *Query) SetSpeculativeExecutionPolicy(sp SpeculativeExecutionPolicy) *Query {
  866. q.spec = sp
  867. return q
  868. }
  869. // speculativeExecutionPolicy fetches the policy
  870. func (q *Query) speculativeExecutionPolicy() SpeculativeExecutionPolicy {
  871. return q.spec
  872. }
  873. func (q *Query) IsIdempotent() bool {
  874. return q.idempotent
  875. }
  876. // Idempotent marks the query as being idempotent or not depending on
  877. // the value.
  878. func (q *Query) Idempotent(value bool) *Query {
  879. q.idempotent = value
  880. return q
  881. }
  882. // Bind sets query arguments of query. This can also be used to rebind new query arguments
  883. // to an existing query instance.
  884. func (q *Query) Bind(v ...interface{}) *Query {
  885. q.values = v
  886. return q
  887. }
  888. // SerialConsistency sets the consistency level for the
  889. // serial phase of conditional updates. That consistency can only be
  890. // either SERIAL or LOCAL_SERIAL and if not present, it defaults to
  891. // SERIAL. This option will be ignored for anything else that a
  892. // conditional update/insert.
  893. func (q *Query) SerialConsistency(cons SerialConsistency) *Query {
  894. q.serialCons = cons
  895. return q
  896. }
  897. // PageState sets the paging state for the query to resume paging from a specific
  898. // point in time. Setting this will disable to query paging for this query, and
  899. // must be used for all subsequent pages.
  900. func (q *Query) PageState(state []byte) *Query {
  901. q.pageState = state
  902. q.disableAutoPage = true
  903. return q
  904. }
  905. // NoSkipMetadata will override the internal result metadata cache so that the driver does not
  906. // send skip_metadata for queries, this means that the result will always contain
  907. // the metadata to parse the rows and will not reuse the metadata from the prepared
  908. // staement. This should only be used to work around cassandra bugs, such as when using
  909. // CAS operations which do not end in Cas.
  910. //
  911. // See https://issues.apache.org/jira/browse/CASSANDRA-11099
  912. // https://github.com/gocql/gocql/issues/612
  913. func (q *Query) NoSkipMetadata() *Query {
  914. q.disableSkipMetadata = true
  915. return q
  916. }
  917. // Exec executes the query without returning any rows.
  918. func (q *Query) Exec() error {
  919. return q.Iter().Close()
  920. }
  921. func isUseStatement(stmt string) bool {
  922. if len(stmt) < 3 {
  923. return false
  924. }
  925. return strings.EqualFold(stmt[0:3], "use")
  926. }
  927. // Iter executes the query and returns an iterator capable of iterating
  928. // over all results.
  929. func (q *Query) Iter() *Iter {
  930. if isUseStatement(q.stmt) {
  931. return &Iter{err: ErrUseStmt}
  932. }
  933. return q.session.executeQuery(q)
  934. }
  935. // MapScan executes the query, copies the columns of the first selected
  936. // row into the map pointed at by m and discards the rest. If no rows
  937. // were selected, ErrNotFound is returned.
  938. func (q *Query) MapScan(m map[string]interface{}) error {
  939. iter := q.Iter()
  940. if err := iter.checkErrAndNotFound(); err != nil {
  941. return err
  942. }
  943. iter.MapScan(m)
  944. return iter.Close()
  945. }
  946. // Scan executes the query, copies the columns of the first selected
  947. // row into the values pointed at by dest and discards the rest. If no rows
  948. // were selected, ErrNotFound is returned.
  949. func (q *Query) Scan(dest ...interface{}) error {
  950. iter := q.Iter()
  951. if err := iter.checkErrAndNotFound(); err != nil {
  952. return err
  953. }
  954. iter.Scan(dest...)
  955. return iter.Close()
  956. }
  957. // ScanCAS executes a lightweight transaction (i.e. an UPDATE or INSERT
  958. // statement containing an IF clause). If the transaction fails because
  959. // the existing values did not match, the previous values will be stored
  960. // in dest.
  961. func (q *Query) ScanCAS(dest ...interface{}) (applied bool, err error) {
  962. q.disableSkipMetadata = true
  963. iter := q.Iter()
  964. if err := iter.checkErrAndNotFound(); err != nil {
  965. return false, err
  966. }
  967. if len(iter.Columns()) > 1 {
  968. dest = append([]interface{}{&applied}, dest...)
  969. iter.Scan(dest...)
  970. } else {
  971. iter.Scan(&applied)
  972. }
  973. return applied, iter.Close()
  974. }
  975. // MapScanCAS executes a lightweight transaction (i.e. an UPDATE or INSERT
  976. // statement containing an IF clause). If the transaction fails because
  977. // the existing values did not match, the previous values will be stored
  978. // in dest map.
  979. //
  980. // As for INSERT .. IF NOT EXISTS, previous values will be returned as if
  981. // SELECT * FROM. So using ScanCAS with INSERT is inherently prone to
  982. // column mismatching. MapScanCAS is added to capture them safely.
  983. func (q *Query) MapScanCAS(dest map[string]interface{}) (applied bool, err error) {
  984. q.disableSkipMetadata = true
  985. iter := q.Iter()
  986. if err := iter.checkErrAndNotFound(); err != nil {
  987. return false, err
  988. }
  989. iter.MapScan(dest)
  990. applied = dest["[applied]"].(bool)
  991. delete(dest, "[applied]")
  992. return applied, iter.Close()
  993. }
  994. // Release releases a query back into a pool of queries. Released Queries
  995. // cannot be reused.
  996. //
  997. // Example:
  998. // qry := session.Query("SELECT * FROM my_table")
  999. // qry.Exec()
  1000. // qry.Release()
  1001. func (q *Query) Release() {
  1002. q.reset()
  1003. queryPool.Put(q)
  1004. }
  1005. // reset zeroes out all fields of a query so that it can be safely pooled.
  1006. func (q *Query) reset() {
  1007. *q = Query{}
  1008. }
  1009. // Iter represents an iterator that can be used to iterate over all rows that
  1010. // were returned by a query. The iterator might send additional queries to the
  1011. // database during the iteration if paging was enabled.
  1012. type Iter struct {
  1013. err error
  1014. pos int
  1015. meta resultMetadata
  1016. numRows int
  1017. next *nextIter
  1018. host *HostInfo
  1019. framer *framer
  1020. closed int32
  1021. }
  1022. // Host returns the host which the query was sent to.
  1023. func (iter *Iter) Host() *HostInfo {
  1024. return iter.host
  1025. }
  1026. // Columns returns the name and type of the selected columns.
  1027. func (iter *Iter) Columns() []ColumnInfo {
  1028. return iter.meta.columns
  1029. }
  1030. type Scanner interface {
  1031. // Next advances the row pointer to point at the next row, the row is valid until
  1032. // the next call of Next. It returns true if there is a row which is available to be
  1033. // scanned into with Scan.
  1034. // Next must be called before every call to Scan.
  1035. Next() bool
  1036. // Scan copies the current row's columns into dest. If the length of dest does not equal
  1037. // the number of columns returned in the row an error is returned. If an error is encountered
  1038. // when unmarshalling a column into the value in dest an error is returned and the row is invalidated
  1039. // until the next call to Next.
  1040. // Next must be called before calling Scan, if it is not an error is returned.
  1041. Scan(...interface{}) error
  1042. // Err returns the if there was one during iteration that resulted in iteration being unable to complete.
  1043. // Err will also release resources held by the iterator, the Scanner should not used after being called.
  1044. Err() error
  1045. }
  1046. type iterScanner struct {
  1047. iter *Iter
  1048. cols [][]byte
  1049. valid bool
  1050. }
  1051. func (is *iterScanner) Next() bool {
  1052. iter := is.iter
  1053. if iter.err != nil {
  1054. return false
  1055. }
  1056. if iter.pos >= iter.numRows {
  1057. if iter.next != nil {
  1058. is.iter = iter.next.fetch()
  1059. return is.Next()
  1060. }
  1061. return false
  1062. }
  1063. for i := 0; i < len(is.cols); i++ {
  1064. col, err := iter.readColumn()
  1065. if err != nil {
  1066. iter.err = err
  1067. return false
  1068. }
  1069. is.cols[i] = col
  1070. }
  1071. iter.pos++
  1072. is.valid = true
  1073. return true
  1074. }
  1075. func scanColumn(p []byte, col ColumnInfo, dest []interface{}) (int, error) {
  1076. if dest[0] == nil {
  1077. return 1, nil
  1078. }
  1079. if col.TypeInfo.Type() == TypeTuple {
  1080. // this will panic, actually a bug, please report
  1081. tuple := col.TypeInfo.(TupleTypeInfo)
  1082. count := len(tuple.Elems)
  1083. // here we pass in a slice of the struct which has the number number of
  1084. // values as elements in the tuple
  1085. if err := Unmarshal(col.TypeInfo, p, dest[:count]); err != nil {
  1086. return 0, err
  1087. }
  1088. return count, nil
  1089. } else {
  1090. if err := Unmarshal(col.TypeInfo, p, dest[0]); err != nil {
  1091. return 0, err
  1092. }
  1093. return 1, nil
  1094. }
  1095. }
  1096. func (is *iterScanner) Scan(dest ...interface{}) error {
  1097. if !is.valid {
  1098. return errors.New("gocql: Scan called without calling Next")
  1099. }
  1100. iter := is.iter
  1101. // currently only support scanning into an expand tuple, such that its the same
  1102. // as scanning in more values from a single column
  1103. if len(dest) != iter.meta.actualColCount {
  1104. return fmt.Errorf("gocql: not enough columns to scan into: have %d want %d", len(dest), iter.meta.actualColCount)
  1105. }
  1106. // i is the current position in dest, could posible replace it and just use
  1107. // slices of dest
  1108. i := 0
  1109. var err error
  1110. for _, col := range iter.meta.columns {
  1111. var n int
  1112. n, err = scanColumn(is.cols[i], col, dest[i:])
  1113. if err != nil {
  1114. break
  1115. }
  1116. i += n
  1117. }
  1118. is.valid = false
  1119. return err
  1120. }
  1121. func (is *iterScanner) Err() error {
  1122. iter := is.iter
  1123. is.iter = nil
  1124. is.cols = nil
  1125. is.valid = false
  1126. return iter.Close()
  1127. }
  1128. // Scanner returns a row Scanner which provides an interface to scan rows in a manner which is
  1129. // similar to database/sql. The iter should NOT be used again after calling this method.
  1130. func (iter *Iter) Scanner() Scanner {
  1131. if iter == nil {
  1132. return nil
  1133. }
  1134. return &iterScanner{iter: iter, cols: make([][]byte, len(iter.meta.columns))}
  1135. }
  1136. func (iter *Iter) readColumn() ([]byte, error) {
  1137. return iter.framer.readBytesInternal()
  1138. }
  1139. // Scan consumes the next row of the iterator and copies the columns of the
  1140. // current row into the values pointed at by dest. Use nil as a dest value
  1141. // to skip the corresponding column. Scan might send additional queries
  1142. // to the database to retrieve the next set of rows if paging was enabled.
  1143. //
  1144. // Scan returns true if the row was successfully unmarshaled or false if the
  1145. // end of the result set was reached or if an error occurred. Close should
  1146. // be called afterwards to retrieve any potential errors.
  1147. func (iter *Iter) Scan(dest ...interface{}) bool {
  1148. if iter.err != nil {
  1149. return false
  1150. }
  1151. if iter.pos >= iter.numRows {
  1152. if iter.next != nil {
  1153. *iter = *iter.next.fetch()
  1154. return iter.Scan(dest...)
  1155. }
  1156. return false
  1157. }
  1158. if iter.next != nil && iter.pos == iter.next.pos {
  1159. go iter.next.fetch()
  1160. }
  1161. // currently only support scanning into an expand tuple, such that its the same
  1162. // as scanning in more values from a single column
  1163. if len(dest) != iter.meta.actualColCount {
  1164. iter.err = fmt.Errorf("gocql: not enough columns to scan into: have %d want %d", len(dest), iter.meta.actualColCount)
  1165. return false
  1166. }
  1167. // i is the current position in dest, could posible replace it and just use
  1168. // slices of dest
  1169. i := 0
  1170. for _, col := range iter.meta.columns {
  1171. colBytes, err := iter.readColumn()
  1172. if err != nil {
  1173. iter.err = err
  1174. return false
  1175. }
  1176. n, err := scanColumn(colBytes, col, dest[i:])
  1177. if err != nil {
  1178. iter.err = err
  1179. return false
  1180. }
  1181. i += n
  1182. }
  1183. iter.pos++
  1184. return true
  1185. }
  1186. // GetCustomPayload returns any parsed custom payload results if given in the
  1187. // response from Cassandra. Note that the result is not a copy.
  1188. //
  1189. // This additional feature of CQL Protocol v4
  1190. // allows additional results and query information to be returned by
  1191. // custom QueryHandlers running in your C* cluster.
  1192. // See https://datastax.github.io/java-driver/manual/custom_payloads/
  1193. func (iter *Iter) GetCustomPayload() map[string][]byte {
  1194. return iter.framer.customPayload
  1195. }
  1196. // Warnings returns any warnings generated if given in the response from Cassandra.
  1197. //
  1198. // This is only available starting with CQL Protocol v4.
  1199. func (iter *Iter) Warnings() []string {
  1200. if iter.framer != nil {
  1201. return iter.framer.header.warnings
  1202. }
  1203. return nil
  1204. }
  1205. // Close closes the iterator and returns any errors that happened during
  1206. // the query or the iteration.
  1207. func (iter *Iter) Close() error {
  1208. if atomic.CompareAndSwapInt32(&iter.closed, 0, 1) {
  1209. if iter.framer != nil {
  1210. iter.framer = nil
  1211. }
  1212. }
  1213. return iter.err
  1214. }
  1215. // WillSwitchPage detects if iterator reached end of current page
  1216. // and the next page is available.
  1217. func (iter *Iter) WillSwitchPage() bool {
  1218. return iter.pos >= iter.numRows && iter.next != nil
  1219. }
  1220. // checkErrAndNotFound handle error and NotFound in one method.
  1221. func (iter *Iter) checkErrAndNotFound() error {
  1222. if iter.err != nil {
  1223. return iter.err
  1224. } else if iter.numRows == 0 {
  1225. return ErrNotFound
  1226. }
  1227. return nil
  1228. }
  1229. // PageState return the current paging state for a query which can be used for
  1230. // subsequent quries to resume paging this point.
  1231. func (iter *Iter) PageState() []byte {
  1232. return iter.meta.pagingState
  1233. }
  1234. // NumRows returns the number of rows in this pagination, it will update when new
  1235. // pages are fetched, it is not the value of the total number of rows this iter
  1236. // will return unless there is only a single page returned.
  1237. func (iter *Iter) NumRows() int {
  1238. return iter.numRows
  1239. }
  1240. type nextIter struct {
  1241. qry Query
  1242. pos int
  1243. once sync.Once
  1244. next *Iter
  1245. conn *Conn
  1246. }
  1247. func (n *nextIter) fetch() *Iter {
  1248. n.once.Do(func() {
  1249. iter := n.qry.session.executor.attemptQuery(&n.qry, n.conn)
  1250. if iter != nil && iter.err == nil {
  1251. n.next = iter
  1252. } else {
  1253. n.next = n.qry.session.executeQuery(&n.qry)
  1254. }
  1255. })
  1256. return n.next
  1257. }
  1258. type Batch struct {
  1259. Type BatchType
  1260. Entries []BatchEntry
  1261. Cons Consistency
  1262. CustomPayload map[string][]byte
  1263. rt RetryPolicy
  1264. spec SpeculativeExecutionPolicy
  1265. observer BatchObserver
  1266. serialCons SerialConsistency
  1267. defaultTimestamp bool
  1268. defaultTimestampValue int64
  1269. context context.Context
  1270. cancelBatch func()
  1271. keyspace string
  1272. metrics *queryMetrics
  1273. }
  1274. // NewBatch creates a new batch operation without defaults from the cluster
  1275. //
  1276. // Deprecated: use session.NewBatch instead
  1277. func NewBatch(typ BatchType) *Batch {
  1278. return &Batch{Type: typ, metrics: &queryMetrics{m: make(map[string]*hostMetrics)}}
  1279. }
  1280. // NewBatch creates a new batch operation using defaults defined in the cluster
  1281. func (s *Session) NewBatch(typ BatchType) *Batch {
  1282. s.mu.RLock()
  1283. batch := &Batch{
  1284. Type: typ,
  1285. rt: s.cfg.RetryPolicy,
  1286. serialCons: s.cfg.SerialConsistency,
  1287. observer: s.batchObserver,
  1288. Cons: s.cons,
  1289. defaultTimestamp: s.cfg.DefaultTimestamp,
  1290. keyspace: s.cfg.Keyspace,
  1291. metrics: &queryMetrics{m: make(map[string]*hostMetrics)},
  1292. spec: &NonSpeculativeExecution{},
  1293. }
  1294. // Initiate an empty context with a cancel call
  1295. batch.WithContext(context.Background())
  1296. s.mu.RUnlock()
  1297. return batch
  1298. }
  1299. func (b *Batch) getHostMetrics(host *HostInfo) *hostMetrics {
  1300. b.metrics.l.Lock()
  1301. metrics, exists := b.metrics.m[host.ConnectAddress().String()]
  1302. if !exists {
  1303. // if the host is not in the map, it means it's been accessed for the first time
  1304. metrics = &hostMetrics{}
  1305. b.metrics.m[host.ConnectAddress().String()] = metrics
  1306. }
  1307. b.metrics.l.Unlock()
  1308. return metrics
  1309. }
  1310. // Observer enables batch-level observer on this batch.
  1311. // The provided observer will be called every time this batched query is executed.
  1312. func (b *Batch) Observer(observer BatchObserver) *Batch {
  1313. b.observer = observer
  1314. return b
  1315. }
  1316. func (b *Batch) Keyspace() string {
  1317. return b.keyspace
  1318. }
  1319. // Attempts returns the number of attempts made to execute the batch.
  1320. func (b *Batch) Attempts() int {
  1321. b.metrics.l.Lock()
  1322. defer b.metrics.l.Unlock()
  1323. var attempts int
  1324. for _, metric := range b.metrics.m {
  1325. attempts += metric.Attempts
  1326. }
  1327. return attempts
  1328. }
  1329. func (b *Batch) AddAttempts(i int, host *HostInfo) {
  1330. hostMetric := b.getHostMetrics(host)
  1331. b.metrics.l.Lock()
  1332. hostMetric.Attempts += i
  1333. b.metrics.l.Unlock()
  1334. }
  1335. //Latency returns the average number of nanoseconds to execute a single attempt of the batch.
  1336. func (b *Batch) Latency() int64 {
  1337. b.metrics.l.Lock()
  1338. defer b.metrics.l.Unlock()
  1339. var (
  1340. attempts int
  1341. latency int64
  1342. )
  1343. for _, metric := range b.metrics.m {
  1344. attempts += metric.Attempts
  1345. latency += metric.TotalLatency
  1346. }
  1347. if attempts > 0 {
  1348. return latency / int64(attempts)
  1349. }
  1350. return 0
  1351. }
  1352. func (b *Batch) AddLatency(l int64, host *HostInfo) {
  1353. hostMetric := b.getHostMetrics(host)
  1354. b.metrics.l.Lock()
  1355. hostMetric.TotalLatency += l
  1356. b.metrics.l.Unlock()
  1357. }
  1358. // GetConsistency returns the currently configured consistency level for the batch
  1359. // operation.
  1360. func (b *Batch) GetConsistency() Consistency {
  1361. return b.Cons
  1362. }
  1363. // SetConsistency sets the currently configured consistency level for the batch
  1364. // operation.
  1365. func (b *Batch) SetConsistency(c Consistency) {
  1366. b.Cons = c
  1367. }
  1368. func (b *Batch) GetContext() context.Context {
  1369. return b.context
  1370. }
  1371. func (b *Batch) IsIdempotent() bool {
  1372. for _, entry := range b.Entries {
  1373. if !entry.Idempotent {
  1374. return false
  1375. }
  1376. }
  1377. return true
  1378. }
  1379. func (b *Batch) speculativeExecutionPolicy() SpeculativeExecutionPolicy {
  1380. return b.spec
  1381. }
  1382. func (b *Batch) SpeculativeExecutionPolicy(sp SpeculativeExecutionPolicy) *Batch {
  1383. b.spec = sp
  1384. return b
  1385. }
  1386. // Query adds the query to the batch operation
  1387. func (b *Batch) Query(stmt string, args ...interface{}) {
  1388. b.Entries = append(b.Entries, BatchEntry{Stmt: stmt, Args: args})
  1389. }
  1390. // Bind adds the query to the batch operation and correlates it with a binding callback
  1391. // that will be invoked when the batch is executed. The binding callback allows the application
  1392. // to define which query argument values will be marshalled as part of the batch execution.
  1393. func (b *Batch) Bind(stmt string, bind func(q *QueryInfo) ([]interface{}, error)) {
  1394. b.Entries = append(b.Entries, BatchEntry{Stmt: stmt, binding: bind})
  1395. }
  1396. func (b *Batch) retryPolicy() RetryPolicy {
  1397. return b.rt
  1398. }
  1399. // RetryPolicy sets the retry policy to use when executing the batch operation
  1400. func (b *Batch) RetryPolicy(r RetryPolicy) *Batch {
  1401. b.rt = r
  1402. return b
  1403. }
  1404. // WithContext will set the context to use during a query, it will be used to
  1405. // timeout when waiting for responses from Cassandra. Additionally it adds
  1406. // the cancel function so that it can be called whenever necessary.
  1407. func (b *Batch) WithContext(ctx context.Context) *Batch {
  1408. b.context, b.cancelBatch = context.WithCancel(ctx)
  1409. return b
  1410. }
  1411. func (b *Batch) Cancel() {
  1412. b.cancelBatch()
  1413. }
  1414. // Size returns the number of batch statements to be executed by the batch operation.
  1415. func (b *Batch) Size() int {
  1416. return len(b.Entries)
  1417. }
  1418. // SerialConsistency sets the consistency level for the
  1419. // serial phase of conditional updates. That consistency can only be
  1420. // either SERIAL or LOCAL_SERIAL and if not present, it defaults to
  1421. // SERIAL. This option will be ignored for anything else that a
  1422. // conditional update/insert.
  1423. //
  1424. // Only available for protocol 3 and above
  1425. func (b *Batch) SerialConsistency(cons SerialConsistency) *Batch {
  1426. b.serialCons = cons
  1427. return b
  1428. }
  1429. // DefaultTimestamp will enable the with default timestamp flag on the query.
  1430. // If enable, this will replace the server side assigned
  1431. // timestamp as default timestamp. Note that a timestamp in the query itself
  1432. // will still override this timestamp. This is entirely optional.
  1433. //
  1434. // Only available on protocol >= 3
  1435. func (b *Batch) DefaultTimestamp(enable bool) *Batch {
  1436. b.defaultTimestamp = enable
  1437. return b
  1438. }
  1439. // WithTimestamp will enable the with default timestamp flag on the query
  1440. // like DefaultTimestamp does. But also allows to define value for timestamp.
  1441. // It works the same way as USING TIMESTAMP in the query itself, but
  1442. // should not break prepared query optimization
  1443. //
  1444. // Only available on protocol >= 3
  1445. func (b *Batch) WithTimestamp(timestamp int64) *Batch {
  1446. b.DefaultTimestamp(true)
  1447. b.defaultTimestampValue = timestamp
  1448. return b
  1449. }
  1450. func (b *Batch) attempt(keyspace string, end, start time.Time, iter *Iter, host *HostInfo) {
  1451. b.AddAttempts(1, host)
  1452. b.AddLatency(end.Sub(start).Nanoseconds(), host)
  1453. if b.observer == nil {
  1454. return
  1455. }
  1456. statements := make([]string, len(b.Entries))
  1457. for i, entry := range b.Entries {
  1458. statements[i] = entry.Stmt
  1459. }
  1460. b.observer.ObserveBatch(b.context, ObservedBatch{
  1461. Keyspace: keyspace,
  1462. Statements: statements,
  1463. Start: start,
  1464. End: end,
  1465. // Rows not used in batch observations // TODO - might be able to support it when using BatchCAS
  1466. Host: host,
  1467. Metrics: b.getHostMetrics(host),
  1468. Err: iter.err,
  1469. })
  1470. }
  1471. func (b *Batch) GetRoutingKey() ([]byte, error) {
  1472. // TODO: use the first statement in the batch as the routing key?
  1473. return nil, nil
  1474. }
  1475. type BatchType byte
  1476. const (
  1477. LoggedBatch BatchType = 0
  1478. UnloggedBatch BatchType = 1
  1479. CounterBatch BatchType = 2
  1480. )
  1481. type BatchEntry struct {
  1482. Stmt string
  1483. Args []interface{}
  1484. Idempotent bool
  1485. binding func(q *QueryInfo) ([]interface{}, error)
  1486. }
  1487. type ColumnInfo struct {
  1488. Keyspace string
  1489. Table string
  1490. Name string
  1491. TypeInfo TypeInfo
  1492. }
  1493. func (c ColumnInfo) String() string {
  1494. return fmt.Sprintf("[column keyspace=%s table=%s name=%s type=%v]", c.Keyspace, c.Table, c.Name, c.TypeInfo)
  1495. }
  1496. // routing key indexes LRU cache
  1497. type routingKeyInfoLRU struct {
  1498. lru *lru.Cache
  1499. mu sync.Mutex
  1500. }
  1501. type routingKeyInfo struct {
  1502. indexes []int
  1503. types []TypeInfo
  1504. }
  1505. func (r *routingKeyInfo) String() string {
  1506. return fmt.Sprintf("routing key index=%v types=%v", r.indexes, r.types)
  1507. }
  1508. func (r *routingKeyInfoLRU) Remove(key string) {
  1509. r.mu.Lock()
  1510. r.lru.Remove(key)
  1511. r.mu.Unlock()
  1512. }
  1513. //Max adjusts the maximum size of the cache and cleans up the oldest records if
  1514. //the new max is lower than the previous value. Not concurrency safe.
  1515. func (r *routingKeyInfoLRU) Max(max int) {
  1516. r.mu.Lock()
  1517. for r.lru.Len() > max {
  1518. r.lru.RemoveOldest()
  1519. }
  1520. r.lru.MaxEntries = max
  1521. r.mu.Unlock()
  1522. }
  1523. type inflightCachedEntry struct {
  1524. wg sync.WaitGroup
  1525. err error
  1526. value interface{}
  1527. }
  1528. // Tracer is the interface implemented by query tracers. Tracers have the
  1529. // ability to obtain a detailed event log of all events that happened during
  1530. // the execution of a query from Cassandra. Gathering this information might
  1531. // be essential for debugging and optimizing queries, but this feature should
  1532. // not be used on production systems with very high load.
  1533. type Tracer interface {
  1534. Trace(traceId []byte)
  1535. }
  1536. type traceWriter struct {
  1537. session *Session
  1538. w io.Writer
  1539. mu sync.Mutex
  1540. }
  1541. // NewTraceWriter returns a simple Tracer implementation that outputs
  1542. // the event log in a textual format.
  1543. func NewTraceWriter(session *Session, w io.Writer) Tracer {
  1544. return &traceWriter{session: session, w: w}
  1545. }
  1546. func (t *traceWriter) Trace(traceId []byte) {
  1547. var (
  1548. coordinator string
  1549. duration int
  1550. )
  1551. iter := t.session.control.query(`SELECT coordinator, duration
  1552. FROM system_traces.sessions
  1553. WHERE session_id = ?`, traceId)
  1554. iter.Scan(&coordinator, &duration)
  1555. if err := iter.Close(); err != nil {
  1556. t.mu.Lock()
  1557. fmt.Fprintln(t.w, "Error:", err)
  1558. t.mu.Unlock()
  1559. return
  1560. }
  1561. var (
  1562. timestamp time.Time
  1563. activity string
  1564. source string
  1565. elapsed int
  1566. )
  1567. t.mu.Lock()
  1568. defer t.mu.Unlock()
  1569. fmt.Fprintf(t.w, "Tracing session %016x (coordinator: %s, duration: %v):\n",
  1570. traceId, coordinator, time.Duration(duration)*time.Microsecond)
  1571. iter = t.session.control.query(`SELECT event_id, activity, source, source_elapsed
  1572. FROM system_traces.events
  1573. WHERE session_id = ?`, traceId)
  1574. for iter.Scan(&timestamp, &activity, &source, &elapsed) {
  1575. fmt.Fprintf(t.w, "%s: %s (source: %s, elapsed: %d)\n",
  1576. timestamp.Format("2006/01/02 15:04:05.999999"), activity, source, elapsed)
  1577. }
  1578. if err := iter.Close(); err != nil {
  1579. fmt.Fprintln(t.w, "Error:", err)
  1580. }
  1581. }
  1582. type ObservedQuery struct {
  1583. Keyspace string
  1584. Statement string
  1585. Start time.Time // time immediately before the query was called
  1586. End time.Time // time immediately after the query returned
  1587. // Rows is the number of rows in the current iter.
  1588. // In paginated queries, rows from previous scans are not counted.
  1589. // Rows is not used in batch queries and remains at the default value
  1590. Rows int
  1591. // Host is the informations about the host that performed the query
  1592. Host *HostInfo
  1593. // The metrics per this host
  1594. Metrics *hostMetrics
  1595. // Err is the error in the query.
  1596. // It only tracks network errors or errors of bad cassandra syntax, in particular selects with no match return nil error
  1597. Err error
  1598. }
  1599. // QueryObserver is the interface implemented by query observers / stat collectors.
  1600. //
  1601. // Experimental, this interface and use may change
  1602. type QueryObserver interface {
  1603. // ObserveQuery gets called on every query to cassandra, including all queries in an iterator when paging is enabled.
  1604. // It doesn't get called if there is no query because the session is closed or there are no connections available.
  1605. // The error reported only shows query errors, i.e. if a SELECT is valid but finds no matches it will be nil.
  1606. ObserveQuery(context.Context, ObservedQuery)
  1607. }
  1608. type ObservedBatch struct {
  1609. Keyspace string
  1610. Statements []string
  1611. Start time.Time // time immediately before the batch query was called
  1612. End time.Time // time immediately after the batch query returned
  1613. // Host is the informations about the host that performed the batch
  1614. Host *HostInfo
  1615. // Err is the error in the batch query.
  1616. // It only tracks network errors or errors of bad cassandra syntax, in particular selects with no match return nil error
  1617. Err error
  1618. // The metrics per this host
  1619. Metrics *hostMetrics
  1620. }
  1621. // BatchObserver is the interface implemented by batch observers / stat collectors.
  1622. type BatchObserver interface {
  1623. // ObserveBatch gets called on every batch query to cassandra.
  1624. // It also gets called once for each query in a batch.
  1625. // It doesn't get called if there is no query because the session is closed or there are no connections available.
  1626. // The error reported only shows query errors, i.e. if a SELECT is valid but finds no matches it will be nil.
  1627. // Unlike QueryObserver.ObserveQuery it does no reporting on rows read.
  1628. ObserveBatch(context.Context, ObservedBatch)
  1629. }
  1630. type ObservedConnect struct {
  1631. // Host is the information about the host about to connect
  1632. Host *HostInfo
  1633. Start time.Time // time immediately before the dial is called
  1634. End time.Time // time immediately after the dial returned
  1635. // Err is the connection error (if any)
  1636. Err error
  1637. }
  1638. // ConnectObserver is the interface implemented by connect observers / stat collectors.
  1639. type ConnectObserver interface {
  1640. // ObserveConnect gets called when a new connection to cassandra is made.
  1641. ObserveConnect(ObservedConnect)
  1642. }
  1643. type Error struct {
  1644. Code int
  1645. Message string
  1646. }
  1647. func (e Error) Error() string {
  1648. return e.Message
  1649. }
  1650. var (
  1651. ErrNotFound = errors.New("not found")
  1652. ErrUnavailable = errors.New("unavailable")
  1653. ErrUnsupported = errors.New("feature not supported")
  1654. ErrTooManyStmts = errors.New("too many statements")
  1655. ErrUseStmt = errors.New("use statements aren't supported. Please see https://github.com/gocql/gocql for explanation.")
  1656. ErrSessionClosed = errors.New("session has been closed")
  1657. ErrNoConnections = errors.New("gocql: no hosts available in the pool")
  1658. ErrNoKeyspace = errors.New("no keyspace provided")
  1659. ErrKeyspaceDoesNotExist = errors.New("keyspace does not exist")
  1660. ErrNoMetadata = errors.New("no metadata available")
  1661. )
  1662. type ErrProtocol struct{ error }
  1663. func NewErrProtocol(format string, args ...interface{}) error {
  1664. return ErrProtocol{fmt.Errorf(format, args...)}
  1665. }
  1666. // BatchSizeMaximum is the maximum number of statements a batch operation can have.
  1667. // This limit is set by cassandra and could change in the future.
  1668. const BatchSizeMaximum = 65535