ebernhardson
ebernhardson
When getting an error from the api we only get a string, such as: `Error returned by API: The page you specified doesn't exist.` I would find it more convenient...
Elasticsearch contains a class, ExtensiblePlugin, that allows a plugin to define an spi and then load classes from other plugins. There is example code for doing this in the painless...
Currently attempting to change the size of the model cache from the cluster settings api results in an error. I don't see any reason this needs to be static. The...
Right now it's hard to tell if the ltr model cache is churning, or simply mostly full. A counter for the number of loads and evictions included into `/_ltr/_cachestats` might...
The derived feature functionality allows to derive new features from combinations of other features. This can be useful for some specific circumstances, but we haven't documented it. Should probably be...
I understand this is pretty abitrary, but i find the difference between these two methods on Response objects to be rather error prone. hasError: The function documentation says `True if...
Within HQL the following is a valid create table statement: ``` CREATE TABLE a.b ( `c` array ) ``` But parsing this with DDLParser emits: ``` simple_ddl_parser.ddl_parser.DDLParserError: Unknown statement at...
Fastcgi
As discussed in issue #76 this is a refactor of the the current fork/in-process strategy into independent objects along with the addition of a fastcgi strategy to utilize php-fpm. A...
After a discussion with a co-worker i decided to write up a quick hack which executes jobs over php5-fpm instead of forking. This provides all the same protections as forking...