Questions tagged [intuit-wasabi]

Questions related to the open-sourced Wasabi A/B Testing Platform project. Submit any questions related to usage, functionality, and software development of Wasabi.

The open-sourced Wasabi A/B Testing Platform project: https://github.com/intuit/wasabi

9 questions
2
votes
1 answer

Wasabi automatically restart docker container

I've installed Wasabi as instructed here: https://github.com/intuit/wasabi My Wasabi is running on Google Cloud, Ubuntu 16.04. The problem is that after some time, Cassandra is crashing and not restarting automatically. When I go to /api/v1/ping, I…
Silver Ringvee
  • 5,037
  • 5
  • 28
  • 46
1
vote
2 answers

Wasabi how to create new user

I can't seem to find a way to create a new user in Wasabi. Tried in the UI: Users -> Add User -> enter email -> Verify -> shows X Applications -> Add User -> enter email -> Verify -> shows X I also went through the documentation here:…
Silver Ringvee
  • 5,037
  • 5
  • 28
  • 46
0
votes
1 answer

How can I iteratively send a post request, in a loop, to a remote server with PHP?

I am trying to send data to a server a number of times, depending on the size of an array. The loop correctly sends data one time but does not thereafter. My code is: $id = "uuid" //dynamic $username = "emailadd@example.com"; $password…
AviG
  • 362
  • 2
  • 14
0
votes
2 answers

Wasabi and Planout AB Testing

I would like to know wasabi (https://github.com/intuit/wasabi) and planout (https://facebook.github.io/planout/docs/why-planout.html ) ab testing open source components are javascript based or reactjs based. I have not found anywhere about this.…
Stella
  • 1,728
  • 5
  • 41
  • 95
0
votes
1 answer

Wasabi API over HTTPS instead of HTTP

I am trying to serve Wasabi API over HTTPS. Currently, it is HTTP only. I have a very basic setup ( as described here https://github.com/intuit/wasabi ) running on Ubuntu 16.04 on Google Cloud. It is accessible via http://example.com:8080 and that…
Silver Ringvee
  • 5,037
  • 5
  • 28
  • 46
0
votes
1 answer

Wasabi fails on build - Maven plugin

See the solution below Using Ubuntu 16.04 on Google Cloud Everything is done as noted here https://github.com/intuit/wasabi. After successfully bootstraping the wasabai by running: $ ./bin/wasabi.sh bootstrap and getting Everything looks all…
Silver Ringvee
  • 5,037
  • 5
  • 28
  • 46
0
votes
1 answer

Are there any built-in keys I can use in my segmentation rules in Intuit's Wasabi?

I am trying to use user segmentation rules in Wasabi. Are there any built-in keys that I can use?
soham
  • 1
0
votes
1 answer

How do I reassign users in an experiment bucket that has been closed in Intuit’s Wasabi?

Initially I had two buckets, “control group” and “treatment”. After running the experiment for a while (users got assigned to both buckets), I closed the “control group” bucket, and made the “treatment” bucket user allocation to 100%. However, I…
cpl593x
  • 21
  • 1
  • 3
-1
votes
1 answer

How can I get a cryptographically secure version of this hashing?

I'm trying to write a new method for the code in Wasabi A/B's LoginToken.java class. The class defines an class of type LoginToken and implements a hashCode() method. As of now, the method reads: @Override public int hashCode() { return…