-
Notifications
You must be signed in to change notification settings - Fork 2
Update stress test to work with 1.2.0 #51
base: master
Are you sure you want to change the base?
Conversation
SETUP.md
Outdated
@@ -0,0 +1,36 @@ | |||
``` | |||
mvn clean package dependency:copy-dependencies -DincludeArtifactIds=fluo-recipes-core |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this file still needed? It looks like it was abandoned
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh yeah, it was created and abandoned while I was working on the branch.
System.exit(-1); | ||
} | ||
|
||
FluoConfiguration config = new FluoConfiguration(new File(args[0])); | ||
|
||
try(FluoAdmin admin = FluoFactory.newAdmin(config)) { | ||
// Get the application config stored in zookeeper which has Accumulo connection properties | ||
config = new FluoConfiguration(config.orElse(admin.getApplicationConfig())); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what is this doing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This class needs the info to connect to accumulo. That info is not in the connections props file, so it gets it from zookeeper.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok after looking at the code again this makes sense.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
First pass. I want to try an run this myself and will review it again.
No description provided.