quasardb 3.14.2.dev4__cp39-cp39-macosx_11_0_arm64.whl → 3.14.2.dev6__cp39-cp39-macosx_11_0_arm64.whl

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.

Potentially problematic release.


This version of quasardb might be problematic. Click here for more details.

Files changed (33) hide show
  1. quasardb/CMakeFiles/CMakeDirectoryInformation.cmake +2 -2
  2. quasardb/Makefile +20 -20
  3. quasardb/__init__.py +21 -7
  4. quasardb/cmake_install.cmake +5 -5
  5. quasardb/date/CMakeFiles/CMakeDirectoryInformation.cmake +2 -2
  6. quasardb/date/CMakeFiles/Export/a52b05f964b070ee926bcad51d3288af/dateTargets.cmake +1 -1
  7. quasardb/date/Makefile +20 -20
  8. quasardb/date/cmake_install.cmake +5 -5
  9. quasardb/date/dateTargets.cmake +1 -1
  10. quasardb/extensions/writer.py +59 -61
  11. quasardb/firehose.py +24 -22
  12. quasardb/libqdb_api.dylib +0 -0
  13. quasardb/numpy/__init__.py +262 -128
  14. quasardb/pandas/__init__.py +145 -91
  15. quasardb/pool.py +13 -2
  16. quasardb/pybind11/CMakeFiles/CMakeDirectoryInformation.cmake +2 -2
  17. quasardb/pybind11/Makefile +20 -20
  18. quasardb/pybind11/cmake_install.cmake +2 -2
  19. quasardb/quasardb.cpython-39-darwin.so +0 -0
  20. quasardb/range-v3/CMakeFiles/CMakeDirectoryInformation.cmake +2 -2
  21. quasardb/range-v3/CMakeFiles/Export/d94ef200eca10a819b5858b33e808f5b/range-v3-targets.cmake +1 -1
  22. quasardb/range-v3/CMakeFiles/range.v3.headers.dir/build.make +17 -17
  23. quasardb/range-v3/Makefile +25 -25
  24. quasardb/range-v3/cmake_install.cmake +8 -8
  25. quasardb/range-v3/range-v3-config.cmake +1 -1
  26. quasardb/stats.py +245 -120
  27. quasardb/table_cache.py +5 -1
  28. {quasardb-3.14.2.dev4.dist-info → quasardb-3.14.2.dev6.dist-info}/METADATA +3 -2
  29. quasardb-3.14.2.dev6.dist-info/RECORD +45 -0
  30. {quasardb-3.14.2.dev4.dist-info → quasardb-3.14.2.dev6.dist-info}/WHEEL +1 -1
  31. quasardb-3.14.2.dev4.dist-info/RECORD +0 -45
  32. {quasardb-3.14.2.dev4.dist-info → quasardb-3.14.2.dev6.dist-info/licenses}/LICENSE.md +0 -0
  33. {quasardb-3.14.2.dev4.dist-info → quasardb-3.14.2.dev6.dist-info}/top_level.txt +0 -0
quasardb/stats.py CHANGED
@@ -1,14 +1,20 @@
1
1
  import re
2
+
2
3
  import quasardb
3
4
  import logging
5
+ from collections import defaultdict
4
6
  from datetime import datetime
7
+ from enum import Enum
5
8
 
6
- logger = logging.getLogger('quasardb.stats')
9
+ logger = logging.getLogger("quasardb.stats")
7
10
 
11
+ MAX_KEYS = 4 * 1024 * 1024 # 4 million max keys
12
+ stats_prefix = "$qdb.statistics."
8
13
 
9
- stats_prefix = '$qdb.statistics.'
10
- user_pattern = re.compile(r'\$qdb.statistics.(.*).uid_([0-9]+)$')
11
- total_pattern = re.compile(r'\$qdb.statistics.(.*)$')
14
+ # Compile these regexes once for speed
15
+ user_pattern = re.compile(r"\$qdb.statistics.(.*).uid_([0-9]+)$")
16
+ total_pattern = re.compile(r"\$qdb.statistics.(.*)$")
17
+ user_clean_pattern = re.compile(r"\.uid_\d+")
12
18
 
13
19
 
14
20
  def is_user_stat(s):
@@ -50,91 +56,36 @@ def of_node(dconn):
50
56
  """
51
57
 
52
58
  start = datetime.now()
53
- raw = {
54
- k: _get_stat(dconn,k) for k in dconn.prefix_get(stats_prefix, 1000)}
55
59
 
56
- ret = {'by_uid': _by_uid(raw),
57
- 'cumulative': _cumulative(raw)}
60
+ ks = _get_all_keys(dconn)
61
+ idx = _index_keys(dconn, ks)
62
+ raw = {k: _get_stat_value(dconn, k) for k in ks}
63
+
64
+ ret = {"by_uid": _by_uid(raw, idx), "cumulative": _cumulative(raw, idx)}
58
65
 
59
66
  check_duration = datetime.now() - start
60
67
 
61
- ret['cumulative']['check.online'] = 1
62
- ret['cumulative']['check.duration_ms'] = int(check_duration.total_seconds() * 1000)
68
+ ret["cumulative"]["check.online"] = {
69
+ "value": 1,
70
+ "type": Type.ACCUMULATOR,
71
+ "unit": Unit.NONE,
72
+ }
73
+ ret["cumulative"]["check.duration_ms"] = {
74
+ "value": int(check_duration.total_seconds() * 1000),
75
+ "type": Type.ACCUMULATOR,
76
+ "unit": Unit.MILLISECONDS,
77
+ }
63
78
 
64
79
  return ret
65
80
 
66
- _stat_types = {'node_id': ('constant', None),
67
- 'operating_system': ('constant', None),
68
- 'partitions_count': ('constant', 'count'),
69
-
70
- 'cpu.system': ('counter', 'ns'),
71
- 'cpu.user': ('counter', 'ns'),
72
- 'cpu.idle': ('counter', 'ns'),
73
- 'startup': ('constant', None),
74
- 'startup_time': ('constant', None),
75
- 'shutdown_time': ('constant', None),
76
-
77
- 'network.current_users_count': ('gauge', 'count'),
78
- 'hardware_concurrency': ('gauge', 'count'),
79
-
80
- 'check.online': ('gauge', 'count'),
81
- 'check.duration_ms': ('constant', 'ms'),
82
-
83
- 'requests.bytes_in': ('counter', 'bytes'),
84
- 'requests.bytes_out': ('counter', 'bytes'),
85
- 'requests.errors_count': ('counter', 'count'),
86
- 'requests.successes_count': ('counter', 'count'),
87
- 'requests.total_count': ('counter', 'count'),
88
-
89
- 'async_pipelines.merge.bucket_count': ('counter', 'count'),
90
- 'async_pipelines.merge.duration_us': ('counter', 'us'),
91
- 'async_pipelines.write.successes_count': ('counter', 'count'),
92
- 'async_pipelines.write.failures_count': ('counter', 'count'),
93
- 'async_pipelines.write.time_us': ('counter', 'us'),
94
-
95
- 'async_pipelines.merge.max_bucket_count': ('gauge', 'count'),
96
- 'async_pipelines.merge.max_depth_count': ('gauge', 'count'),
97
- 'async_pipelines.merge.requests_count': ('counter', 'count'),
98
-
99
- 'evicted.count': ('counter', 'count'),
100
- 'pageins.count': ('counter', 'count'),
101
-
102
- }
103
-
104
- async_pipeline_bytes_pattern = re.compile(r'async_pipelines.pipe_[0-9]+.merge_map.bytes')
105
- async_pipeline_count_pattern = re.compile(r'async_pipelines.pipe_[0-9]+.merge_map.count')
106
-
107
- def _stat_type(stat_id):
108
- if stat_id in _stat_types:
109
- return _stat_types[stat_id]
110
- elif stat_id.endswith('total_ns'):
111
- return ('counter', 'ns')
112
- elif stat_id.endswith('total_bytes'):
113
- return ('counter', 'bytes')
114
- elif stat_id.endswith('read_bytes'):
115
- return ('counter', 'bytes')
116
- elif stat_id.endswith('written_bytes'):
117
- return ('counter', 'bytes')
118
- elif stat_id.endswith('total_count'):
119
- return ('counter', 'count')
120
- elif stat_id.startswith('network.sessions.'):
121
- return ('gauge', 'count')
122
- elif stat_id.startswith('memory.'):
123
- # memory statistics are all gauges i think, describes how much memory currently allocated where
124
- return ('gauge', 'bytes')
125
- elif stat_id.startswith('persistence.') or stat_id.startswith('disk'):
126
- # persistence are also all gauges, describes mostly how much is currently available/used on storage
127
- return ('gauge', 'bytes')
128
- elif stat_id.startswith('license.'):
129
- return ('gauge', None)
130
- elif stat_id.startswith('engine_'):
131
- return ('constant', None)
132
- elif async_pipeline_bytes_pattern.match(stat_id):
133
- return ('gauge', 'bytes')
134
- elif async_pipeline_count_pattern.match(stat_id):
135
- return ('gauge', 'count')
136
- else:
137
- return None
81
+
82
+ async_pipeline_bytes_pattern = re.compile(
83
+ r"async_pipelines.pipe_[0-9]+.merge_map.bytes"
84
+ )
85
+ async_pipeline_count_pattern = re.compile(
86
+ r"async_pipelines.pipe_[0-9]+.merge_map.count"
87
+ )
88
+
138
89
 
139
90
  def stat_type(stat_id):
140
91
  """
@@ -146,88 +97,262 @@ def stat_type(stat_id):
146
97
 
147
98
  This is useful for determining which value should be reported in a dashboard.
148
99
  """
149
- return _stat_type(stat_id)
100
+ import warnings
150
101
 
102
+ warnings.warn(
103
+ "The 'stat_type' method is deprecated and will be removed in a future release."
104
+ "The stat type and unit are now part of the return value of invocations to the 'of_node' and 'by_node' methods.",
105
+ DeprecationWarning,
106
+ stacklevel=2,
107
+ )
151
108
 
152
- def _calculate_delta_stat(stat_id, prev, cur):
153
- logger.info("calculating delta for stat_id = {}, prev = {}. cur = {}".format(stat_id, prev, cur))
109
+ return None
154
110
 
155
- stat_type = _stat_type(stat_id)
156
- if stat_type == 'counter':
157
- return cur - prev
158
- elif stat_type == 'gauge':
159
- return cur
160
- else:
161
- return None
162
111
 
163
- def _calculate_delta_stats(prev_stats, cur_stats):
164
- ret = {}
165
- for stat_id in cur_stats.keys():
166
- try:
167
- prev_stat = cur_stats[stat_id]
168
- cur_stat = cur_stats[stat_id]
112
+ def _get_all_keys(dconn, n=1024):
113
+ """
114
+ Returns all keys from a single node.
169
115
 
170
- value = _calculate_delta_stat(stat_id, prev_stat, cur_stat)
171
- if value is not None:
172
- ret[stat_id] = value
116
+ Parameters:
117
+ dconn: quasardb.Node
118
+ Direct node connection to the node we wish to connect to.
173
119
 
174
- except KeyError:
175
- # Stat likely was not present yet in prev_stats
176
- pass
120
+ n: int
121
+ Number of keys to retrieve.
122
+ """
123
+ xs = None
124
+ increase_rate = 8
125
+ # keep getting keys while number of results exceeds the given "n"
126
+ while xs is None or len(xs) >= n:
127
+ if xs is not None:
128
+ n = n * increase_rate
129
+ if n >= MAX_KEYS:
130
+ raise Exception(f"ERROR: Cannot fetch more than {MAX_KEYS} keys.")
131
+ xs = dconn.prefix_get(stats_prefix, n)
177
132
 
178
- return ret
133
+ return xs
134
+
135
+
136
+ class Type(Enum):
137
+ ACCUMULATOR = 1
138
+ GAUGE = 2
139
+ LABEL = 3
140
+
141
+
142
+ class Unit(Enum):
143
+ NONE = 0
144
+ COUNT = 1
145
+
146
+ # Size units
147
+ BYTES = 32
148
+
149
+ # Time/duration units
150
+ EPOCH = 64
151
+ NANOSECONDS = 65
152
+ MICROSECONDS = 66
153
+ MILLISECONDS = 67
154
+ SECONDS = 68
179
155
 
180
156
 
181
- def calculate_delta(prev, cur):
157
+ _type_string_to_enum = {
158
+ "accumulator": Type.ACCUMULATOR,
159
+ "gauge": Type.GAUGE,
160
+ "label": Type.LABEL,
161
+ }
162
+
163
+ _unit_string_to_enum = {
164
+ "none": Unit.NONE,
165
+ "count": Unit.COUNT,
166
+ "bytes": Unit.BYTES,
167
+ "epoch": Unit.EPOCH,
168
+ "nanoseconds": Unit.NANOSECONDS,
169
+ "microseconds": Unit.MICROSECONDS,
170
+ "milliseconds": Unit.MILLISECONDS,
171
+ "seconds": Unit.SECONDS,
172
+ }
173
+
174
+
175
+ def _lookup_enum(dconn, k, m):
176
+ """
177
+ Utility function to avoid code duplication: automatically looks up a key's value
178
+ from QuasarDB and looks it up in provided dict.
179
+ """
180
+
181
+ x = dconn.blob(k).get()
182
+ x = _clean_blob(x)
183
+
184
+ if x not in m:
185
+ raise Exception(f"Unrecognized unit/type {x} from key {k}")
186
+
187
+ return m[x]
188
+
189
+
190
+ def _lookup_type(dconn, k):
191
+ """
192
+ Looks up and parses/validates the metric type.
193
+ """
194
+ assert k.endswith(".type")
195
+
196
+ return _lookup_enum(dconn, k, _type_string_to_enum)
197
+
198
+
199
+ def _lookup_unit(dconn, k):
182
200
  """
183
- Calculates the 'delta' between two successive statistic measurements.
201
+ Looks up and parses/validates the metric type.
184
202
  """
185
- ret = {}
186
- for node_id in cur.keys():
187
- ret[node_id] = _calculate_delta_stats(prev[node_id]['cumulative'],
188
- cur[node_id]['cumulative'])
203
+ assert k.endswith(".unit")
204
+
205
+ return _lookup_enum(dconn, k, _unit_string_to_enum)
206
+
207
+
208
+ def _index_keys(dconn, ks):
209
+ """
210
+ Takes all statistics keys that are retrieved, and "indexes" them in such a way
211
+ that we end up with a dict of all statistic keys, their type and their unit.
212
+ """
213
+
214
+ ###
215
+ # The keys generally look like this, for example:
216
+ #
217
+ # $qdb.statistics.requests.out_bytes
218
+ # $qdb.statistics.requests.out_bytes.type
219
+ # $qdb.statistics.requests.out_bytes.uid_1
220
+ # $qdb.statistics.requests.out_bytes.uid_1.type
221
+ # $qdb.statistics.requests.out_bytes.uid_1.unit
222
+ # $qdb.statistics.requests.out_bytes.unit
223
+ #
224
+ # For this purpose, we simply get rid of the "uid" part, as the per-uid metrics are guaranteed
225
+ # to be of the exact same type as all the others. So after trimming those, the keys will look
226
+ # like this:
227
+ #
228
+ # $qdb.statistics.requests.out_bytes
229
+ # $qdb.statistics.requests.out_bytes.type
230
+ # $qdb.statistics.requests.out_bytes
231
+ # $qdb.statistics.requests.out_bytes.type
232
+ # $qdb.statistics.requests.out_bytes.unit
233
+ # $qdb.statistics.requests.out_bytes.unit
234
+ #
235
+ # And after deduplication like this:
236
+ #
237
+ # $qdb.statistics.requests.out_bytes
238
+ # $qdb.statistics.requests.out_bytes.type
239
+ # $qdb.statistics.requests.out_bytes.unit
240
+ #
241
+ # In which case we'll store `requests.out_bytes` as the statistic type, and look up the type
242
+ # and unit for those metrics and add a placeholder value.
243
+
244
+ ret = defaultdict(lambda: {"value": None, "type": None, "unit": None})
245
+
246
+ for k in ks:
247
+ # Remove any 'uid_[0-9]+' part from the string
248
+ k_ = user_clean_pattern.sub("", k)
249
+
250
+ matches = total_pattern.match(k_)
251
+
252
+ parts = matches.groups()[0].rsplit(".", 1)
253
+ metric_id = parts[0]
254
+
255
+ if len(parts) > 1 and parts[1] == "type":
256
+ if ret[metric_id]["type"] == None:
257
+ # We haven't seen this particular statistic yet
258
+ ret[metric_id]["type"] = _lookup_type(dconn, k)
259
+ elif len(parts) > 1 and parts[1] == "unit":
260
+ if ret[metric_id]["unit"] == None:
261
+ # We haven't seen this particular statistic yet
262
+ ret[metric_id]["unit"] = _lookup_unit(dconn, k)
263
+ else:
264
+ # It's a value, we look those up later
265
+ pass
189
266
 
190
267
  return ret
191
268
 
269
+
192
270
  def _clean_blob(x):
193
- x_ = x.decode('utf-8', 'replace')
271
+ """
272
+ Utility function that decodes a blob as an UTF-8 string, as the direct node C API
273
+ does not yet support 'string' types and as such all statistics are stored as blobs.
274
+ """
275
+ x_ = x.decode("utf-8", "replace")
194
276
 
195
277
  # remove trailing zero-terminator
196
- return ''.join(c for c in x_ if ord(c) != 0)
278
+ return "".join(c for c in x_ if ord(c) != 0)
197
279
 
198
280
 
199
- def _get_stat(dconn, k):
281
+ def _get_stat_value(dconn, k):
200
282
  # Ugly, but works: try to retrieve as integer, if not an int, retrieve as
201
283
  # blob
284
+ #
285
+ # XXX(leon): we could use the index we built to get a much stronger hint
286
+ # on what the type is.
202
287
  try:
203
288
  return dconn.integer(k).get()
289
+
290
+ # Older versions of qdb api returned 'alias not found'
204
291
  except quasardb.quasardb.AliasNotFoundError:
205
292
  return _clean_blob(dconn.blob(k).get())
206
293
 
207
- def _by_uid(stats):
294
+ # Since ~ 3.14.2, it returns 'Incompatible Type'
295
+ except quasardb.quasardb.IncompatibleTypeError:
296
+ return _clean_blob(dconn.blob(k).get())
297
+
298
+
299
+ def _by_uid(stats, idx):
208
300
  xs = {}
209
301
  for k, v in stats.items():
210
302
  matches = user_pattern.match(k)
211
303
  if is_user_stat(k) and matches:
212
304
  (metric, uid_str) = matches.groups()
305
+
306
+ if metric.split(".")[-1] in ["type", "unit"]:
307
+ # We already indexed the type and unit in our idx, this is not interesting
308
+ continue
309
+
310
+ if metric.startswith("serialized"):
311
+ # Internal stuff we don't care about nor cannot do anything with
312
+ continue
313
+
314
+ if not metric in idx:
315
+ raise Exception(f"Metric not in internal index: {metric}")
316
+
317
+ # Parse user id
213
318
  uid = int(uid_str)
319
+
320
+ # Prepare our metric dict
321
+ x = idx[metric].copy()
322
+ x["value"] = v
323
+
214
324
  if uid not in xs:
215
325
  xs[uid] = {}
216
326
 
217
- if not metric.startswith('serialized'):
218
- xs[uid][metric] = v
327
+ xs[uid][metric] = x
219
328
 
220
329
  return xs
221
330
 
222
331
 
223
- def _cumulative(stats):
332
+ def _cumulative(stats, idx):
224
333
  xs = {}
225
334
 
226
335
  for k, v in stats.items():
227
336
  matches = total_pattern.match(k)
228
337
  if is_cumulative_stat(k) and matches:
229
338
  metric = matches.groups()[0]
230
- if not metric.startswith('serialized'):
231
- xs[metric] = v
339
+
340
+ if metric.split(".")[-1] in ["type", "unit"]:
341
+ # We already indexed the type and unit in our idx, this is not interesting
342
+ continue
343
+
344
+ if metric.startswith("serialized"):
345
+ # Internal stuff we don't care about nor cannot do anything with
346
+ continue
347
+
348
+ if not metric in idx:
349
+ raise Exception(f"Metric not in internal index: {metric}")
350
+
351
+ x = idx[metric].copy()
352
+ x["value"] = v
353
+ xs[metric] = x
232
354
 
233
355
  return xs
356
+
357
+
358
+ # async_pipelines.buffer.total_bytes
quasardb/table_cache.py CHANGED
@@ -1,19 +1,22 @@
1
1
  import logging
2
2
 
3
- logger = logging.getLogger('quasardb.table_cache')
3
+ logger = logging.getLogger("quasardb.table_cache")
4
4
 
5
5
  _cache = {}
6
6
 
7
+
7
8
  def clear():
8
9
  logger.info("Clearing table cache")
9
10
  _cache = {}
10
11
 
12
+
11
13
  def exists(table_name: str) -> bool:
12
14
  """
13
15
  Returns true if table already exists in table cache.
14
16
  """
15
17
  return table_name in _cache
16
18
 
19
+
17
20
  def store(table, table_name=None, force_retrieve_metadata=True):
18
21
  """
19
22
  Stores a table into the cache. Ensures metadata is retrieved. This is useful if you want
@@ -35,6 +38,7 @@ def store(table, table_name=None, force_retrieve_metadata=True):
35
38
 
36
39
  return table
37
40
 
41
+
38
42
  def lookup(table_name: str, conn, force_retrieve_metadata=True):
39
43
  """
40
44
  Retrieves table from _cache if already exists. If it does not exist,
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: quasardb
3
- Version: 3.14.2.dev4
3
+ Version: 3.14.2.dev6
4
4
  Summary: Python API for quasardb
5
5
  Home-page: https://www.quasardb.net/
6
6
  Author: quasardb SAS
@@ -35,6 +35,7 @@ Dynamic: classifier
35
35
  Dynamic: home-page
36
36
  Dynamic: keywords
37
37
  Dynamic: license
38
+ Dynamic: license-file
38
39
  Dynamic: provides-extra
39
40
  Dynamic: requires-dist
40
41
  Dynamic: summary
@@ -0,0 +1,45 @@
1
+ quasardb/Makefile,sha256=AJxdiqbssaNbZ0PAGF96KE_PmsoCAcUZSlBDVFlONdI,8291
2
+ quasardb/__init__.py,sha256=x_gazIFMlZ35Op_6Dh0YuKhslM9GlVH2UfjluLsMwf4,4614
3
+ quasardb/cmake_install.cmake,sha256=JJlsUdDP3qtQBjVYD0OZuE7UsoOgbZQZLEqmyEaw3ns,1976
4
+ quasardb/firehose.py,sha256=_kSHuu2rTDHij1RpPLfsnbaiX_rSw-hurhBw54VNS2w,3350
5
+ quasardb/libqdb_api.dylib,sha256=K9ULhfPVyVTakctCESIli-CsTotOl6moxsL0d4tVXqA,46908656
6
+ quasardb/pool.py,sha256=ph4gxwaOcvQ0QqrTO9oVu5Vqy-7t1CweakrgfsmvprM,8474
7
+ quasardb/quasardb.cpython-39-darwin.so,sha256=WkfnHCXRInc7K4QAvdqj56fLl06_Gg05NSTfRlUNnqk,901664
8
+ quasardb/stats.py,sha256=XfMBSQoFbTNAFeyElhAXQRVFueHscmf5cg4zKSWnY2I,9750
9
+ quasardb/table_cache.py,sha256=gYX4wqx4v4uKUE-GE24g-ZOi-OtE67IVDdUcNCIik-w,1511
10
+ quasardb/CMakeFiles/CMakeDirectoryInformation.cmake,sha256=Jb-1m82GoiMvfxC9c0AHs2_d1BXVQqRYPU4toJc5NwQ,730
11
+ quasardb/CMakeFiles/progress.marks,sha256=micfKpFrC27mzsskJvCzIG7wdFeL5V2byU9vP-Orhqo,2
12
+ quasardb/date/Makefile,sha256=QzHy0ZCPxe0aTlxY6NNWi85lQCeOIb8pPmH4NuYx71k,8316
13
+ quasardb/date/cmake_install.cmake,sha256=ff5LtNur06LmcxwLCNg-W7YAT0XwK4o6-UqnKbjNMDc,3557
14
+ quasardb/date/dateConfigVersion.cmake,sha256=rL5Cp_r_23Yu8HmjowwKIH04sxxMwdBZ7no3tr4cx14,2762
15
+ quasardb/date/dateTargets.cmake,sha256=LowYrYv6cqMxByqm9k4ekO1LnnIiSUJL0IQMrfISydE,2869
16
+ quasardb/date/CMakeFiles/CMakeDirectoryInformation.cmake,sha256=Jb-1m82GoiMvfxC9c0AHs2_d1BXVQqRYPU4toJc5NwQ,730
17
+ quasardb/date/CMakeFiles/progress.marks,sha256=micfKpFrC27mzsskJvCzIG7wdFeL5V2byU9vP-Orhqo,2
18
+ quasardb/date/CMakeFiles/Export/a52b05f964b070ee926bcad51d3288af/dateTargets.cmake,sha256=GvSd4PT0WpHLXzmbXs24xB-ekxbiMhN_B_4Te90CIQc,4211
19
+ quasardb/extensions/__init__.py,sha256=FUHR0i62qt5NkOXn7eiMZrzWXo9mQNr1xVz3VSCa9QU,112
20
+ quasardb/extensions/writer.py,sha256=uRL4fVkucd7vwdFySnPLpH4DuNK4bVtXCSRxQk4YJ-g,5567
21
+ quasardb/numpy/__init__.py,sha256=f1Umha37ZOaRlb3akQjS8ycSN7feQw9yTTWAIF2mqvM,33915
22
+ quasardb/pandas/__init__.py,sha256=6MaY_JvFdkvbuZGWRwN132zDXRogAcrKcZOLbXWnHVg,16196
23
+ quasardb/pybind11/Makefile,sha256=THoUaWIJVIsZim0hD1nZW1QS5iOqYf0ti5MiyhVZ8_c,8336
24
+ quasardb/pybind11/cmake_install.cmake,sha256=H59dzfJgorPAa44kHlsjrc92EWEbMofNYF4WqVWwDSA,1484
25
+ quasardb/pybind11/CMakeFiles/CMakeDirectoryInformation.cmake,sha256=Jb-1m82GoiMvfxC9c0AHs2_d1BXVQqRYPU4toJc5NwQ,730
26
+ quasardb/pybind11/CMakeFiles/progress.marks,sha256=micfKpFrC27mzsskJvCzIG7wdFeL5V2byU9vP-Orhqo,2
27
+ quasardb/range-v3/Makefile,sha256=aTJYBAqj1klnsG2ZPMSep_Uo-f5MGn7txpCE2_jjUOY,9697
28
+ quasardb/range-v3/cmake_install.cmake,sha256=XC4t8Viy7E6YFJQVeGMULgPlY7nDxE-RL6m6VDLTT64,4524
29
+ quasardb/range-v3/range-v3-config-version.cmake,sha256=xGi8nCg5dIl5VmCOtTEVVa-dwABxKxLEd1Mx-bUvLLM,3249
30
+ quasardb/range-v3/range-v3-config.cmake,sha256=x2OIgfSL5bagNUvMFMuIwJxXOVtz50D_4ZpawrD3-UA,3423
31
+ quasardb/range-v3/CMakeFiles/CMakeDirectoryInformation.cmake,sha256=Jb-1m82GoiMvfxC9c0AHs2_d1BXVQqRYPU4toJc5NwQ,730
32
+ quasardb/range-v3/CMakeFiles/progress.marks,sha256=micfKpFrC27mzsskJvCzIG7wdFeL5V2byU9vP-Orhqo,2
33
+ quasardb/range-v3/CMakeFiles/Export/d94ef200eca10a819b5858b33e808f5b/range-v3-targets.cmake,sha256=J-PEbAp6ZILGVs6hgb_XBUVayBHMyacZTGvz2l259bo,5265
34
+ quasardb/range-v3/CMakeFiles/range.v3.headers.dir/DependInfo.cmake,sha256=ssojOAtcndfwexIOMvsRoVek3vdNgBmUVZscjIj5L1U,585
35
+ quasardb/range-v3/CMakeFiles/range.v3.headers.dir/build.make,sha256=e4RaMZNcJq3oMKm-JDA7xgYHgxVW9rzEEqfUI16X1mQ,4439
36
+ quasardb/range-v3/CMakeFiles/range.v3.headers.dir/cmake_clean.cmake,sha256=3b0pZoiofoRzAiY1l7OLw203ZXp-mm1FUlQHob6i7aU,160
37
+ quasardb/range-v3/CMakeFiles/range.v3.headers.dir/compiler_depend.make,sha256=Oge9eptzOB-hllw_Tye4o5wiXsIsdq1xm1GGCe0oGFM,126
38
+ quasardb/range-v3/CMakeFiles/range.v3.headers.dir/compiler_depend.ts,sha256=orKrKpvHulgFBjBgzdeRvCpv0fV7cTffTdaHNqijFJg,120
39
+ quasardb/range-v3/CMakeFiles/range.v3.headers.dir/progress.make,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
40
+ quasardb/range-v3/include/range/v3/version.hpp,sha256=d-ToEdR3GnC_p_0RAeS77xL-SVx6EKHgTlWJ9PUQlSQ,586
41
+ quasardb-3.14.2.dev6.dist-info/licenses/LICENSE.md,sha256=_drOadIrIX8mzUZcnTJBTpUQih5gwdRAGK8ZKanYD6k,1467
42
+ quasardb-3.14.2.dev6.dist-info/METADATA,sha256=3lgDPzrOiU-WoBg2yHBVrdBMshwFAJrI-kNdQDV8QzI,1465
43
+ quasardb-3.14.2.dev6.dist-info/WHEEL,sha256=ES7WMjCfTCcTbC2KYibLCYLWC0Crwkt1AuRk5A5tm0o,107
44
+ quasardb-3.14.2.dev6.dist-info/top_level.txt,sha256=wlprix4hCywuF1PkgKWYdZeJKq_kgJOqkAvukm_sZQ8,9
45
+ quasardb-3.14.2.dev6.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: setuptools (80.3.1)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp39-cp39-macosx_11_0_arm64
5
5
 
@@ -1,45 +0,0 @@
1
- quasardb/Makefile,sha256=3yQTYEAmK_wdxmYB0r3j96C8r5sfeY3U6n-QA1ecZ9A,8292
2
- quasardb/__init__.py,sha256=bUq3IUkC13rfB4SIGIScDevSJ1jwB3oJbuBZVPfKt1Q,4547
3
- quasardb/cmake_install.cmake,sha256=c7Hi8pm3nrygXtR1yl8QiwKp7SsMVARq6SCSYNNHwf0,1995
4
- quasardb/firehose.py,sha256=HO0GjCDg3x4cpzVSH3KZ1AJhV8lK2HJyXr9tpfnNSGI,3492
5
- quasardb/libqdb_api.dylib,sha256=L0jBOELjHYuWSeM0Y_wT3NM14E2ATY1MYz1LEpZ445c,35708768
6
- quasardb/pool.py,sha256=4IFwot-U8GEHo8h86264uVTWge44bOH_TUkoVy3Hjac,8449
7
- quasardb/quasardb.cpython-39-darwin.so,sha256=1ssMcF0KD3m662X8Jgy-XmArD9uFsidzmOZczScZ4Lg,917264
8
- quasardb/stats.py,sha256=DKvurzur-4c5nVPjr29_Stu9mvwCynM5gGnw0gVQlt8,7387
9
- quasardb/table_cache.py,sha256=RgLOYEcgmlc5fVeOBOyjZImtYKoM1UEdzyzPc8EriQI,1507
10
- quasardb/CMakeFiles/CMakeDirectoryInformation.cmake,sha256=ouBeXDZW9RGD2T4Rs-8P9sDgd_dSIq7KqlrTHPh2oFw,731
11
- quasardb/CMakeFiles/progress.marks,sha256=micfKpFrC27mzsskJvCzIG7wdFeL5V2byU9vP-Orhqo,2
12
- quasardb/date/Makefile,sha256=4QyEGbkP45JSQ_LqzjQLIr9dQDiasIPZ-YTo8vFP62w,8317
13
- quasardb/date/cmake_install.cmake,sha256=ILS8l2P-Nj3tzmAV5PAX7TIuO3MBaIeNbaB56y7s2JU,3576
14
- quasardb/date/dateConfigVersion.cmake,sha256=rL5Cp_r_23Yu8HmjowwKIH04sxxMwdBZ7no3tr4cx14,2762
15
- quasardb/date/dateTargets.cmake,sha256=UTTH7zSPDb_tkscV25dahdEEX0Bw_t2SozDUBKy7mHI,2869
16
- quasardb/date/CMakeFiles/CMakeDirectoryInformation.cmake,sha256=ouBeXDZW9RGD2T4Rs-8P9sDgd_dSIq7KqlrTHPh2oFw,731
17
- quasardb/date/CMakeFiles/progress.marks,sha256=micfKpFrC27mzsskJvCzIG7wdFeL5V2byU9vP-Orhqo,2
18
- quasardb/date/CMakeFiles/Export/a52b05f964b070ee926bcad51d3288af/dateTargets.cmake,sha256=rWNkRmrNRa8_x5hIZdFw8rJ_aLoigP5fUoRmXaKSyys,4211
19
- quasardb/extensions/__init__.py,sha256=FUHR0i62qt5NkOXn7eiMZrzWXo9mQNr1xVz3VSCa9QU,112
20
- quasardb/extensions/writer.py,sha256=ZH6ldQrbH-DimuQTyk3mXS1OyaJIhvCmZTzFtG4hRfY,5735
21
- quasardb/numpy/__init__.py,sha256=F1gVvEH1ijnm-mG9nd1Co3bNwgO2Y_2RmsmWu3yCsYk,30050
22
- quasardb/pandas/__init__.py,sha256=DkEPAgxIZNinOfFaQ2xMrLiAYdJn7I618HUUQUnvPYo,14884
23
- quasardb/pybind11/Makefile,sha256=2-mFjXtsrbJ1ZDRs8N7DgR5xsg-_QRBJ04CQIp5vo6I,8337
24
- quasardb/pybind11/cmake_install.cmake,sha256=Xni5uuNpBrnZmWBoN8cdxS3b3v8-kFXC_KQ95fMyJA0,1503
25
- quasardb/pybind11/CMakeFiles/CMakeDirectoryInformation.cmake,sha256=ouBeXDZW9RGD2T4Rs-8P9sDgd_dSIq7KqlrTHPh2oFw,731
26
- quasardb/pybind11/CMakeFiles/progress.marks,sha256=micfKpFrC27mzsskJvCzIG7wdFeL5V2byU9vP-Orhqo,2
27
- quasardb/range-v3/Makefile,sha256=ulm9Xna4WtQgYk7IVEeAqQnomt8-DOIXadOmqpsSUug,9698
28
- quasardb/range-v3/cmake_install.cmake,sha256=Z6HUnTY3Q6ECxNi14xSm5zNSAmnjzLBxn0DtrkbX6r0,4543
29
- quasardb/range-v3/range-v3-config-version.cmake,sha256=xGi8nCg5dIl5VmCOtTEVVa-dwABxKxLEd1Mx-bUvLLM,3249
30
- quasardb/range-v3/range-v3-config.cmake,sha256=iiZBJD9yisikJNYDR84f3siZY7xRddr6z48_0R5jj7c,3423
31
- quasardb/range-v3/CMakeFiles/CMakeDirectoryInformation.cmake,sha256=ouBeXDZW9RGD2T4Rs-8P9sDgd_dSIq7KqlrTHPh2oFw,731
32
- quasardb/range-v3/CMakeFiles/progress.marks,sha256=micfKpFrC27mzsskJvCzIG7wdFeL5V2byU9vP-Orhqo,2
33
- quasardb/range-v3/CMakeFiles/Export/d94ef200eca10a819b5858b33e808f5b/range-v3-targets.cmake,sha256=V-vcw4htrvk0Sf8A5IKO2_meFGd26tUGbt-Y2R8kZk4,5265
34
- quasardb/range-v3/CMakeFiles/range.v3.headers.dir/DependInfo.cmake,sha256=ssojOAtcndfwexIOMvsRoVek3vdNgBmUVZscjIj5L1U,585
35
- quasardb/range-v3/CMakeFiles/range.v3.headers.dir/build.make,sha256=aBwlHotuHbebdNYJTRIIC_0cIrjZQ5i_qAz8QJsEvZE,4440
36
- quasardb/range-v3/CMakeFiles/range.v3.headers.dir/cmake_clean.cmake,sha256=3b0pZoiofoRzAiY1l7OLw203ZXp-mm1FUlQHob6i7aU,160
37
- quasardb/range-v3/CMakeFiles/range.v3.headers.dir/compiler_depend.make,sha256=Oge9eptzOB-hllw_Tye4o5wiXsIsdq1xm1GGCe0oGFM,126
38
- quasardb/range-v3/CMakeFiles/range.v3.headers.dir/compiler_depend.ts,sha256=orKrKpvHulgFBjBgzdeRvCpv0fV7cTffTdaHNqijFJg,120
39
- quasardb/range-v3/CMakeFiles/range.v3.headers.dir/progress.make,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
40
- quasardb/range-v3/include/range/v3/version.hpp,sha256=d-ToEdR3GnC_p_0RAeS77xL-SVx6EKHgTlWJ9PUQlSQ,586
41
- quasardb-3.14.2.dev4.dist-info/LICENSE.md,sha256=_drOadIrIX8mzUZcnTJBTpUQih5gwdRAGK8ZKanYD6k,1467
42
- quasardb-3.14.2.dev4.dist-info/METADATA,sha256=MOul9ySjqlzlJStiyMrcGCemCXzKkhvA_k74bztHBQ8,1443
43
- quasardb-3.14.2.dev4.dist-info/WHEEL,sha256=md3JO_ifs5j508p3TDNMgtQVtnQblpGEt_Wo4W56l8Y,107
44
- quasardb-3.14.2.dev4.dist-info/top_level.txt,sha256=wlprix4hCywuF1PkgKWYdZeJKq_kgJOqkAvukm_sZQ8,9
45
- quasardb-3.14.2.dev4.dist-info/RECORD,,