jan grant

Results 14 comments of jan grant

I don't mind using raw prometheus (or something wrapped around it) if it means we can get counters out for *useful* things.

Noting some changes/corner cases in what the user'd see (with implicit or explicit transactions) in addition to await (which I'd also lean toward issuing an implicit commit). - for any...

That followed later (immediately after the initial replay) with: ``` 2017/11/08 15:57:39 [MAILBOX] [ACTOR] Recovering actor="nonhost/supervisor-0/7a9f6777-ce90-4dc8-89c3-3846e83b0fac" reason="Error 1040: Too many connections" stacktrace="github.com/fnproject/flow/persistence.(*sqlProvider).GetEvents:110" time="2017-11-08T15:57:39Z" level=warning msg="Stopping failed graph actor due to...

Complete trace from one graph. (The actor is not eventually materialised in this case.) ``` time="2017-11-08T15:57:39Z" level=info msg="Created graph actor supervisor-0/8985ff69-d5b8-4a47-a288-127e07847ef0" graph_id=8985ff69-d5b8-4a47-a288-127e07847ef0 logger=supervisor-0 time="2017-11-08T15:57:39Z" level=error msg="Error getting snapshot value from...

Curling to get the graph details after startup for that graph will pull it in later on, as you might expect: ``` curl http://10.0.20.4:8081/graph/8985ff69-d5b8-4a47-a288-127e07847ef0 {"stages":{"0":{"type":"terminationHook","status":"pending","dependencies":["_termination"]},"1":{"type":"completedValue","status":"successful"}},"function_id":"t/test","graph_id":"8985ff69-d5b8-4a47-a288-127e07847ef0"} ``` (Note, this graph was...

Here's a graph that was created during a flow load test run. Again, the persistence layer is operating in parallel and we're bumping up against the DB connection limit (which...

Just a note - during load testing I'm seeing this (occasionally) during the graph termination stages; if Fn is maxed out then the terminator (which I'd have no issue with...

This looks good to me; certainly works. Do we need more docs around the constraints of using it with an existing VCN? - subnet ranges must not overlap with existing...

Bumped into this yesterday prepping a demo*. It wasn't a massive deal (although the absence of a writable /run caught me out) - I could work around it; I can...

If you're happy with an algorithm linear in length of path (however, this has as many DB round-trips) then for `/blogs/123/comments/456` you can look up `blogs/` (and failing that, `:/`)....