-
Notifications
You must be signed in to change notification settings - Fork 11
/
META.json
71 lines (71 loc) · 2.9 KB
/
META.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "datasketches",
"abstract": "approximate algorithms for big data analysis",
"version": "1.8.0-SNAPSHOT",
"maintainer": [
"Apache DataSketches Dev List <[email protected]>",
"Apache DataSketches Users List <[email protected]>"
],
"license": "postgresql",
"provides": {
"cpc_sketch": {
"abstract": "CPC sketch for approximate distinct counting",
"file": "sql/datasketches_cpc_sketch.sql",
"version": "1.8.0-SNAPSHOT"
},
"theta_sketch": {
"abstract": "Theta sketch for approximate distinct counting with set operations",
"file": "sql/datasketches_theta_sketch.sql",
"version": "1.8.0-SNAPSHOT"
},
"aod_sketch": {
"abstract": "Specialized Tuple sketch with an array of double values associated with each key",
"file": "sql/datasketches_aod_sketch.sql",
"version": "1.8.0-SNAPSHOT"
},
"hll_sketch": {
"abstract": "HLL sketch for approximate distinct counting",
"file": "sql/datasketches_hll_sketch.sql",
"version": "1.8.0-SNAPSHOT"
},
"kll_float_sketch": {
"abstract": "KLL quantiles sketch for approximating distributions of float values (quanitles, ranks, histograms)",
"file": "sql/datasketches_kll_float_sketch.sql",
"version": "1.8.0-SNAPSHOT"
},
"kll_double_sketch": {
"abstract": "KLL quantiles sketch for approximating distributions of double values (quanitles, ranks, histograms)",
"file": "sql/datasketches_kll_double_sketch.sql",
"version": "1.8.0-SNAPSHOT"
},
"req_float_sketch": {
"abstract": "REQ (Relative Error Quantiles) sketch for approximating distributions of float values (quanitles, ranks, histograms)",
"file": "sql/datasketches_req_float_sketch.sql",
"version": "1.8.0-SNAPSHOT"
},
"frequent_strings_sketch": {
"abstract": "frequent items sketch for approximate computation of the most frequent strings",
"file": "sql/datasketches_frequent_strings_sketch.sql",
"version": "1.8.0-SNAPSHOT"
},
"quantiles_double_sketch": {
"abstract": "Quantiles sketch for approximating distributions of double values (quanitles, ranks, histograms), superseded by KLL sketch, included to support legacy sketch data from other platforms",
"file": "sql/datasketches_quantiles_double_sketch.sql",
"version": "1.8.0-SNAPSHOT"
}
},
"resources": {
"bugtracker": {
"web": "https://github.com/apache/datasketches-postgresql/issues"
},
"repository": {
"url": "https://github.com/apache/datasketches-postgresql.git",
"web": "https://github.com/apache/datasketches-postgresql",
"type": "git"
}
},
"meta-spec": {
"version": "1.0.0",
"url": "http://pgxn.org/meta/spec.txt"
}
}