I’ve been examining the performance of my project’s DropWizard microservices. If you set the default loglevel to debug, DropWizard is very chatty – which is not good for performance. Using Gatling to locally stress-test the service (eg both Gatling and …

DropWizard performance and logging Read more »

Tagged with: , , ,

A UUID generator for the Gatling Stress Testing tool. 1 2 3 4 5 6 7 8 9 object UuidFeeder { val feeder = new Feeder[String] { override def hasNext = true   override def next: Map[String, String] = { …

Gatling UUID feeder Read more »

Tagged with: , , ,