Slide 22
Slide 22 text
- JSON ファイルに A/B テストの設定を
記述
- JSONファイルのパスをパラメータとし
てタスクに渡す
- JSON ファイルごとにデータ処理タス
クが走り、最後にデータが統合される
A/B Testの実⾏
{
"promoted_feature_name": "xxxxx",
"query_path": "./sql/hoge.sql",
"begin_date": "2023-02-01",
"abtest": {
"enabled": true,
"uuid": "xxxxx",
"description": "hogehoge",
"sample_size_per_variant": 2000,
"variants": [
{
"group_name": "A",
"description": "Plan A",
"content_id": "xxxxx"
},
{
"group_name": "B",
"description": "Plan B",
"content_id": "xxxxx"
},
{
"group_name": "C",
"description": "Control Group",
"content_id": null
}
]
}
}