Implement A/B Test for using AWS as an executor for Java

This commit is contained in:
Sebastian Serth
2022-04-15 14:55:37 +02:00
parent 9d9570b26b
commit 4887f4af02
3 changed files with 44 additions and 1 deletions

30
lib/aws_study.rb Normal file
View File

@ -0,0 +1,30 @@
# frozen_string_literal: true
class AwsStudy
def self.get_for(exercise)
java20_collection = ExerciseCollection.find_by(name: 'java2020', id: 11)
java20_bonus_collection = ExerciseCollection.find_by(name: 'java2020-bonusexercise', id: 12)
exercise.exercise_collections.any? {|ec| [java20_collection, java20_bonus_collection].include?(ec) }
end
def self.get_execution_environment(user, exercise)
# Poseidon is disabled and thus no AWS support available
return exercise.execution_environment unless Runner::Strategy::Poseidon == Runner.strategy_class
java20_exercise = get_for(exercise)
# Exercise is not part of the experiment
return exercise.execution_environment unless java20_exercise
user_group = UserGroupSeparator.get_aws_group(user.id)
case user_group
when :use_aws
# AWS functions are currently identified with their name
aws_function = ExecutionEnvironment.find_by(docker_image: 'java11Exec')
# Fallback to the default execution environment if no AWS function is found
aws_function || exercise.execution_environment
else # :no_aws
exercise.execution_environment
end
end
end

View File

@ -32,4 +32,16 @@ class UserGroupSeparator
:no_community_solution
end
end
# Different user groups for using AWS lambda functions instead of Nomad based on the user_id
# This test is independent from any other A/B Test
def self.get_aws_group(user_id)
user_group = user_id % 2 # => 0, 1
case user_group
when 0
:no_aws
else # 1
:use_aws
end
end
end