Unlock the Power of Data: 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.

Streaming Graph Trial Activation

To run a trial instance of thatDot Streaming Graph, add to your configuration file the email you used to sign up for the trial version and the trial api key you received (if you signed up for trials of both Novelty and thatDot Streaming Graph, make sure to use the key that was assigned for tDSG and not for Novelty).

quine {
  trial {
    email = "myemail@email.com"
    api-key = "TRIAL_API_KEY"
  }
}

Run the configuration file with the following command:

java -jar -Dconfig.file=my-config.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, add to your configuration file the email you used to sign up for the trial version and the trial api key you received (if you signed up for trials of both Novelty and thatDot Streaming Graph, make sure to use the key that was assigned for Novelty and not for tDSG).

thatdot {
  novelty {
    ... other things ...
	
	
    trial {
      email = "myemail@email.com"
      api-key = "TRIAL_API_KEY"
    }
  }
}

Run the configuration file with the following command:

java -jar -Dconfig.file=my-config.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