plain-lizard-13513
08/09/2021, 12:11 PM{
"users": 0
}
late-teacher-86348
08/11/2021, 11:13 PM501: Code: 48, e.displayText() = DB::Exception: JOIN ON inequalities are not supported. Unexpected 'users > threshold': While processing users > threshold (version 21.3.15.2.altinity+stable (altinity build))
It seems to be a ClickHouse thing – only equi-joins supported. What does this mean for using Growth Book with ClickHouse?gentle-jewelry-98561
08/12/2021, 5:04 PMversion: "3"
services:
mongo:
image: "mongo:latest"
environment:
- MONGO_INITDB_ROOT_USERNAME=root
- MONGO_INITDB_ROOT_PASSWORD=password
growthbook:
image: "growthbook/growthbook:latest"
ports:
- "3000:3000"
- "3100:3100"
depends_on:
- mongo
environment:
- API_HOST=<http://growthbook.mydomain.team:3100>
- APP_ORIGIN=<http://growthbook.mydomain.team:3000>
- MONGODB_URI=<mongodb://root:password@mongo:27017/>
x-aws-vpc: "vpc-0ffa1c8e015fdfada"
early-tent-72446
08/20/2021, 8:26 AMno pg_hba.conf entry for host <>, SSL off
- my data platform team tells me it's because I need to enable SSL, but i don't see it mentioned anywhere in the docs..enough-ambulance-15689
08/26/2021, 3:07 AMgentle-eve-46895
09/07/2021, 3:29 AMechoing-vase-18180
09/17/2021, 12:30 AMshy-butcher-30505
09/21/2021, 1:35 PM<script type="module">
import { GrowthBook } from "<https://unpkg.com/@growthbook/growthbook/dist/bundles/esm.min.js>";
// Define the experimental context
const growthbook = new GrowthBook({
// Called when a user is put into an experiment
trackingCallback: (experiment, result) => {
ga("send", "event", "experiment", experiment.key, result.variationId, {
// Custom dimension for easier analysis
`dimension1: ${experiment.key}::${result.variationId}
,
});`
},
});
const { value } = growthbook.run({
"key": "aa",
"variations": ["Control", "Variation 1"],
"url": /https:\/\/speero.com\//i,
"hashAttribute": "anonId"
})
console.log(value); // "Control" or "Variation 1"
</script>
early-tent-72446
09/23/2021, 1:26 PMconfig.yml
? it's either one or the other, correct?many-manchester-64444
10/06/2021, 2:13 PMbusy-minister-45083
10/08/2021, 11:17 AMfull-island-88199
10/08/2021, 1:55 PMquaint-scientist-80204
10/09/2021, 1:02 PMquaint-scientist-80204
10/13/2021, 1:25 PMsparse-thailand-8230
10/18/2021, 6:37 AMsparse-thailand-8230
10/18/2021, 12:14 PMsparse-thailand-8230
10/20/2021, 6:27 AMTable name "experiment_viewed" missing dataset while no default dataset is set in the request.
breezy-crowd-53224
10/21/2021, 7:46 AMbreezy-crowd-53224
10/21/2021, 7:48 AMbreezy-crowd-53224
10/21/2021, 8:05 AMgentle-jewelry-98561
10/21/2021, 4:11 PMdocker compose logs
doesn't seem to show anything regarding the error message. Any suggestions on how to debug this?gentle-jewelry-98561
10/21/2021, 6:19 PMfull-accountant-75172
10/22/2021, 1:15 PMsparse-thailand-8230
10/25/2021, 2:10 PMstraight-businessperson-54316
10/25/2021, 3:20 PMearly-tent-72446
10/26/2021, 9:43 AMSELECT
user_id as user_id,
anonymous_id as anonymous_id,
duration as value,
received_at as timestamp
FROM
sessions
sparse-thailand-8230
10/26/2021, 12:07 PMorange-train-515
10/26/2021, 7:08 PMorange-train-515
10/26/2021, 7:39 PMorange-train-515
10/27/2021, 8:28 AM<?php
$experiment = new Growthbook\Experiment(
"special-offers-test",
["Control", "Variation 1"]
);
$result = $user->experiment($experiment);
echo $result->value; // "Control" or "Variation 1"
The code itself doesn't reflect the configuration I chose (traffic split, traffic allocation).
Is there something I should add to this default PHP code?
I use interface on growthbook.io with PHP client library installed on my end.
Thanks!