eolivelli commented on issue #9721: URL: https://github.com/apache/pulsar/issues/9721#issuecomment-788092147
With that patch this is the configuration I see ``` 16:27:21.668 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - Java Runtime Info 16:27:21.673 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - java.vendor.url.bug = http://bugreport.sun.com/bugreport/ 16:27:21.673 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - java.vendor = Oracle Corporation 16:27:21.673 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - java.ext.dirs = /usr/local/openjdk-8/jre/lib/ext:/usr/java/packages/lib/ext 16:27:21.673 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - java.version = 1.8.0_282 16:27:21.673 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - java.vm.info = mixed mode 16:27:21.673 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - java.specification.vendor = Oracle Corporation 16:27:21.673 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - java.home = /usr/local/openjdk-8/jre 16:27:21.673 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - java.vm.specification.version = 1.8 16:27:21.673 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - java.specification.version = 1.8 16:27:21.673 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - java.awt.printerjob = sun.print.PSPrinterJob 16:27:21.674 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - os.version = 4.4.0-194-generic 16:27:21.674 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - java.net.preferIPv4Stack = true 16:27:21.674 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - java.specification.name = Java Platform API Specification 16:27:21.674 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - java.class.version = 52.0 16:27:21.674 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - java.library.path = /usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib 16:27:21.674 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - os.name = Linux 16:27:21.674 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - java.vm.specification.vendor = Oracle Corporation 16:27:21.674 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - java.io.tmpdir = /tmp 16:27:21.674 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - java.endorsed.dirs = /usr/local/openjdk-8/jre/lib/endorsed 16:27:21.674 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - os.arch = amd64 16:27:21.674 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - java.awt.graphicsenv = sun.awt.X11GraphicsEnvironment 16:27:21.674 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - java.runtime.version = 1.8.0_282-b08 16:27:21.674 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - java.vm.specification.name = Java Virtual Machine Specification 16:27:21.674 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - java.vm.name = OpenJDK 64-Bit Server VM 16:27:21.674 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - java.vm.vendor = Oracle Corporation 16:27:21.674 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - java.vendor.url = http://java.oracle.com/ 16:27:21.674 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - java.vm.version = 25.282-b08 16:27:21.674 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - java.runtime.name = OpenJDK Runtime Environment 16:27:21.675 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - JVM args [-Dlog4j.configurationFile=log4j2.yaml, -Djava.net.preferIPv4Stack=true, -Dpulsar.allocator.exit_on_oom=true, -Dio.netty.recycler.maxCapacity.default=1000, -Dio.netty.recycler.linkCapacity=1024, -Dpulsar.log.appender=Console, -Dpulsar.log.dir=/pulsar/logs, -Dpulsar.log.file=pulsar-perftest.log] 16:27:21.697 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - Netty max memory (PlatformDependent.maxDirectMemory()) 1895497728 16:27:21.697 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - JVM max heap memory (Runtime.getRuntime().maxMemory()) 1895497728 16:27:21.738 [main] INFO org.apache.pulsar.testclient.PerformanceProducer - Starting Pulsar perf producer with config: { "confFile" : "/pulsar/conf/client.conf", "topics" : [ "persistent://public/default/test" ], "numTestThreads" : 10, "msgRate" : 10000, "msgSize" : 1024, "numTopics" : 1, "numProducers" : 1, "serviceURL" : "http://pulsar-proxy:8080", "authPluginClassName" : "", "authParams" : "", "maxOutstanding" : 1000, "maxPendingMessagesAcrossPartitions" : 50000, "maxConnections" : 100, "numMessages" : 0, "statsIntervalSeconds" : 20, "compression" : "NONE", "payloadFilename" : null, "payloadDelimiter" : "\\n", "batchTimeMillis" : 1.0, "batchMaxMessages" : 1000, "batchMaxBytes" : 4194304, "testTime" : 1800, "warmupTimeSeconds" : 1.0, "tlsTrustCertsFilePath" : "", "tlsAllowInsecureConnection" : false, "encKeyName" : null, "encKeyFile" : null, "delay" : 0, "exitOnFailure" : true, "messageKeyGenerationMode" : null, "ioThreads" : 1, "producerAccessMode" : "Shared" } ``` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
