Skip to main content

Selection functions

lookup

Commentary

added in 0.0.5

Retrieves a previously generated event from the supplied collection, optionally drilling into it with a path. This lets you create relationships, through shared identifiers, across different data sets.

ShadowTraffic guarantees that events will only be available for lookup after they have been successfully written to the target collection.

By default, the event chosen from a lookup is entirely random. But if you like, you can bias how the event is chosen from the population using a histogram. 1


Examples

Kafka lookup

Look up data in another Kafka topic.

{
"generators": [
{
"topic": "a",
"key": {
"id": {
"_gen": "string",
"expr": "#{Name.firstName}"
}
}
},
{
"topic": "b",
"value": {
"_gen": "lookup",
"topic": "a",
"path": [
"key",
"id"
]
}
}
],
"connections": {
"kafka": {
"kind": "kafka",
"producerConfigs": {
"bootstrap.servers": "localhost:9092",
"key.serializer": "io.shadowtraffic.kafka.serdes.JsonSerializer",
"value.serializer": "io.shadowtraffic.kafka.serdes.JsonSerializer"
}
}
}
}
[
{
"topic": "a",
"key": {
"id": "Franklyn"
},
"value": null,
"headers": null
},
{
"topic": "b",
"key": null,
"value": "Franklyn",
"headers": null
},
{
"topic": "a",
"key": {
"id": "Christopher"
},
"value": null,
"headers": null
},
{
"topic": "b",
"key": null,
"value": "Christopher",
"headers": null
},
{
"topic": "a",
"key": {
"id": "Nichol"
},
"value": null,
"headers": null
}
]

Postgres lookup

Look up data in a Postgres table.

{
"generators": [
{
"table": "a",
"row": {
"id": {
"_gen": "string",
"expr": "#{Name.firstName}"
}
}
},
{
"table": "b",
"row": {
"id": {
"_gen": "lookup",
"table": "a",
"path": [
"row",
"id"
]
}
}
}
],
"connections": {
"postgres": {
"kind": "postgres",
"connectionConfigs": {
"host": "localhost",
"port": 5432,
"username": "postgres",
"password": "postgres",
"db": "mydb"
}
}
}
}
[
{
"table": "a",
"row": {
"id": "Donnie"
}
},
{
"table": "b",
"row": {
"id": "Donnie"
}
},
{
"table": "a",
"row": {
"id": "Merrilee"
}
},
{
"table": "b",
"row": {
"id": "Donnie"
}
},
{
"table": "a",
"row": {
"id": "Julio"
}
}
]

Periodic lookups

Sometimes make a new key, sometimes use a previously generated one.

{
"generators": [
{
"topic": "users",
"key": {
"_gen": "weightedOneOf",
"choices": [
{
"weight": 5,
"value": {
"_gen": "string",
"expr": "#{Name.fullName}"
}
},
{
"weight": 5,
"value": {
"_gen": "lookup",
"topic": "users",
"path": [
"key"
]
}
}
]
}
}
],
"connections": {
"kafka": {
"kind": "kafka",
"producerConfigs": {
"bootstrap.servers": "localhost:9092",
"key.serializer": "io.shadowtraffic.kafka.serdes.JsonSerializer",
"value.serializer": "io.shadowtraffic.kafka.serdes.JsonSerializer"
}
}
}
}
[
{
"topic": "users",
"key": "Merri Senger",
"value": null,
"headers": null
},
{
"topic": "users",
"key": "Glenda Nolan",
"value": null,
"headers": null
},
{
"topic": "users",
"key": "Cedric Ondricka",
"value": null,
"headers": null
},
{
"topic": "users",
"key": "Delmar Renner",
"value": null,
"headers": null
},
{
"topic": "users",
"key": "Jarrod Kautzer",
"value": null,
"headers": null
},
{
"topic": "users",
"key": "Delmar Renner",
"value": null,
"headers": null
},
{
"topic": "users",
"key": "Delmar Renner",
"value": null,
"headers": null
},
{
"topic": "users",
"key": "Ms. Jackson Breitenberg",
"value": null,
"headers": null
},
{
"topic": "users",
"key": "Ms. Jackson Breitenberg",
"value": null,
"headers": null
}
]

Explicit connections

Explicitly supply the connection name when there are multiple connections.

{
"generators": [
{
"connection": "postgres",
"table": "a",
"row": {
"email": {
"_gen": "string",
"expr": "#{Internet.emailAddress}"
}
}
},
{
"connection": "kafka",
"topic": "b",
"value": {
"_gen": "lookup",
"connection": "postgres",
"table": "a",
"path": [
"row",
"email"
]
}
}
],
"connections": {
"kafka": {
"kind": "kafka",
"producerConfigs": {
"bootstrap.servers": "localhost:9092",
"key.serializer": "io.shadowtraffic.kafka.serdes.JsonSerializer",
"value.serializer": "io.shadowtraffic.kafka.serdes.JsonSerializer"
}
},
"postgres": {
"kind": "postgres",
"connectionConfigs": {
"host": "localhost",
"port": 5432,
"username": "postgres",
"password": "postgres",
"db": "mydb"
}
}
}
}
[
{
"table": "a",
"row": {
"email": "sharmaine.hilpert@yahoo.com"
}
},
{
"topic": "b",
"key": null,
"value": "sharmaine.hilpert@yahoo.com",
"headers": null
},
{
"table": "a",
"row": {
"email": "nikki.crooks@hotmail.com"
}
},
{
"topic": "b",
"key": null,
"value": "nikki.crooks@hotmail.com",
"headers": null
},
{
"table": "a",
"row": {
"email": "rosemarie.lind@yahoo.com"
}
}
]

Controlling distribution

Use a histogram to control how the element is selected from the population. This invocation chooses 20% of the elements 80% of the time from a Kafka topic.

{
"generators": [
{
"topic": "a",
"key": {
"id": {
"_gen": "string",
"expr": "#{Name.fullName}"
}
}
},
{
"topic": "b",
"value": {
"_gen": "lookup",
"topic": "a",
"path": [
"key",
"id"
],
"histogram": {
"_gen": "histogram",
"bins": [
{
"bin": 0.2,
"frequency": 8
},
{
"bin": 0.8,
"frequency": 2
}
]
}
}
}
],
"connections": {
"kafka": {
"kind": "kafka",
"producerConfigs": {
"bootstrap.servers": "localhost:9092",
"key.serializer": "io.shadowtraffic.kafka.serdes.JsonSerializer",
"value.serializer": "io.shadowtraffic.kafka.serdes.JsonSerializer"
}
}
}
}
[
{
"topic": "a",
"key": {
"id": "Doyle Cummerata"
},
"value": null,
"headers": null
},
{
"topic": "b",
"key": null,
"value": "Doyle Cummerata",
"headers": null
},
{
"topic": "a",
"key": {
"id": "Terra Kreiger"
},
"value": null,
"headers": null
},
{
"topic": "b",
"key": null,
"value": "Doyle Cummerata",
"headers": null
},
{
"topic": "a",
"key": {
"id": "Deangelo Zieme"
},
"value": null,
"headers": null
},
{
"topic": "b",
"key": null,
"value": "Doyle Cummerata",
"headers": null
},
{
"topic": "a",
"key": {
"id": "Margert Kulas"
},
"value": null,
"headers": null
},
{
"topic": "b",
"key": null,
"value": "Deangelo Zieme",
"headers": null
},
{
"topic": "a",
"key": {
"id": "Yuette Torp"
},
"value": null,
"headers": null
},
{
"topic": "b",
"key": null,
"value": "Doyle Cummerata",
"headers": null
}
]

Multiple lookups

If you need to look up multiple fields, be careful not to use lookup more than once in the same generator. Multiple calls are not consistent. In other words, they won't return the same event in each call.

Instead, call lookup just once by using a variable and setting path to [] to grab then entire event. Then pick out the relevant fields.

[
{
"topic": "a",
"key": {
"name": {
"_gen": "string",
"expr": "#{Name.fullName}"
},
"magicNumber": {
"_gen": "uniformDistribution",
"bounds": [
0,
100
],
"decimals": 0
}
}
},
{
"topic": "b",
"vars": {
"result": {
"_gen": "lookup",
"topic": "a",
"path": []
}
},
"value": {
"lookedUpName": {
"_gen": "var",
"var": "result",
"path": [
"key",
"name"
]
},
"lookedUpNumber": {
"_gen": "var",
"var": "result",
"path": [
"key",
"magicNumber"
]
}
}
}
]
[
{
"topic": "a",
"key": {
"name": "Simona Berge",
"magicNumber": 43
},
"value": null,
"headers": null
},
{
"topic": "b",
"key": null,
"value": {
"lookedUpName": "Simona Berge",
"lookedUpNumber": 43
},
"headers": null
},
{
"topic": "a",
"key": {
"name": "Dr. Hue Kunze",
"magicNumber": 14
},
"value": null,
"headers": null
},
{
"topic": "b",
"key": null,
"value": {
"lookedUpName": "Simona Berge",
"lookedUpNumber": 43
},
"headers": null
},
{
"topic": "a",
"key": {
"name": "Vincenzo O'Hara",
"magicNumber": 59
},
"value": null,
"headers": null
},
{
"topic": "b",
"key": null,
"value": {
"lookedUpName": "Vincenzo O'Hara",
"lookedUpNumber": 59
},
"headers": null
},
{
"topic": "a",
"key": {
"name": "Daine Lubowitz",
"magicNumber": 36
},
"value": null,
"headers": null
},
{
"topic": "b",
"key": null,
"value": {
"lookedUpName": "Simona Berge",
"lookedUpNumber": 43
},
"headers": null
},
{
"topic": "a",
"key": {
"name": "Ms. Renato Purdy",
"magicNumber": 87
},
"value": null,
"headers": null
},
{
"topic": "b",
"key": null,
"value": {
"lookedUpName": "Ms. Renato Purdy",
"lookedUpNumber": 87
},
"headers": null
}
]

Specification

JSON schema

Lookups against different connection types have different schemas. Each schema is listed below in array form.

[
{
"name": "Kafka",
"schema": {
"type": "object",
"properties": {
"connection": {
"type": "string"
},
"topic": {
"type": "string"
},
"path": {
"type": "array",
"items": {
"oneOf": [
{
"type": "integer",
"minimum": 0
},
{
"type": "string"
}
]
}
}
},
"required": [
"topic",
"path"
]
}
},
{
"name": "Postgres",
"schema": {
"type": "object",
"properties": {
"connection": {
"type": "string"
},
"table": {
"type": "string"
},
"path": {
"type": "array",
"items": {
"oneOf": [
{
"type": "integer",
"minimum": 0
},
{
"type": "string"
}
]
}
}
},
"required": [
"table",
"path"
]
}
},
{
"name": "Proton",
"schema": {
"type": "object",
"properties": {
"connection": {
"type": "string"
},
"stream": {
"type": "string"
},
"path": {
"type": "array",
"items": {
"oneOf": [
{
"type": "integer",
"minimum": 0
},
{
"type": "string"
}
]
}
}
},
"required": [
"stream",
"path"
]
}
},
{
"name": "Timeplus",
"schema": {
"type": "object",
"properties": {
"connection": {
"type": "string"
},
"stream": {
"type": "string"
},
"path": {
"type": "array",
"items": {
"oneOf": [
{
"type": "integer",
"minimum": 0
},
{
"type": "string"
}
]
}
}
},
"required": [
"stream",
"path"
]
}
},
{
"name": "S3",
"schema": {
"type": "object",
"properties": {
"connection": {
"type": "string"
},
"bucket": {
"type": "string"
},
"path": {
"type": "array",
"items": {
"oneOf": [
{
"type": "integer",
"minimum": 0
},
{
"type": "string"
}
]
}
}
},
"required": [
"bucket",
"path"
]
}
},
{
"name": "azureBlobStorage",
"schema": {
"type": "object",
"properties": {
"connection": {
"type": "string"
},
"container": {
"type": "string"
},
"path": {
"type": "array",
"items": {
"oneOf": [
{
"type": "integer",
"minimum": 0
},
{
"type": "string"
}
]
}
}
},
"required": [
"container",
"path"
]
}
},
{
"name": "fileSystem",
"schema": {
"type": "object",
"properties": {
"connection": {
"type": "string"
},
"fileName": {
"type": "string"
},
"path": {
"type": "array",
"items": {
"oneOf": [
{
"type": "integer",
"minimum": 0
},
{
"type": "string"
}
]
}
}
},
"required": [
"fileName",
"path"
]
}
},
{
"name": "EventStore",
"schema": {
"type": "object",
"properties": {
"connection": {
"type": "string"
},
"stream": {
"type": "string"
},
"path": {
"type": "array",
"items": {
"oneOf": [
{
"type": "integer",
"minimum": 0
},
{
"type": "string"
}
]
}
}
},
"required": [
"stream",
"path"
]
}
}
]