mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-25 11:17:50 +01:00
0223d7ab86
* feat: Add Temporal to the dev and hobby stacks * disable elastic for hobby because of resources * checkpoint * update requirements * worker is up, but without the sandbox * ensure temporal does not depend on elastic * Feedbacked * pip-compile dev * mypy fixes * add a bit of colorful logging * add django temporal worker to the mix * checkpoint for dev-full docker * Working on docker-full, but checkpointing for now * add migration bits for full
39 lines
1.1 KiB
Markdown
39 lines
1.1 KiB
Markdown
Use `docker.yaml` file to override the default dynamic config value (they are specified
|
|
when creating the service config).
|
|
|
|
Each key can have zero or more values and each value can have zero or more
|
|
constraints. There are only three types of constraint:
|
|
1. `namespace`: `string`
|
|
2. `taskQueueName`: `string`
|
|
3. `taskType`: `int` (`1`:`Workflow`, `2`:`Activity`)
|
|
A value will be selected and returned if all its has exactly the same constraints
|
|
as the ones specified in query filters (including the number of constraints).
|
|
|
|
Please use the following format:
|
|
```
|
|
testGetBoolPropertyKey:
|
|
- value: false
|
|
- value: true
|
|
constraints:
|
|
namespace: "global-samples-namespace"
|
|
- value: false
|
|
constraints:
|
|
namespace: "samples-namespace"
|
|
testGetDurationPropertyKey:
|
|
- value: "1m"
|
|
constraints:
|
|
namespace: "samples-namespace"
|
|
taskQueueName: "longIdleTimeTaskqueue"
|
|
testGetFloat64PropertyKey:
|
|
- value: 12.0
|
|
constraints:
|
|
namespace: "samples-namespace"
|
|
testGetMapPropertyKey:
|
|
- value:
|
|
key1: 1
|
|
key2: "value 2"
|
|
key3:
|
|
- false
|
|
- key4: true
|
|
key5: 2.0
|
|
``` |