gemmellr commented on a change in pull request #3887:
URL: https://github.com/apache/activemq-artemis/pull/3887#discussion_r782197303



##########
File path: 
artemis-server/src/main/java/org/apache/activemq/artemis/core/remoting/impl/netty/NettyAcceptor.java
##########
@@ -443,6 +443,14 @@ public ActiveMQThreadFactory run() {
 
             logger.debug("Acceptor using native kqueue");
          } else {
+            if (useEpoll) {
+               ActiveMQServerLogger.LOGGER.nettyEpollNotAvailable(name);
+            }
+
+            if (useKQueue) {
+               ActiveMQServerLogger.LOGGER.nettyKQueueNotAvailable(name);
+            }

Review comment:
       Ditto comments for the client case.

##########
File path: 
artemis-core-client/src/main/java/org/apache/activemq/artemis/core/remoting/impl/netty/NettyConnector.java
##########
@@ -526,6 +526,14 @@ public synchronized void start() {
          channelClazz = KQueueSocketChannel.class;
          logger.debug("Connector " + this + " using native kqueue");
       } else {
+         if (useEpoll) {
+            ActiveMQClientLogger.LOGGER.nettyEpollNotAvailable(this);
+         }
+
+         if (useKQueue) {
+            ActiveMQClientLogger.LOGGER.nettyKQueueNotAvailable(this);
+         }
+

Review comment:
       I dont think this is a good idea, certainly not at the current WARN 
level at least. These are entirely expected situations to happen based on 
default settings for quite a lot of people (e.g anyone running on Windows will 
see both of these on every connection even though that makes no sense, and I 
expect there are native-image uses that could hit it also even on Linux). I 
would (and indeed do elsewhere) instead reduce these to e.g DEBUG personally.
   
   Actually it seems there are already debug log statements as to what is being 
picked, the test could perhaps better look at those specifically, instead of 
adding new ones and expecting them not to be logged (which would also avoid the 
problems noted for the test).

##########
File path: 
tests/smoke-tests/src/test/java/org/apache/activemq/artemis/tests/smoke/nettynative/NettyNativeTest.java
##########
@@ -0,0 +1,78 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.activemq.artemis.tests.smoke.nettynative;
+
+import org.apache.activemq.artemis.jms.client.ActiveMQConnectionFactory;
+import org.apache.activemq.artemis.tests.smoke.common.SmokeTestBase;
+import org.apache.activemq.artemis.util.ServerUtil;
+import org.junit.Assert;
+import org.junit.Before;
+import org.junit.Test;
+
+import javax.jms.Connection;
+import javax.jms.ConnectionFactory;
+import javax.jms.MessageConsumer;
+import javax.jms.MessageProducer;
+import javax.jms.Queue;
+import javax.jms.Session;
+import javax.jms.TextMessage;
+import java.io.File;
+
+public class NettyNativeTest extends SmokeTestBase {
+
+   public static final String SERVER_NAME = "nettynative";
+   protected static final String SERVER_ADMIN_USERNAME = "admin";
+   protected static final String SERVER_ADMIN_PASSWORD = "admin";
+
+   @Before
+   public void before() throws Exception {
+      cleanupData(SERVER_NAME);
+      disableCheckThread();
+      startServer(SERVER_NAME, 0, 0);
+      ServerUtil.waitForServerToStart(0, SERVER_ADMIN_USERNAME, 
SERVER_ADMIN_PASSWORD, 30000);
+   }
+
+   @Test
+   public void testNettyNativeAvailable() throws Exception {
+      ConnectionFactory factory = new 
ActiveMQConnectionFactory("tcp://localhost:61616", SERVER_ADMIN_USERNAME, 
SERVER_ADMIN_PASSWORD);
+
+      try (Connection connection = factory.createConnection()) {
+         try (Session session = connection.createSession(true, 
Session.SESSION_TRANSACTED)) {
+            Queue queue = session.createQueue("TEST");
+            MessageProducer producer = session.createProducer(queue);
+            producer.send(session.createTextMessage("TEST"));
+
+            session.commit();
+
+            MessageConsumer consumer = session.createConsumer(queue);
+            connection.start();
+
+            TextMessage txt = (TextMessage) consumer.receive(10000);
+            Assert.assertNotNull(txt);
+            Assert.assertEquals("TEST", txt.getText());
+
+            session.commit();
+         }
+      }
+
+      File artemisLog = new File("target/" + SERVER_NAME + "/log/artemis.log");
+      checkLogRecord(artemisLog, false, "AMQ224116: Netty native epoll is not 
available for the acceptor", "switching into NIO");
+      checkLogRecord(artemisLog, false, "AMQ224116: Netty native kqueue is not 
available for the acceptor", "switching into NIO");

Review comment:
       One of these has the wrong log code and so presumably would never match, 
though I guess the next bit still would.
   
   It would probably be better if the test looked for something that is 
expected to be present (e.g the existing debug log of what is being used) 
rather than checking for omission of something that typically isnt logged (or 
may be wrong as above or get changed later in the source and make the test 
entirely ineffective).




-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to