geoHeil

Results 169 comments of geoHeil

Did you mean: ``` curl -u user:password -d '{"aggs":{"value_counts":{"terms":{"field":"SysGroup","size":1000}}},"query":{"exists":{"field":"SysGroup"}}}' -H "Content-Type: application/json" -X POST https://host/index/_search?size=0 ``` if yes, this fails with: ``` {"error":{"root_cause":[{"type":"json_parse_exception","reason":"Unexpected character (''' (code 39)): expected a valid...

That fails with: `RequestError(400, 'search_phase_execution_exception', 'Text fields are not optimised for operations that require per-document field data like aggregations and sorting, so these operations are disabled by default. Please use...

Well there is: ``` "FOO_TIMESTAMP": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }, ``` some timestamp column apparently mapped a) as text and b)...

this seems to work now with the keyword field. ``` es_res = es.search( index="", body={ "aggs": {"value_counts": {"terms": {"field": "SysGroup.keyword", "size": 1000}}}, "query": {"exists": {"field": "SysGroup"}}, }, ) pd.DataFrame(es_res['aggregations']['value_counts']['buckets']) ```...

What about Hot Module Replacement?

Not sure about implementation details, just saying HMR would be cool. As such `browserify-hmr` seems to be fine.

https://github.com/mockito/shipkit/issues/869 I am interested in this feature as well, as I want to use the shadow plugin to additionally upload a fat jar besides the regular publications.

A potential workaround is to manually set the locale in the sheet to i.e. US

I think grpcio is now providing the m1 wheels - however, dagster still pins to an older version for which these new builds are not yet available

Assuming I have a source which does not store history and I receive a daily CSV with its fill state/data: - if data was loaded outside dagster I want to...