mirror of
https://github.com/apache/druid.git
synced 2025-02-25 20:48:05 +00:00
91 lines
1.9 KiB
JSON
91 lines
1.9 KiB
JSON
{
|
|
"target": {
|
|
"type": "kafka",
|
|
"endpoint": "kafka:9092",
|
|
"topic": "social_media"
|
|
},
|
|
"emitters": [
|
|
{
|
|
"name": "example_record_1",
|
|
"dimensions": [
|
|
{
|
|
"type": "enum",
|
|
"name": "username",
|
|
"values": ["willow", "mia", "leon", "milton", "miette", "gus", "jojo", "rocket"],
|
|
"cardinality_distribution": {
|
|
"type": "uniform",
|
|
"min": 0,
|
|
"max": 7
|
|
}
|
|
},
|
|
{
|
|
"type": "string",
|
|
"name": "post_title",
|
|
"length_distribution": {"type": "uniform", "min": 1, "max": 140},
|
|
"cardinality": 0,
|
|
"chars": "abcdefghijklmnopqrstuvwxyz0123456789_ABCDEFGHIJKLMNOPQRSTUVWXYZ!';:,."
|
|
},
|
|
{
|
|
"type": "int",
|
|
"name": "views",
|
|
"distribution": {
|
|
"type": "exponential",
|
|
"mean": 10000
|
|
},
|
|
"cardinality": 0
|
|
},
|
|
{
|
|
"type": "int",
|
|
"name": "upvotes",
|
|
"distribution": {
|
|
"type": "normal",
|
|
"mean": 70,
|
|
"stddev": 20
|
|
},
|
|
"cardinality": 0
|
|
},
|
|
{
|
|
"type": "int",
|
|
"name": "comments",
|
|
"distribution": {
|
|
"type": "normal",
|
|
"mean": 10,
|
|
"stddev": 5
|
|
},
|
|
"cardinality": 0
|
|
},
|
|
{
|
|
"type": "enum",
|
|
"name": "edited",
|
|
"values": ["True","False"],
|
|
"cardinality_distribution": {
|
|
"type": "uniform",
|
|
"min": 0,
|
|
"max": 1
|
|
}
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"interarrival": {
|
|
"type": "constant",
|
|
"value": 1
|
|
},
|
|
"states": [
|
|
{
|
|
"name": "state_1",
|
|
"emitter": "example_record_1",
|
|
"delay": {
|
|
"type": "constant",
|
|
"value": 1
|
|
},
|
|
"transitions": [
|
|
{
|
|
"next": "state_1",
|
|
"probability": 1.0
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|