Chip Kent
Chip Kent
I get a gRPC Error (14, XhrConnection connection-error) when I use Dart gRPC in the browser. Dart gRPC on Android performs properly, without an error. grpc: git: url: https://github.com/grpc/grpc-dart.git #...
feat: Only initialize BusinessCalendar caches when data is accessed and improve caching performance
Makes BusinessCalendar caches populate only when accessed to avoid slow worker initialization. Additionally, caching in various operations has been improved to yield better performance. Resolves #5377 Benchmark: ```groovy n =...
Currently `table_diff` is extremely rigid in how diffs are computed. There are strict predetermined tolerances, the tolerances apply to all columns, etc. To make `table_diff` more useful: * The way...
`LocalDate` and `LocalTime` columns can not be sorted via the UI. Use this code to create a table. Neither column can be sorted in the table. ```python from deephaven import...
The table resulting from a `merge` should contain an index when constituent tables have an index. For example, below `t1` and `t2` have an index with the same key, but...
Newly supported methods and constants: - [ ] addExact - [ ] atan2 - [ ] cbrt - [ ] copySign - [ ] cosh - [ ] decrementExact -...
Add support for computing pivot tables. Example: ```python from deephaven import empty_table from deephaven.experimental.pivot import pivot y = empty_table(1000).select(["Row=ii%10", "Col=(int)((ii/10) % 30)", "Sentinel=random()"]).where( "Sentinel > 0.3") ys = y.sum_by(["Row", "Col"])...
I had a community user report that deephaven-ib example scripts were no longer working. After digging in, Deephaven seems to have introduced a regression in one of the recent releases....
Add period multiplication times longs.