Skip to content

Instantly share code, notes, and snippets.

@pavel-paulau
Created May 16, 2014 17:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pavel-paulau/441692fcf82f05677d46 to your computer and use it in GitHub Desktop.
Save pavel-paulau/441692fcf82f05677d46 to your computer and use it in GitHub Desktop.
10:30:20.985791 Enabling logging: [HTTP NETWORK PIPELINE CATALOG PLANNER SCAN OPTIMIZER PARSER]
10:30:20.985995 Developer Mode Enabled (default developer logging)
10:30:20.986005 Info line disabled false
10:30:20.986252 CATALOG: Created New Site http://127.0.0.1:8091
10:30:20.989442 tuqtng started...
10:30:20.989474 version: 0.0.0
10:30:20.989483 site: http://127.0.0.1:8091
10:30:24.246659 HTTP: request received
10:30:24.246778 HTTP: query string: SELECT COUNT(*) FROM bucket-1 WHERE year = 1990
10:30:24.247171 PARSER: SELECT_SELECT_HEAD
10:30:24.247316 PARSER: FUNSTAR
10:30:24.247336 PARSER: FUNARG STAR
10:30:24.247374 PARSER: FUNCTION EXPR PARAM
10:30:24.247415 PARSER: SUFFIX_EXPR
10:30:24.247487 PARSER: EXPRESSION
10:30:24.247503 PARSER: RESULT EXPR
10:30:24.247522 PARSER: SELECT SELECT TAIL - EXPR
10:30:24.247532 PARSER: SELECT_SELECT
10:30:24.247626 PARSER: PATH - bucket-1
10:30:24.247716 PARSER: FROM DATASOURCE
10:30:24.247739 PARSER: FROM DATASOURCE WITHOUT UNNEST
10:30:24.247749 PARSER: SELECT FROM - DATASOURCE
10:30:24.247846 PARSER: IDENTIFIER - year
10:30:24.247859 PARSER: SUFFIX_EXPR
10:30:24.247924 PARSER: NUMBER 1990
10:30:24.247944 PARSER: NUMBER
10:30:24.247954 PARSER: LITERAL
10:30:24.247963 PARSER: SUFFIX_EXPR
10:30:24.247977 PARSER: EXPR - EQ
10:30:24.247993 PARSER: EXPRESSION
10:30:24.248006 PARSER: SELECT WHERE - EXPR
10:30:24.248031 PARSER: SELECT_CORE
10:30:24.248042 PARSER: SELECT_COMPOUND
10:30:24.248052 PARSER: SELECT_STMT
10:30:24.248064 PARSER: STMT - SELECT
10:30:24.248074 PARSER: INPUT
10:30:24.248459 CATALOG: Created New Pool default
10:30:24.264126 CATALOG: Created New Bucket bucket-1
10:30:24.284534 PLANNER: Indexes in bucket [name: #alldocs on: [META().id] using: view ddoc: { _all_docs } bucket: {0xc200249000 bucket-1 map[#alldocs:0xc20022db40 by_full_state:0xc20022dd70 by_state:0xc20022ddc0 by_year:0xc20022de10] 0xc200248300} name: by_full_state on: [full_state.f] using: view ddoc: {ddl_by_full_state by_full_state
function (doc, meta) {
if (meta.type != "json") return;
var stringToUtf8Bytes = function (str) {
var utf8 = unescape(encodeURIComponent(str));
var bytes = [];
for (var i = 0; i < str.length; ++i) {
bytes.push(str.charCodeAt(i));
}
return bytes;
};
var indexFormattedValue = function (val) {
if (val === null) {
return [64];
} else if (typeof val == "boolean") {
return [96, val];
} else if (typeof val == "number") {
return [128, val];
} else if (typeof val == "string") {
return [160, stringToUtf8Bytes(val)];
} else if (typeof val == "object") {
if (val instanceof Array) {
return [192, val];
} else {
innerKeys = [];
for (var k in val) {
innerKeys.push(k);
}
innerKeys.sort()
innerVals = [];
for (var i in innerKeys) {
innerVals.push(indexFormattedValue(val[innerKeys[i]]));
}
return [224, [innerKeys, innerVals]];
}
} else {
return undefined;
}
};
var key1 = indexFormattedValue(doc.full_state.f);
var key = [key1];
var pos = key.indexOf(undefined);
if (pos == 0) {
return;
} else if (pos > 0) {
key.splice(pos)
}
emit(key, null);
}
// salt: 208240456
} bucket: {0xc200249000 bucket-1 map[#alldocs:0xc20022db40 by_full_state:0xc20022dd70 by_state:0xc20022ddc0 by_year:0xc20022de10] 0xc200248300} name: by_state on: [state.f] using: view ddoc: {ddl_by_state by_state
function (doc, meta) {
if (meta.type != "json") return;
var stringToUtf8Bytes = function (str) {
var utf8 = unescape(encodeURIComponent(str));
var bytes = [];
for (var i = 0; i < str.length; ++i) {
bytes.push(str.charCodeAt(i));
}
return bytes;
};
var indexFormattedValue = function (val) {
if (val === null) {
return [64];
} else if (typeof val == "boolean") {
return [96, val];
} else if (typeof val == "number") {
return [128, val];
} else if (typeof val == "string") {
return [160, stringToUtf8Bytes(val)];
} else if (typeof val == "object") {
if (val instanceof Array) {
return [192, val];
} else {
innerKeys = [];
for (var k in val) {
innerKeys.push(k);
}
innerKeys.sort()
innerVals = [];
for (var i in innerKeys) {
innerVals.push(indexFormattedValue(val[innerKeys[i]]));
}
return [224, [innerKeys, innerVals]];
}
} else {
return undefined;
}
};
var key1 = indexFormattedValue(doc.state.f);
var key = [key1];
var pos = key.indexOf(undefined);
if (pos == 0) {
return;
} else if (pos > 0) {
key.splice(pos)
}
emit(key, null);
}
// salt: 1298498081
} bucket: {0xc200249000 bucket-1 map[#alldocs:0xc20022db40 by_full_state:0xc20022dd70 by_state:0xc20022ddc0 by_year:0xc20022de10] 0xc200248300} name: by_year on: [year] using: view ddoc: {ddl_by_year by_year
function (doc, meta) {
if (meta.type != "json") return;
var stringToUtf8Bytes = function (str) {
var utf8 = unescape(encodeURIComponent(str));
var bytes = [];
for (var i = 0; i < str.length; ++i) {
bytes.push(str.charCodeAt(i));
}
return bytes;
};
var indexFormattedValue = function (val) {
if (val === null) {
return [64];
} else if (typeof val == "boolean") {
return [96, val];
} else if (typeof val == "number") {
return [128, val];
} else if (typeof val == "string") {
return [160, stringToUtf8Bytes(val)];
} else if (typeof val == "object") {
if (val instanceof Array) {
return [192, val];
} else {
innerKeys = [];
for (var k in val) {
innerKeys.push(k);
}
innerKeys.sort()
innerVals = [];
for (var i in innerKeys) {
innerVals.push(indexFormattedValue(val[innerKeys[i]]));
}
return [224, [innerKeys, innerVals]];
}
} else {
return undefined;
}
};
var key1 = indexFormattedValue(doc.year);
var key = [key1];
var pos = key.indexOf(undefined);
if (pos == 0) {
return;
} else if (pos > 0) {
key.splice(pos)
}
emit(key, null);
}
// salt: 911902081
} bucket: {0xc200249000 bucket-1 map[#alldocs:0xc20022db40 by_full_state:0xc20022dd70 by_state:0xc20022ddc0 by_year:0xc20022de10] 0xc200248300} ]
10:30:24.284675 PLANNER: See primary index #alldocs
10:30:24.284703 PLANNER: See index by_full_state
10:30:24.284725 PLANNER: with Key [full_state.f]
10:30:24.284867 PLANNER: Can I use it1: false
10:30:24.284880 PLANNER: See index by_state
10:30:24.284899 PLANNER: with Key [state.f]
10:30:24.284943 PLANNER: Can I use it1: false
10:30:24.284954 PLANNER: See index by_year
10:30:24.284968 PLANNER: with Key [year]
10:30:24.285016 PLANNER: Can I use it1: true
10:30:24.285048 PLANNER: index deps are: [bucket-1.year]
10:30:24.285064 PLANNER: projection not MIN
10:30:24.285108 PLANNER: index deps are: [bucket-1.year]
10:30:24.285177 OPTIMIZER: See plan {0xc2002ac880}
10:30:24.285198 OPTIMIZER: See plan {0xc2002ac8c0}
10:30:24.285218 OPTIMIZER: Choosing plan {0xc2002ac8c0}
10:30:24.285336 PIPELINE: project operator starting
10:30:24.285358 PIPELINE: group operator starting
10:30:24.285374 PIPELINE: filter operator starting
10:30:24.285424 PIPELINE: fetch operator starting
10:30:24.285454 PIPELINE: scan operator starting
10:30:24.285497 PIPELINE: scanning range &{[0xc20029bec0] [0xc20029bec0] 3 0}
10:30:24.285652 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D
10:30:24.344836 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000015450
10:30:24.502152 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000031439
10:30:24.649319 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000048022
10:30:24.785448 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000064699
10:30:24.935406 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000080053
10:30:25.059754 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000096471
10:30:25.208482 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000112580
10:30:25.349243 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000127691
10:30:25.482971 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000144092
10:30:25.640419 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000159667
10:30:25.784727 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000175785
10:30:25.932418 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000192722
10:30:26.070225 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000209195
10:30:26.219333 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000225554
10:30:26.355728 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000241493
10:30:26.496806 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000258002
10:30:26.643141 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000273809
10:30:26.782086 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000289928
10:30:26.928918 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000305782
10:30:27.073621 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000322484
10:30:27.213944 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000337491
10:30:27.367121 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000353218
10:30:27.537826 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000369406
10:30:27.676705 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000385145
10:30:27.817619 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000400613
10:30:27.965537 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000416560
10:30:29.585505 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000433167
10:30:29.722077 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000448881
10:30:29.869255 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000464796
10:30:30.015334 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000480263
10:30:30.159194 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000496096
10:30:30.298099 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000512009
10:30:30.439604 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000528062
10:30:30.577918 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000543802
10:30:30.714897 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000559588
10:30:30.865338 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000575170
10:30:31.013662 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000590648
10:30:31.154673 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000605990
10:30:31.295395 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000622274
10:30:31.438284 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000637855
10:30:31.582541 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000652956
10:30:31.731272 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000668822
10:30:31.869962 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000685159
10:30:32.011102 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000700149
10:30:32.150564 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000715539
10:30:32.291527 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000731279
10:30:32.432845 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000747468
10:30:32.554110 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000763674
10:30:32.682053 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000779956
10:30:32.819430 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000795182
10:30:32.954583 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000811876
10:30:33.089116 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000828107
10:30:33.228507 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000844122
10:30:33.364480 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000860827
10:30:33.506983 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000876796
10:30:33.639266 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000892170
10:30:33.775656 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000908231
10:30:33.898764 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000923633
10:30:34.032394 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000939492
10:30:34.170543 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000956315
10:30:34.304637 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000971918
10:30:34.440838 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000000988882
10:30:34.575068 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001005490
10:30:34.707565 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001022301
10:30:34.843216 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001037544
10:30:34.979920 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001053581
10:30:35.100750 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001069435
10:30:35.243050 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001086197
10:30:35.372283 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001102529
10:30:35.499654 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001118591
10:30:35.636812 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001134165
10:30:35.758171 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001150269
10:30:35.889131 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001166884
10:30:36.024115 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001183014
10:30:36.224466 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001199282
10:30:36.363896 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001215656
10:30:36.493877 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001230899
10:30:36.619777 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001247063
10:30:36.757101 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001262593
10:30:36.895970 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001278248
10:30:37.014882 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001293638
10:30:37.155978 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001310679
10:30:37.290460 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001327475
10:30:37.435201 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001343325
10:30:37.575380 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001359228
10:30:37.698925 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001375699
10:30:37.836225 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001392878
10:30:37.969542 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001409498
10:30:38.105408 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001425520
10:30:38.236422 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001441661
10:30:38.377364 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001458442
10:30:38.508909 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001474676
10:30:38.644903 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001491195
10:30:38.783754 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001507578
10:30:38.918044 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001522480
10:30:39.050140 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001537744
10:30:39.188445 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001553202
10:30:39.323118 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001569976
10:30:39.456977 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001586478
10:30:39.601122 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001601884
10:30:39.737045 NETWORK: Request View: http://127.0.0.1:8092/bucket-1/_design/ddl_by_year/_view/by_year?endkey=%5B%5B128%2C1990%5D%5D&limit=1001&startkey=%5B%5B128%2C1990%5D%5D&startkey_docid=000001617936
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment