Start Your thatDot Trial Today
Enhance your data strategy with our exclusive thatDot trial, offering cutting-edge event stream processing capabilities. The difference between thatDot Streaming Graph and thatDot Novelty is the difference between detecting the pattern you know, and detecting the pattern you don’t know.
Download the trial for
Streaming Graph
Download the trial for
Novelty
Streaming Graph Trial Activation
To run a trial instance of thatDot Streaming Graph, create a configuration (*.conf) file with a name of your choosing. The config file should include the email address you used to sign up for the trial version and the trial api key you received in the email we sent you. If you signed up for trials of both thatDot Novelty and thatDot Streaming Graph, make sure to use the key that was assigned for thatDot Streaming Graph and not for thatDot Novelty.
quine {
trial {
email = "myemail@email.com"
api-key = "TRIAL_API_KEY"
}
}
Run the configuration file with the following command (in this example, the file is called streaming-graph.conf
):
java -jar -Dconfig.file=streaming-graph.conf quine-streaming-graph-trial.jar
The above is equivalent to:
java -jar -Dquine.trial.email=myemail@email.com -Dquine.trial.api-key=TRIAL_API_KEY quine-streaming-graph-trial.jar
Novelty Trial Activation
To run a trial instance of Novelty, create a configuration (*.conf) file with a name of your choosing. The config file should include the email address you used to sign up for the trial version and the trial api key you received in the email we sent you. If you signed up for trials of both thatDot Novelty and thatDot Streaming Graph, make sure to use the key that was assigned for thatDot Novelty and not for thatDot Streaming Graph.
thatdot {
novelty {
trial {
email = "myemail@email.com"
api-key = "TRIAL_API_KEY"
}
}
}
Run the configuration file with the following command (in this example, the configuration file is called novelty.conf
):
java -jar -Dconfig.file=novelty.conf novelty-trial.jar
The above is equivalent to:
java -jar -Dthatdot.novelty.trial.email=myemail@email.com -Dthatdot.novelty.trial.api-key=TRIAL_API_KEY novelty-trial.jar