Martin Czygan

Results 17 issues of Martin Czygan

* https://github.com/elastic/go-elasticsearch/tree/master/_examples/bulk

Two issues: * Parsing error responses seems to be broken. We need to support various ES versions and their errors. * Make error messages more useful and nuanced.

A 1Gb NIC is easily saturated with bulk requests. We might be able to save time and bandwidth through compression. * https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-http.html * https://gist.github.com/bryfry/09a650eb8aac0fb76c24 * http://jijeshmohan.github.io/post/compress-http-request-in-go/

At least that's what Peter Norvig's [spell checker](https://norvig.com/spell-correct.html) suggests: ``` $ python spell.py unkown unkown -> unknown ```

> dpkg-deb: Fehler: Archiv »zek_0.1.5_amd64.deb« enthält vorzeitiges Element »control.tar.xz« vor »control.tar.gz«, Abbruch dpkg: Fehler beim Bearbeiten des Archivs zek_0.1.5_amd64.deb (--install): Unterprozess dpkg-deb --control gab den Fehlerwert 2 zurück Fehler traten...

Like min, max, mean, median.

See: https://github.com/miku/zek/commit/f160a903cd3b6aba2e6ebd0aeee383e7cbc83c13.

[Here](https://github.com/miku/zek/blob/83570a9892d9b053c08259a27448138e7a4d87ca/fixtures/r.go#L1489-L1491) we have: ``` KASS struct { Text string `xml:",chardata"` } `xml:"KASS"` ``` which could be expressed as well as: ``` KASS string `xml:"KASS"` ``` Shorter, but would break uniformity...

Currently, only a few examples are [collected](https://github.com/miku/zek/blob/83570a9892d9b053c08259a27448138e7a4d87ca/node.go#L75-L78). It would be interesting to count the number of occurrences of nodes and also occurrences of values per node. Length stats.