Mike Bremford

Results 83 comments of Mike Bremford

Back again - this time I did not catch it in time. More diagnostics: ``` # grep "arc_\|memory\|overflow\|evict\|dnode" /proc/spl/kstat/zfs/arcstats evict_skip 4 42489272488 evict_not_enough 4 12413470777 evict_l2_cached 4 0 evict_l2_eligible 4...

Sorry - `zfs_arc_meta_limit_percent` was already at 100, I can see that from my first report on Oct 21st. I originally had the following in `/etc/modprobe.d/zfs.conf` ``` options zfs zfs_arc_min=17179869184 options...

Looks like reducing `zfs_arc_min` to a value lower than `zfs_arc_max` made no difference: ``` # grep "arc_\|memory\|overflow\|evict\|dnode" /proc/spl/kstat/zfs/arcstats evict_skip 4 81026320001 evict_not_enough 4 20937787774 evict_l2_cached 4 0 evict_l2_eligible 4 8629143595008...

Commenting to note that a) I am still seeing this, but as I now have a cronjob that drops caches every hour I'm dealing with it, and b) I missed...

I really like the idea of integrating this with link-params, but I'm not totally sure I've followed the mechanism that's proposed here. link-params allow a _source_ document to set a...

While I completely understand the argument for HttpSession, I don't see it for ServletContext. ServletContext and ServerContainer represent essentially the same thing when run in an engine that supports both....

I'll start the ball rolling then: ``` "gnss": { "satellites": { "constellation": { "gps": { "1": { "elevation": 85, "azimuth": 24, "distance": /*not sure this is useful */, "snr": -76,...

You're correct - either "constellation" or "satellites" is redundant and could be removed. "satellites" is more immediately intuitive, all else being equal I'd suggest we keep that one. By "take...

An update based on comments above and also some data derived from @timmathews original at http://signalk.org/api/gnss-field-guide.html which I've just seen. ``` "gnss": { "satellites": { "gps": { "1": { "elevation":...

The service announcement in this example, and by default if not specified, uses "os.hostname()" as the host for the service. This must have ".local" at the end to work, but...