I hereby claim:
- I am polyfractal on github.
- I am polyfractal (https://keybase.io/polyfractal) on keybase.
- I have a public key ASBPje2PPWOEKEtFV006hag1mOZ7HYqck57tn2ImyPTj1go
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
var alter = require('../lib/alter.js'); | |
var _ = require('lodash'); | |
var Chainable = require('../lib/classes/chainable'); | |
module.exports = new Chainable('movingstd', { | |
args: [ | |
{ | |
name: 'inputSeries', | |
types: ['seriesList'] | |
}, | |
{ |
Ran on my macbook air, half a million docs. Single node, 5 primary 0 replica. Node restarted between runs to make sure all caches cleared, etc.
$ python loadtester.py --es "http://localhost:9200/speedtest/_search" -i ../data/stoicism.txt -o test1.txt --ns 10000 --nt 3 --nf 10
0 26004 1.36110687256
1000 5561 0.0182199478149
2000 10516 0.0134048461914
3000 42137 0.0833399295807
4000 34922 0.0168430805206
termInfo = _index[field].get(term,_PAYLOADS); | |
score = 0; | |
for (pos : termInfo) { | |
score = score + pos.payloadAsFloat(0); | |
} | |
return score; |
curl -XPUT "http://localhost:9200/test" -d' | |
{ | |
"mappings": { | |
"test" : { | |
"properties": { | |
"arrayfield" : { | |
"type": "string" | |
} | |
} | |
} |
./bin/run-all.sh "/usr/share/elasticsearch/bin/elasticsearch -Des.path.conf=/etc/elasticsearch/" | |
Starting Elasticsearch... | |
Warming the JVM... | |
....................done! | |
------------------------------ Transient Tests ------------------------------ | |
elasticsearch tests |
<?php | |
/** | |
* Equivalent to performRequest in curlMultiHandleConnection | |
*/ | |
public function performRequest($method, $uri, $params = null, $body = null) | |
{ | |
$uri = $this->getURI($uri, $params); | |
$request = $this->buildGuzzleRequest($method, $uri, $body); |
public function assertThrowsException($exception, $code) | |
{ | |
$raisedException = null; | |
try { | |
$code(); | |
} catch (\Exception $raisedException) { | |
// No more code, we only want to catch the exception in $raisedException. | |
} | |
$this->assertInstanceOf($exception, $raisedException); |