couchbase 3.7.0 → 3.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (286) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +3 -3
  3. data/ext/CMakeLists.txt +4 -1
  4. data/ext/cache/extconf_include.rb +4 -3
  5. data/ext/cache/mozilla-ca-bundle.crt +66 -93
  6. data/ext/cache/mozilla-ca-bundle.sha256 +1 -1
  7. data/ext/couchbase/CMakeLists.txt +24 -11
  8. data/ext/couchbase/cmake/APKBUILD.in +17 -1
  9. data/ext/couchbase/cmake/Bundler.cmake +9 -1
  10. data/ext/couchbase/cmake/Cache.cmake +48 -19
  11. data/ext/couchbase/cmake/CompilerOptions.cmake +3 -1
  12. data/ext/couchbase/cmake/OpenSSL.cmake +10 -2
  13. data/ext/couchbase/cmake/Packaging.cmake +48 -8
  14. data/ext/couchbase/cmake/ThirdPartyDependencies.cmake +43 -1
  15. data/ext/couchbase/cmake/build_config.hxx.in +2 -0
  16. data/ext/couchbase/cmake/couchbase-cxx-client.spec.in +18 -0
  17. data/ext/couchbase/cmake/tarball_glob.txt +10 -0
  18. data/ext/couchbase/core/app_telemetry_meter.cxx +1 -0
  19. data/ext/couchbase/core/app_telemetry_reporter.cxx +45 -43
  20. data/ext/couchbase/core/app_telemetry_reporter.hxx +4 -3
  21. data/ext/couchbase/core/bucket.cxx +128 -13
  22. data/ext/couchbase/core/bucket.hxx +12 -2
  23. data/ext/couchbase/core/cluster.cxx +304 -152
  24. data/ext/couchbase/core/cluster.hxx +32 -0
  25. data/ext/couchbase/core/cluster_credentials.cxx +25 -0
  26. data/ext/couchbase/core/cluster_credentials.hxx +5 -0
  27. data/ext/couchbase/core/cluster_label_listener.cxx +72 -0
  28. data/ext/couchbase/core/cluster_label_listener.hxx +46 -0
  29. data/ext/couchbase/core/cluster_options.hxx +4 -0
  30. data/ext/couchbase/core/deprecation_utils.hxx +26 -0
  31. data/ext/couchbase/core/error.hxx +27 -0
  32. data/ext/couchbase/core/free_form_http_request.hxx +0 -2
  33. data/ext/couchbase/core/http_component.cxx +12 -48
  34. data/ext/couchbase/core/impl/analytics.cxx +3 -2
  35. data/ext/couchbase/core/impl/analytics.hxx +2 -1
  36. data/ext/couchbase/core/impl/analytics_index_manager.cxx +249 -137
  37. data/ext/couchbase/core/impl/binary_collection.cxx +134 -58
  38. data/ext/couchbase/core/impl/bucket_manager.cxx +87 -35
  39. data/ext/couchbase/core/impl/collection.cxx +560 -245
  40. data/ext/couchbase/core/impl/collection_manager.cxx +89 -49
  41. data/ext/couchbase/core/impl/dns_srv_tracker.cxx +4 -4
  42. data/ext/couchbase/core/impl/error.cxx +20 -13
  43. data/ext/couchbase/core/impl/error.hxx +15 -10
  44. data/ext/couchbase/core/impl/get_all_replicas.hxx +1 -1
  45. data/ext/couchbase/core/impl/get_any_replica.hxx +2 -1
  46. data/ext/couchbase/core/impl/get_replica.hxx +2 -0
  47. data/ext/couchbase/core/impl/lookup_in_replica.hxx +1 -1
  48. data/ext/couchbase/core/impl/observability_recorder.cxx +161 -0
  49. data/ext/couchbase/core/impl/observability_recorder.hxx +77 -0
  50. data/ext/couchbase/core/impl/observe_seqno.hxx +2 -0
  51. data/ext/couchbase/core/impl/public_bucket.cxx +31 -7
  52. data/ext/couchbase/core/impl/public_cluster.cxx +107 -19
  53. data/ext/couchbase/core/impl/query.cxx +6 -3
  54. data/ext/couchbase/core/impl/query.hxx +3 -1
  55. data/ext/couchbase/core/impl/query_index_manager.cxx +267 -102
  56. data/ext/couchbase/core/impl/scope.cxx +53 -11
  57. data/ext/couchbase/core/impl/search.cxx +8 -4
  58. data/ext/couchbase/core/impl/search.hxx +6 -2
  59. data/ext/couchbase/core/impl/search_index_manager.cxx +131 -41
  60. data/ext/couchbase/core/impl/with_cancellation.hxx +75 -0
  61. data/ext/couchbase/core/io/config_tracker.cxx +9 -9
  62. data/ext/couchbase/core/io/config_tracker.hxx +2 -1
  63. data/ext/couchbase/core/io/http_command.hxx +98 -49
  64. data/ext/couchbase/core/io/http_context.hxx +2 -0
  65. data/ext/couchbase/core/io/http_session.cxx +23 -10
  66. data/ext/couchbase/core/io/http_session.hxx +17 -9
  67. data/ext/couchbase/core/io/http_session_manager.hxx +163 -228
  68. data/ext/couchbase/core/io/http_traits.hxx +0 -7
  69. data/ext/couchbase/core/io/mcbp_command.hxx +123 -44
  70. data/ext/couchbase/core/io/mcbp_session.cxx +251 -26
  71. data/ext/couchbase/core/io/mcbp_session.hxx +9 -1
  72. data/ext/couchbase/core/io/mcbp_traits.hxx +0 -8
  73. data/ext/couchbase/core/io/streams.cxx +3 -3
  74. data/ext/couchbase/core/io/streams.hxx +3 -2
  75. data/ext/couchbase/core/meta/features.hxx +15 -0
  76. data/ext/couchbase/core/meta/version.cxx +13 -0
  77. data/ext/couchbase/core/meta/version.hxx +3 -0
  78. data/ext/couchbase/core/metrics/constants.hxx +23 -0
  79. data/ext/couchbase/core/metrics/logging_meter.cxx +5 -5
  80. data/ext/couchbase/core/metrics/meter_wrapper.cxx +65 -63
  81. data/ext/couchbase/core/metrics/meter_wrapper.hxx +12 -10
  82. data/ext/couchbase/core/operations/document_analytics.hxx +0 -5
  83. data/ext/couchbase/core/operations/document_append.hxx +0 -4
  84. data/ext/couchbase/core/operations/document_decrement.hxx +0 -5
  85. data/ext/couchbase/core/operations/document_exists.hxx +0 -7
  86. data/ext/couchbase/core/operations/document_get.hxx +0 -7
  87. data/ext/couchbase/core/operations/document_get_all_replicas.hxx +77 -27
  88. data/ext/couchbase/core/operations/document_get_and_lock.hxx +0 -9
  89. data/ext/couchbase/core/operations/document_get_and_touch.hxx +0 -9
  90. data/ext/couchbase/core/operations/document_get_any_replica.hxx +83 -2
  91. data/ext/couchbase/core/operations/document_get_projected.hxx +0 -9
  92. data/ext/couchbase/core/operations/document_increment.hxx +0 -5
  93. data/ext/couchbase/core/operations/document_insert.hxx +0 -4
  94. data/ext/couchbase/core/operations/document_lookup_in.hxx +0 -9
  95. data/ext/couchbase/core/operations/document_lookup_in_all_replicas.hxx +46 -4
  96. data/ext/couchbase/core/operations/document_lookup_in_any_replica.hxx +121 -43
  97. data/ext/couchbase/core/operations/document_mutate_in.hxx +0 -5
  98. data/ext/couchbase/core/operations/document_prepend.hxx +0 -4
  99. data/ext/couchbase/core/operations/document_query.hxx +0 -4
  100. data/ext/couchbase/core/operations/document_remove.hxx +0 -4
  101. data/ext/couchbase/core/operations/document_replace.hxx +0 -4
  102. data/ext/couchbase/core/operations/document_search.hxx +0 -7
  103. data/ext/couchbase/core/operations/document_touch.hxx +0 -7
  104. data/ext/couchbase/core/operations/document_unlock.hxx +0 -6
  105. data/ext/couchbase/core/operations/document_upsert.hxx +0 -4
  106. data/ext/couchbase/core/operations/document_view.cxx +2 -0
  107. data/ext/couchbase/core/operations/document_view.hxx +10 -13
  108. data/ext/couchbase/core/operations/http_noop.hxx +2 -0
  109. data/ext/couchbase/core/operations/management/analytics_dataset_create.hxx +2 -0
  110. data/ext/couchbase/core/operations/management/analytics_dataset_drop.hxx +2 -0
  111. data/ext/couchbase/core/operations/management/analytics_dataset_get_all.hxx +2 -0
  112. data/ext/couchbase/core/operations/management/analytics_dataverse_create.hxx +2 -0
  113. data/ext/couchbase/core/operations/management/analytics_dataverse_drop.hxx +2 -0
  114. data/ext/couchbase/core/operations/management/analytics_get_pending_mutations.hxx +2 -0
  115. data/ext/couchbase/core/operations/management/analytics_index_create.hxx +2 -0
  116. data/ext/couchbase/core/operations/management/analytics_index_drop.hxx +2 -0
  117. data/ext/couchbase/core/operations/management/analytics_index_get_all.hxx +2 -0
  118. data/ext/couchbase/core/operations/management/analytics_link_connect.hxx +2 -0
  119. data/ext/couchbase/core/operations/management/analytics_link_create.hxx +2 -0
  120. data/ext/couchbase/core/operations/management/analytics_link_disconnect.hxx +2 -0
  121. data/ext/couchbase/core/operations/management/analytics_link_drop.hxx +2 -0
  122. data/ext/couchbase/core/operations/management/analytics_link_get_all.hxx +2 -0
  123. data/ext/couchbase/core/operations/management/analytics_link_replace.hxx +2 -0
  124. data/ext/couchbase/core/operations/management/bucket_create.hxx +2 -0
  125. data/ext/couchbase/core/operations/management/bucket_describe.hxx +2 -0
  126. data/ext/couchbase/core/operations/management/bucket_drop.hxx +2 -0
  127. data/ext/couchbase/core/operations/management/bucket_flush.hxx +2 -0
  128. data/ext/couchbase/core/operations/management/bucket_get.hxx +2 -0
  129. data/ext/couchbase/core/operations/management/bucket_get_all.hxx +2 -0
  130. data/ext/couchbase/core/operations/management/bucket_update.hxx +2 -0
  131. data/ext/couchbase/core/operations/management/change_password.hxx +2 -0
  132. data/ext/couchbase/core/operations/management/cluster_describe.hxx +2 -0
  133. data/ext/couchbase/core/operations/management/cluster_developer_preview_enable.hxx +2 -0
  134. data/ext/couchbase/core/operations/management/collection_create.hxx +2 -0
  135. data/ext/couchbase/core/operations/management/collection_drop.hxx +2 -0
  136. data/ext/couchbase/core/operations/management/collection_update.hxx +2 -0
  137. data/ext/couchbase/core/operations/management/collections_manifest_get.hxx +2 -0
  138. data/ext/couchbase/core/operations/management/error_utils.cxx +4 -1
  139. data/ext/couchbase/core/operations/management/eventing_deploy_function.hxx +2 -0
  140. data/ext/couchbase/core/operations/management/eventing_drop_function.hxx +2 -0
  141. data/ext/couchbase/core/operations/management/eventing_get_all_functions.hxx +2 -0
  142. data/ext/couchbase/core/operations/management/eventing_get_function.hxx +2 -0
  143. data/ext/couchbase/core/operations/management/eventing_get_status.hxx +2 -0
  144. data/ext/couchbase/core/operations/management/eventing_pause_function.hxx +2 -0
  145. data/ext/couchbase/core/operations/management/eventing_resume_function.hxx +2 -0
  146. data/ext/couchbase/core/operations/management/eventing_undeploy_function.hxx +2 -0
  147. data/ext/couchbase/core/operations/management/eventing_upsert_function.hxx +2 -0
  148. data/ext/couchbase/core/operations/management/freeform.hxx +2 -0
  149. data/ext/couchbase/core/operations/management/group_drop.hxx +2 -0
  150. data/ext/couchbase/core/operations/management/group_get.hxx +2 -0
  151. data/ext/couchbase/core/operations/management/group_get_all.hxx +2 -0
  152. data/ext/couchbase/core/operations/management/group_upsert.hxx +2 -0
  153. data/ext/couchbase/core/operations/management/query_index_build.hxx +2 -0
  154. data/ext/couchbase/core/operations/management/query_index_build_deferred.hxx +68 -30
  155. data/ext/couchbase/core/operations/management/query_index_create.hxx +2 -0
  156. data/ext/couchbase/core/operations/management/query_index_drop.hxx +2 -0
  157. data/ext/couchbase/core/operations/management/query_index_get_all.hxx +4 -3
  158. data/ext/couchbase/core/operations/management/query_index_get_all_deferred.hxx +2 -1
  159. data/ext/couchbase/core/operations/management/role_get_all.hxx +2 -0
  160. data/ext/couchbase/core/operations/management/scope_create.hxx +2 -0
  161. data/ext/couchbase/core/operations/management/scope_drop.hxx +2 -0
  162. data/ext/couchbase/core/operations/management/scope_get_all.hxx +2 -0
  163. data/ext/couchbase/core/operations/management/search_get_stats.hxx +2 -0
  164. data/ext/couchbase/core/operations/management/search_index_analyze_document.hxx +2 -0
  165. data/ext/couchbase/core/operations/management/search_index_control_ingest.hxx +2 -0
  166. data/ext/couchbase/core/operations/management/search_index_control_plan_freeze.hxx +2 -0
  167. data/ext/couchbase/core/operations/management/search_index_control_query.hxx +2 -0
  168. data/ext/couchbase/core/operations/management/search_index_drop.hxx +2 -0
  169. data/ext/couchbase/core/operations/management/search_index_get.hxx +2 -0
  170. data/ext/couchbase/core/operations/management/search_index_get_all.hxx +2 -0
  171. data/ext/couchbase/core/operations/management/search_index_get_documents_count.hxx +2 -0
  172. data/ext/couchbase/core/operations/management/search_index_get_stats.hxx +2 -0
  173. data/ext/couchbase/core/operations/management/search_index_upsert.hxx +2 -0
  174. data/ext/couchbase/core/operations/management/user_drop.hxx +2 -0
  175. data/ext/couchbase/core/operations/management/user_get.hxx +2 -0
  176. data/ext/couchbase/core/operations/management/user_get_all.hxx +2 -0
  177. data/ext/couchbase/core/operations/management/user_upsert.hxx +2 -0
  178. data/ext/couchbase/core/operations/management/view_index_drop.hxx +2 -0
  179. data/ext/couchbase/core/operations/management/view_index_get.hxx +2 -0
  180. data/ext/couchbase/core/operations/management/view_index_get_all.hxx +2 -0
  181. data/ext/couchbase/core/operations/management/view_index_upsert.hxx +2 -0
  182. data/ext/couchbase/core/operations/operation_traits.hxx +6 -0
  183. data/ext/couchbase/core/operations.hxx +0 -1
  184. data/ext/couchbase/core/operations_fwd.hxx +8 -0
  185. data/ext/couchbase/core/origin.cxx +67 -12
  186. data/ext/couchbase/core/origin.hxx +13 -8
  187. data/ext/couchbase/core/orphan_reporter.cxx +164 -0
  188. data/ext/couchbase/core/orphan_reporter.hxx +65 -0
  189. data/ext/couchbase/core/sasl/CMakeLists.txt +1 -0
  190. data/ext/couchbase/core/sasl/client.cc +6 -0
  191. data/ext/couchbase/core/sasl/mechanism.cc +2 -1
  192. data/ext/couchbase/core/sasl/mechanism.h +2 -1
  193. data/ext/couchbase/core/sasl/oauthbearer/oauthbearer.cc +41 -0
  194. data/ext/couchbase/core/sasl/oauthbearer/oauthbearer.h +47 -0
  195. data/ext/couchbase/core/tls_context_provider.cxx +44 -0
  196. data/ext/couchbase/core/tls_context_provider.hxx +44 -0
  197. data/ext/couchbase/core/tracing/attribute_helpers.hxx +45 -0
  198. data/ext/couchbase/core/tracing/constants.hxx +148 -68
  199. data/ext/couchbase/core/tracing/threshold_logging_options.hxx +0 -3
  200. data/ext/couchbase/core/tracing/threshold_logging_tracer.cxx +122 -170
  201. data/ext/couchbase/core/tracing/tracer_wrapper.cxx +17 -24
  202. data/ext/couchbase/core/tracing/tracer_wrapper.hxx +8 -10
  203. data/ext/couchbase/core/tracing/wrapper_sdk_tracer.cxx +114 -0
  204. data/ext/couchbase/core/tracing/wrapper_sdk_tracer.hxx +85 -0
  205. data/ext/couchbase/core/transactions/attempt_context_impl.cxx +16 -14
  206. data/ext/couchbase/core/transactions/attempt_context_impl.hxx +4 -4
  207. data/ext/couchbase/core/transactions/transactions.cxx +1 -1
  208. data/ext/couchbase/core/transactions/transactions_cleanup.cxx +1 -2
  209. data/ext/couchbase/core/utils/byteswap.hxx +12 -0
  210. data/ext/couchbase/core/utils/concurrent_fixed_priority_queue.hxx +102 -0
  211. data/ext/couchbase/core/utils/connection_string.cxx +2 -0
  212. data/ext/couchbase/couchbase/certificate_authenticator.hxx +1 -0
  213. data/ext/couchbase/couchbase/cluster.hxx +47 -0
  214. data/ext/couchbase/couchbase/cluster_options.hxx +16 -0
  215. data/ext/couchbase/couchbase/collection.hxx +60 -15
  216. data/ext/couchbase/couchbase/error_codes.hxx +48 -48
  217. data/ext/couchbase/couchbase/jwt_authenticator.hxx +52 -0
  218. data/ext/couchbase/couchbase/metrics/meter.hxx +2 -1
  219. data/ext/couchbase/couchbase/metrics/otel_meter.hxx +75 -80
  220. data/ext/couchbase/couchbase/network_options.hxx +19 -0
  221. data/ext/couchbase/couchbase/password_authenticator.hxx +1 -0
  222. data/ext/couchbase/couchbase/tracing/otel_tracer.hxx +15 -17
  223. data/ext/couchbase/couchbase/tracing/request_span.hxx +2 -2
  224. data/ext/couchbase.cxx +4 -0
  225. data/ext/extconf.rb +1 -0
  226. data/ext/rcb_analytics.cxx +157 -47
  227. data/ext/rcb_backend.cxx +118 -71
  228. data/ext/rcb_buckets.cxx +39 -16
  229. data/ext/rcb_collections.cxx +36 -12
  230. data/ext/rcb_crud.cxx +587 -294
  231. data/ext/rcb_hdr_histogram.cxx +219 -0
  232. data/ext/rcb_hdr_histogram.hxx +28 -0
  233. data/ext/rcb_multi.cxx +142 -59
  234. data/ext/rcb_observability.cxx +132 -0
  235. data/ext/rcb_observability.hxx +49 -0
  236. data/ext/rcb_query.cxx +77 -27
  237. data/ext/rcb_search.cxx +92 -31
  238. data/ext/rcb_users.cxx +69 -26
  239. data/ext/rcb_utils.cxx +91 -0
  240. data/ext/rcb_utils.hxx +141 -168
  241. data/ext/rcb_views.cxx +36 -12
  242. data/lib/active_support/cache/couchbase_store.rb +6 -6
  243. data/lib/couchbase/authenticator.rb +14 -0
  244. data/lib/couchbase/binary_collection.rb +37 -22
  245. data/lib/couchbase/bucket.rb +46 -31
  246. data/lib/couchbase/cluster.rb +146 -61
  247. data/lib/couchbase/collection.rb +257 -186
  248. data/lib/couchbase/datastructures/couchbase_list.rb +81 -50
  249. data/lib/couchbase/datastructures/couchbase_map.rb +86 -50
  250. data/lib/couchbase/datastructures/couchbase_queue.rb +64 -38
  251. data/lib/couchbase/datastructures/couchbase_set.rb +57 -41
  252. data/lib/couchbase/deprecations.rb +1 -1
  253. data/lib/couchbase/diagnostics.rb +8 -8
  254. data/lib/couchbase/errors.rb +6 -0
  255. data/lib/couchbase/management/analytics_index_manager.rb +90 -59
  256. data/lib/couchbase/management/bucket_manager.rb +73 -45
  257. data/lib/couchbase/management/collection_manager.rb +86 -43
  258. data/lib/couchbase/management/collection_query_index_manager.rb +56 -33
  259. data/lib/couchbase/management/query_index_manager.rb +88 -36
  260. data/lib/couchbase/management/scope_search_index_manager.rb +119 -52
  261. data/lib/couchbase/management/search_index_manager.rb +401 -178
  262. data/lib/couchbase/management/user_manager.rb +343 -174
  263. data/lib/couchbase/management/view_index_manager.rb +166 -73
  264. data/lib/couchbase/metrics/logging_meter.rb +108 -0
  265. data/lib/couchbase/metrics/logging_value_recorder.rb +50 -0
  266. data/lib/couchbase/metrics/meter.rb +27 -0
  267. data/lib/couchbase/metrics/noop_meter.rb +30 -0
  268. data/lib/couchbase/metrics/noop_value_recorder.rb +27 -0
  269. data/lib/couchbase/metrics/value_recorder.rb +25 -0
  270. data/lib/couchbase/options.rb +69 -3
  271. data/lib/couchbase/protostellar/cluster.rb +3 -0
  272. data/lib/couchbase/scope.rb +62 -48
  273. data/lib/couchbase/search_options.rb +18 -18
  274. data/lib/couchbase/tracing/noop_span.rb +29 -0
  275. data/lib/couchbase/tracing/noop_tracer.rb +29 -0
  276. data/lib/couchbase/tracing/request_span.rb +34 -0
  277. data/lib/couchbase/tracing/request_tracer.rb +28 -0
  278. data/lib/couchbase/tracing/threshold_logging_span.rb +112 -0
  279. data/lib/couchbase/tracing/threshold_logging_tracer.rb +231 -0
  280. data/lib/couchbase/utils/hdr_histogram.rb +55 -0
  281. data/lib/couchbase/utils/observability.rb +257 -0
  282. data/lib/couchbase/utils/observability_constants.rb +200 -0
  283. data/lib/couchbase/utils/stdlib_logger_adapter.rb +1 -3
  284. data/lib/couchbase/version.rb +1 -1
  285. data/lib/couchbase.rb +2 -2
  286. metadata +58 -6
@@ -24,41 +24,41 @@ namespace couchbase
24
24
  #ifndef COUCHBASE_CXX_CLIENT_DOXYGEN
25
25
  namespace core::impl
26
26
  {
27
- const std::error_category&
28
- common_category() noexcept;
27
+ auto
28
+ common_category() noexcept -> const std::error_category&;
29
29
 
30
- const std::error_category&
31
- key_value_category() noexcept;
30
+ auto
31
+ key_value_category() noexcept -> const std::error_category&;
32
32
 
33
- const std::error_category&
34
- query_category() noexcept;
33
+ auto
34
+ query_category() noexcept -> const std::error_category&;
35
35
 
36
- const std::error_category&
37
- analytics_category() noexcept;
36
+ auto
37
+ analytics_category() noexcept -> const std::error_category&;
38
38
 
39
- const std::error_category&
40
- search_category() noexcept;
39
+ auto
40
+ search_category() noexcept -> const std::error_category&;
41
41
 
42
- const std::error_category&
43
- view_category() noexcept;
42
+ auto
43
+ view_category() noexcept -> const std::error_category&;
44
44
 
45
- const std::error_category&
46
- management_category() noexcept;
45
+ auto
46
+ management_category() noexcept -> const std::error_category&;
47
47
 
48
- const std::error_category&
49
- field_level_encryption_category() noexcept;
48
+ auto
49
+ field_level_encryption_category() noexcept -> const std::error_category&;
50
50
 
51
- const std::error_category&
52
- network_category() noexcept;
51
+ auto
52
+ network_category() noexcept -> const std::error_category&;
53
53
 
54
- const std::error_category&
55
- streaming_json_lexer_category() noexcept;
54
+ auto
55
+ streaming_json_lexer_category() noexcept -> const std::error_category&;
56
56
 
57
- const std::error_category&
58
- transaction_category() noexcept;
57
+ auto
58
+ transaction_category() noexcept -> const std::error_category&;
59
59
 
60
- const std::error_category&
61
- transaction_op_category() noexcept;
60
+ auto
61
+ transaction_op_category() noexcept -> const std::error_category&;
62
62
 
63
63
  } // namespace core::impl
64
64
  #endif
@@ -1151,74 +1151,74 @@ enum class transaction_op {
1151
1151
  };
1152
1152
 
1153
1153
  #ifndef COUCHBASE_CXX_CLIENT_DOXYGEN
1154
- inline std::error_code
1155
- make_error_code(common e) noexcept
1154
+ inline auto
1155
+ make_error_code(common e) noexcept -> std::error_code
1156
1156
  {
1157
1157
  return { static_cast<int>(e), core::impl::common_category() };
1158
1158
  }
1159
1159
 
1160
- inline std::error_code
1161
- make_error_code(key_value e)
1160
+ inline auto
1161
+ make_error_code(key_value e) -> std::error_code
1162
1162
  {
1163
1163
  return { static_cast<int>(e), core::impl::key_value_category() };
1164
1164
  }
1165
1165
 
1166
- inline std::error_code
1167
- make_error_code(query e)
1166
+ inline auto
1167
+ make_error_code(query e) -> std::error_code
1168
1168
  {
1169
1169
  return { static_cast<int>(e), core::impl::query_category() };
1170
1170
  }
1171
1171
 
1172
- inline std::error_code
1173
- make_error_code(search e)
1172
+ inline auto
1173
+ make_error_code(search e) -> std::error_code
1174
1174
  {
1175
1175
  return { static_cast<int>(e), core::impl::search_category() };
1176
1176
  }
1177
1177
 
1178
- inline std::error_code
1179
- make_error_code(view e)
1178
+ inline auto
1179
+ make_error_code(view e) -> std::error_code
1180
1180
  {
1181
1181
  return { static_cast<int>(e), core::impl::view_category() };
1182
1182
  }
1183
1183
 
1184
- inline std::error_code
1185
- make_error_code(analytics e)
1184
+ inline auto
1185
+ make_error_code(analytics e) -> std::error_code
1186
1186
  {
1187
1187
  return { static_cast<int>(e), core::impl::analytics_category() };
1188
1188
  }
1189
1189
 
1190
- inline std::error_code
1191
- make_error_code(management e)
1190
+ inline auto
1191
+ make_error_code(management e) -> std::error_code
1192
1192
  {
1193
1193
  return { static_cast<int>(e), core::impl::management_category() };
1194
1194
  }
1195
1195
 
1196
- inline std::error_code
1197
- make_error_code(network e)
1196
+ inline auto
1197
+ make_error_code(network e) -> std::error_code
1198
1198
  {
1199
1199
  return { static_cast<int>(e), core::impl::network_category() };
1200
1200
  }
1201
1201
 
1202
- inline std::error_code
1203
- make_error_code(field_level_encryption e)
1202
+ inline auto
1203
+ make_error_code(field_level_encryption e) -> std::error_code
1204
1204
  {
1205
1205
  return { static_cast<int>(e), core::impl::field_level_encryption_category() };
1206
1206
  }
1207
1207
 
1208
- inline std::error_code
1209
- make_error_code(streaming_json_lexer e)
1208
+ inline auto
1209
+ make_error_code(streaming_json_lexer e) -> std::error_code
1210
1210
  {
1211
1211
  return { static_cast<int>(e), core::impl::streaming_json_lexer_category() };
1212
1212
  }
1213
1213
 
1214
- inline std::error_code
1215
- make_error_code(transaction e)
1214
+ inline auto
1215
+ make_error_code(transaction e) -> std::error_code
1216
1216
  {
1217
1217
  return { static_cast<int>(e), core::impl::transaction_category() };
1218
1218
  }
1219
1219
 
1220
- inline std::error_code
1221
- make_error_code(transaction_op e)
1220
+ inline auto
1221
+ make_error_code(transaction_op e) -> std::error_code
1222
1222
  {
1223
1223
  return { static_cast<int>(e), core::impl::transaction_op_category() };
1224
1224
  }
@@ -0,0 +1,52 @@
1
+ /* -*- Mode: C++; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2
+ /*
3
+ * Copyright 2020-Present Couchbase, Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+
18
+ #pragma once
19
+
20
+ #include <string>
21
+
22
+ namespace couchbase
23
+ {
24
+ /**
25
+ * A JWT authenticator which uses a JSON Web Token (JWT) to authenticate with the cluster.
26
+ *
27
+ * @since 1.3.0
28
+ * @uncommitted
29
+ */
30
+ class jwt_authenticator
31
+ {
32
+ public:
33
+ /**
34
+ * Creates a JWT authenticator with the provided token.
35
+ *
36
+ * @param token the JWT
37
+ *
38
+ * @since 1.3.0
39
+ * @uncommitted
40
+ */
41
+ explicit jwt_authenticator(std::string token)
42
+ : token_{ std::move(token) }
43
+ {
44
+ }
45
+
46
+ private:
47
+ std::string token_;
48
+
49
+ friend class cluster_options;
50
+ friend class cluster;
51
+ };
52
+ } // namespace couchbase
@@ -17,6 +17,7 @@
17
17
 
18
18
  #pragma once
19
19
 
20
+ #include <cstdint>
20
21
  #include <map>
21
22
  #include <memory>
22
23
  #include <string>
@@ -33,7 +34,7 @@ public:
33
34
  auto operator=(value_recorder&& other) -> value_recorder& = default;
34
35
  virtual ~value_recorder() = default;
35
36
 
36
- virtual void record_value(int64_t value) = 0;
37
+ virtual void record_value(std::int64_t value) = 0;
37
38
  };
38
39
 
39
40
  class meter
@@ -17,75 +17,50 @@
17
17
 
18
18
  #pragma once
19
19
 
20
- #include "opentelemetry/sdk/metrics/meter.h"
21
20
  #include <couchbase/metrics/meter.hxx>
22
21
 
22
+ #include <opentelemetry/context/context.h>
23
+ #include <opentelemetry/metrics/meter.h>
24
+ #include <opentelemetry/metrics/sync_instruments.h>
25
+
23
26
  #include <algorithm>
24
- #include <iostream>
25
- #include <thread>
27
+ #include <memory>
28
+ #include <mutex>
29
+ #include <shared_mutex>
26
30
  #include <utility>
27
-
28
- using couchbase::metrics::meter;
29
- using couchbase::metrics::value_recorder;
30
-
31
- namespace nostd = opentelemetry::nostd;
32
- namespace metrics_api = opentelemetry::metrics;
33
- namespace metrics_sdk = opentelemetry::sdk::metrics;
31
+ #include <variant>
34
32
 
35
33
  namespace couchbase::metrics
36
34
  {
37
-
38
- class otel_sync_histogram
39
- {
40
- public:
41
- otel_sync_histogram(nostd::shared_ptr<metrics_api::Histogram<std::uint64_t>> histogram_counter)
42
- : histogram_counter_(histogram_counter)
43
- {
44
- }
45
-
46
- void record(std::uint64_t value,
47
- const opentelemetry::common::KeyValueIterable& tags,
48
- opentelemetry::context::Context& ctx)
49
- {
50
- histogram_counter_->Record(value, tags, ctx);
51
- }
52
-
53
- private:
54
- nostd::shared_ptr<metrics_api::Histogram<std::uint64_t>> histogram_counter_;
55
- std::mutex mutex_;
56
- };
57
-
35
+ template<typename T>
58
36
  class otel_value_recorder : public couchbase::metrics::value_recorder
59
37
  {
60
38
  public:
61
39
  explicit otel_value_recorder(
62
- nostd::shared_ptr<metrics_api::Histogram<std::uint64_t>> histogram_counter,
40
+ opentelemetry::nostd::shared_ptr<opentelemetry::metrics::Histogram<T>> histogram,
63
41
  const std::map<std::string, std::string>& tags)
64
- : histogram_counter_(histogram_counter)
65
- , tags_(tags)
66
- {
67
- }
68
- void record_value(std::int64_t value) override
42
+ : histogram_{ std::move(histogram) }
43
+ , tags_{ tags }
69
44
  {
70
- value = std::max<int64_t>(value, 0);
71
- auto uvalue = static_cast<std::uint64_t>(value);
72
- histogram_counter_->Record(
73
- uvalue, opentelemetry::common::KeyValueIterableView<decltype(tags_)>{ tags_ }, context_);
45
+ tags_.erase("__unit");
74
46
  }
75
47
 
76
- const std::map<std::string, std::string> tags()
77
- {
78
- return tags_;
79
- }
80
-
81
- nostd::shared_ptr<metrics_api::Histogram<std::uint64_t>> histogram_counter()
48
+ void record_value(std::int64_t value) override
82
49
  {
83
- return histogram_counter_;
50
+ if constexpr (std::is_same_v<T, double>) {
51
+ auto value_in_seconds = static_cast<double>(value) / 1'000'000.0;
52
+ histogram_->Record(
53
+ value_in_seconds, opentelemetry::common::KeyValueIterableView{ tags_ }, context_);
54
+ } else {
55
+ value = std::max<int64_t>(value, 0);
56
+ auto uvalue = static_cast<std::uint64_t>(value);
57
+ histogram_->Record(uvalue, opentelemetry::common::KeyValueIterableView{ tags_ }, context_);
58
+ }
84
59
  }
85
60
 
86
61
  private:
87
- nostd::shared_ptr<metrics_api::Histogram<std::uint64_t>> histogram_counter_;
88
- const std::map<std::string, std::string> tags_;
62
+ opentelemetry::nostd::shared_ptr<opentelemetry::metrics::Histogram<T>> histogram_;
63
+ std::map<std::string, std::string> tags_{};
89
64
  opentelemetry::context::Context context_{};
90
65
  std::mutex mutex_;
91
66
  };
@@ -93,47 +68,67 @@ private:
93
68
  class otel_meter : public couchbase::metrics::meter
94
69
  {
95
70
  public:
96
- explicit otel_meter(nostd::shared_ptr<metrics_api::Meter> meter)
97
- : meter_(meter)
71
+ explicit otel_meter(opentelemetry::nostd::shared_ptr<opentelemetry::metrics::Meter> meter)
72
+ : meter_{ std::move(meter) }
98
73
  {
99
74
  }
100
75
 
101
76
  auto get_value_recorder(const std::string& name, const std::map<std::string, std::string>& tags)
102
77
  -> std::shared_ptr<value_recorder> override
103
78
  {
104
- // first look up the histogram, in case we already have it...
105
- std::scoped_lock<std::mutex> lock(mutex_);
106
- auto it = recorders_.equal_range(name);
107
- if (it.first == it.second) {
108
- // this name isn't associated with any histogram, so make one and return it.
109
- // Note we'd like to make one with more buckets than default, given the range of
110
- // response times we'd like to display (queries vs kv for instance), but otel
111
- // api doesn't seem to allow this.
112
- return recorders_
113
- .insert({ name,
114
- std::make_shared<otel_value_recorder>(
115
- meter_->CreateUInt64Histogram(name, "", "us"), tags) })
116
- ->second;
79
+ bool in_seconds{ false };
80
+ if (tags.count("__unit") > 0) {
81
+ if (tags.at("__unit") == "s") {
82
+ in_seconds = true;
83
+ }
117
84
  }
118
- // so it is already, lets see if we already have one with those tags, or need
119
- // to make a new one (using the histogram we already have).
120
- for (auto itr = it.first; itr != it.second; itr++) {
121
- if (tags == itr->second->tags()) {
122
- return itr->second;
85
+
86
+ {
87
+ // Check if we already have the histogram
88
+ std::shared_lock lock(mutex_);
89
+ if (in_seconds) {
90
+ if (const auto it = double_histograms_.find(name); it != double_histograms_.end()) {
91
+ return std::make_shared<otel_value_recorder<double>>(it->second, tags);
92
+ }
93
+ } else {
94
+ if (const auto it = uint_histograms_.find(name); it != uint_histograms_.end()) {
95
+ return std::make_shared<otel_value_recorder<std::uint64_t>>(it->second, tags);
96
+ }
97
+ }
98
+ }
99
+
100
+ {
101
+ // We have to check if we already have the histogram again, before creating it, in case
102
+ // another thread created it while we were waiting for the exclusive lock
103
+ std::scoped_lock lock(mutex_);
104
+ if (in_seconds) {
105
+ if (const auto it = double_histograms_.find(name); it != double_histograms_.end()) {
106
+ return std::make_shared<otel_value_recorder<double>>(it->second, tags);
107
+ }
108
+ // Not found, we have to create it
109
+ auto histogram = meter_->CreateDoubleHistogram(name, "", "s");
110
+ double_histograms_.emplace(name, std::move(histogram));
111
+ return std::make_shared<otel_value_recorder<double>>(double_histograms_.at(name), tags);
112
+ } else {
113
+ if (const auto it = uint_histograms_.find(name); it != uint_histograms_.end()) {
114
+ return std::make_shared<otel_value_recorder<std::uint64_t>>(it->second, tags);
115
+ }
116
+ // Not found, we have to create it
117
+ auto histogram = meter_->CreateUInt64Histogram(name);
118
+ uint_histograms_.emplace(name, std::move(histogram));
119
+ return std::make_shared<otel_value_recorder<std::uint64_t>>(uint_histograms_.at(name),
120
+ tags);
123
121
  }
124
122
  }
125
- // if you are here, we need to add one with these tags and the histogram associated with the
126
- // name.
127
- return recorders_
128
- .insert(
129
- { name,
130
- std::make_shared<otel_value_recorder>(it.first->second->histogram_counter(), tags) })
131
- ->second;
132
123
  }
133
124
 
134
125
  private:
135
- nostd::shared_ptr<metrics_api::Meter> meter_;
136
- std::mutex mutex_;
137
- std::multimap<std::string, std::shared_ptr<otel_value_recorder>> recorders_;
126
+ opentelemetry::nostd::shared_ptr<opentelemetry::metrics::Meter> meter_;
127
+ std::shared_mutex mutex_;
128
+ std::map<std::string, opentelemetry::nostd::shared_ptr<opentelemetry::metrics::Histogram<double>>>
129
+ double_histograms_;
130
+ std::map<std::string,
131
+ opentelemetry::nostd::shared_ptr<opentelemetry::metrics::Histogram<std::uint64_t>>>
132
+ uint_histograms_;
138
133
  };
139
134
  } // namespace couchbase::metrics
@@ -114,6 +114,22 @@ public:
114
114
  return *this;
115
115
  }
116
116
 
117
+ /**
118
+ * Enables or disables lazy connection of data endpoints.
119
+ *
120
+ * When enabled, connections are established only when the first operation for a given endpoint is
121
+ * scheduled, rather than at cluster object construction time.
122
+ *
123
+ * @volatile This option is considered unstable and may change in future releases.
124
+ *
125
+ * @since 1.3.0
126
+ */
127
+ auto enable_lazy_connections(bool enable) -> network_options&
128
+ {
129
+ enable_lazy_connections_ = enable;
130
+ return *this;
131
+ }
132
+
117
133
  struct built {
118
134
  std::string network;
119
135
  std::string server_group;
@@ -123,6 +139,7 @@ public:
123
139
  std::chrono::milliseconds config_poll_interval;
124
140
  std::chrono::milliseconds idle_http_connection_timeout;
125
141
  std::optional<std::size_t> max_http_connections;
142
+ bool enable_lazy_connections;
126
143
  };
127
144
 
128
145
  [[nodiscard]] auto build() const -> built
@@ -136,6 +153,7 @@ public:
136
153
  config_poll_interval_,
137
154
  idle_http_connection_timeout_,
138
155
  max_http_connections_,
156
+ enable_lazy_connections_,
139
157
  };
140
158
  }
141
159
 
@@ -149,5 +167,6 @@ private:
149
167
  std::chrono::milliseconds config_poll_floor_{ default_config_poll_floor };
150
168
  std::chrono::milliseconds idle_http_connection_timeout_{ default_idle_http_connection_timeout };
151
169
  std::optional<std::size_t> max_http_connections_{};
170
+ bool enable_lazy_connections_{ false };
152
171
  };
153
172
  } // namespace couchbase
@@ -43,5 +43,6 @@ private:
43
43
  bool ldap_compatible_{ false };
44
44
 
45
45
  friend class cluster_options;
46
+ friend class cluster;
46
47
  };
47
48
  } // namespace couchbase
@@ -18,18 +18,15 @@
18
18
  #pragma once
19
19
 
20
20
  #include <couchbase/tracing/request_tracer.hxx>
21
- #include <opentelemetry/exporters/ostream/span_exporter.h>
22
- #include <opentelemetry/sdk/trace/simple_processor.h>
23
- #include <opentelemetry/sdk/trace/tracer_provider.h>
21
+
24
22
  #include <opentelemetry/trace/tracer.h>
25
23
 
26
- namespace nostd = opentelemetry::nostd;
27
24
  namespace couchbase::tracing
28
25
  {
29
26
  class otel_request_span : public couchbase::tracing::request_span
30
27
  {
31
28
  public:
32
- explicit otel_request_span(nostd::shared_ptr<opentelemetry::trace::Span> span)
29
+ explicit otel_request_span(opentelemetry::nostd::shared_ptr<opentelemetry::trace::Span> span)
33
30
  : span_(std::move(span))
34
31
  {
35
32
  }
@@ -45,42 +42,43 @@ public:
45
42
  {
46
43
  span_->End();
47
44
  }
48
- nostd::shared_ptr<opentelemetry::trace::Span> wrapped_span()
45
+ auto wrapped_span() -> opentelemetry::nostd::shared_ptr<opentelemetry::trace::Span>
49
46
  {
50
47
  return span_;
51
48
  }
52
49
 
53
50
  private:
54
- nostd::shared_ptr<opentelemetry::trace::Span> span_;
51
+ opentelemetry::nostd::shared_ptr<opentelemetry::trace::Span> span_;
55
52
  };
56
53
 
57
54
  class otel_request_tracer : public couchbase::tracing::request_tracer
58
55
  {
59
56
  public:
60
- otel_request_tracer(nostd::shared_ptr<opentelemetry::trace::Tracer> tracer)
57
+ explicit otel_request_tracer(
58
+ opentelemetry::nostd::shared_ptr<opentelemetry::trace::Tracer> tracer)
61
59
  : tracer_(std::move(tracer))
62
60
  {
63
61
  }
64
62
 
65
- auto start_span(std::string name, std::shared_ptr<couchbase::tracing::request_span> parent = {})
63
+ auto start_span(std::string name, std::shared_ptr<couchbase::tracing::request_span> parent)
66
64
  -> std::shared_ptr<couchbase::tracing::request_span> override
67
65
  {
68
- auto wrapped_parent = std::dynamic_pointer_cast<otel_request_span>(parent);
66
+ const auto wrapped_parent = std::dynamic_pointer_cast<otel_request_span>(parent);
67
+ opentelemetry::trace::StartSpanOptions opts;
68
+ opts.kind = opentelemetry::trace::SpanKind::kClient;
69
69
  if (wrapped_parent) {
70
- opentelemetry::trace::StartSpanOptions opts;
71
70
  opts.parent = wrapped_parent->wrapped_span()->GetContext();
72
- return std::make_shared<otel_request_span>(tracer_->StartSpan(name, opts));
73
71
  }
74
- return std::make_shared<otel_request_span>(tracer_->StartSpan(name));
72
+ return std::make_shared<otel_request_span>(tracer_->StartSpan(name, opts));
75
73
  }
76
74
 
77
- auto wrap_span(nostd::shared_ptr<opentelemetry::trace::Span> span)
75
+ auto wrap_span(opentelemetry::nostd::shared_ptr<opentelemetry::trace::Span> span)
78
76
  -> std::shared_ptr<couchbase::tracing::otel_request_span>
79
77
  {
80
- return std::make_shared<couchbase::tracing::otel_request_span>(span);
78
+ return std::make_shared<couchbase::tracing::otel_request_span>(std::move(span));
81
79
  }
82
80
 
83
81
  private:
84
- nostd::shared_ptr<opentelemetry::trace::Tracer> tracer_;
82
+ opentelemetry::nostd::shared_ptr<opentelemetry::trace::Tracer> tracer_;
85
83
  };
86
- } // namespace couchbase::tracing
84
+ } // namespace couchbase::tracing
@@ -51,12 +51,12 @@ public:
51
51
  return name_;
52
52
  }
53
53
 
54
- [[nodiscard]] auto parent() const -> std::shared_ptr<request_span>
54
+ [[nodiscard]] virtual auto parent() const -> std::shared_ptr<request_span>
55
55
  {
56
56
  return parent_;
57
57
  }
58
58
 
59
- virtual auto uses_tags() const -> bool
59
+ [[nodiscard]] virtual auto uses_tags() const -> bool
60
60
  {
61
61
  return true;
62
62
  }
data/ext/couchbase.cxx CHANGED
@@ -25,8 +25,10 @@
25
25
  #include "rcb_diagnostics.hxx"
26
26
  #include "rcb_exceptions.hxx"
27
27
  #include "rcb_extras.hxx"
28
+ #include "rcb_hdr_histogram.hxx"
28
29
  #include "rcb_logger.hxx"
29
30
  #include "rcb_multi.hxx"
31
+ #include "rcb_observability.hxx"
30
32
  #include "rcb_query.hxx"
31
33
  #include "rcb_range_scan.hxx"
32
34
  #include "rcb_search.hxx"
@@ -64,5 +66,7 @@ Init_libcouchbase(void)
64
66
  couchbase::ruby::init_diagnostics(cBackend);
65
67
  couchbase::ruby::init_extras(cBackend);
66
68
  couchbase::ruby::init_logger_methods(cBackend);
69
+ couchbase::ruby::init_hdr_histogram(mCouchbase);
70
+ couchbase::ruby::init_observability(cBackend);
67
71
  }
68
72
  }
data/ext/extconf.rb CHANGED
@@ -97,6 +97,7 @@ cmake_flags = [
97
97
  "-DCOUCHBASE_CXX_CLIENT_BUILD_TOOLS=OFF",
98
98
  "-DCOUCHBASE_CXX_CLIENT_BUILD_EXAMPLES=OFF",
99
99
  "-DCOUCHBASE_CXX_CLIENT_INSTALL=OFF",
100
+ "-DCOUCHBASE_CXX_CLIENT_BUILD_OPENTELEMETRY=OFF",
100
101
  ]
101
102
 
102
103
  if version.start_with?("4")