org.apache.nifi.controller.MonitorMemoryTest.java Source code

Java tutorial

Introduction

Here is the source code for org.apache.nifi.controller.MonitorMemoryTest.java

Source

/*
 * 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.nifi.controller;

import org.apache.commons.io.FileUtils;
import org.apache.nifi.admin.service.AuditService;
import org.apache.nifi.authorization.Authorizer;
import org.apache.nifi.controller.repository.FlowFileEventRepository;
import org.apache.nifi.provenance.MockProvenanceRepository;
import org.apache.nifi.util.CapturingLogger;
import org.apache.nifi.util.NiFiProperties;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.slf4j.Logger;

import java.io.File;
import java.lang.reflect.Field;
import java.lang.reflect.Modifier;
import java.util.HashMap;
import java.util.Map;

import static org.junit.Assert.assertTrue;
import static org.mockito.Mockito.mock;

public class MonitorMemoryTest {

    private FlowController fc;

    @Before
    public void before() throws Exception {
        System.setProperty("nifi.properties.file.path", "src/test/resources/nifi.properties");
        final Map<String, String> addProps = new HashMap<>();
        addProps.put(NiFiProperties.ADMINISTRATIVE_YIELD_DURATION, "1 sec");
        addProps.put(NiFiProperties.STATE_MANAGEMENT_CONFIG_FILE, "target/test-classes/state-management.xml");
        addProps.put(NiFiProperties.STATE_MANAGEMENT_LOCAL_PROVIDER_ID, "local-provider");
        fc = this.buildFlowControllerForTest(addProps);
    }

    @After
    public void after() throws Exception {
        fc.shutdown(true);
        FileUtils.deleteDirectory(new File("./target/test-repo"));
        FileUtils.deleteDirectory(new File("./target/content_repository"));
    }

    @Test(expected = IllegalStateException.class)
    public void validatevalidationKicksInOnWrongPoolNames() throws Exception {
        ReportingTaskNode reportingTask = fc.createReportingTask(MonitorMemory.class.getName());

        Map<String, String> props = new HashMap<>();
        props.put(MonitorMemory.MEMORY_POOL_PROPERTY.getName(), "foo");
        reportingTask.setProperties(props);
        ProcessScheduler ps = fc.getProcessScheduler();
        ps.schedule(reportingTask);
    }

    @Test
    @Ignore // temporarily ignoring it since it fails intermittently due to
    // unpredictability during full build
    // still keeping it for local testing
    public void validateWarnWhenPercentThresholdReached() throws Exception {
        this.doValidate("10%");
    }

    /*
     * We're ignoring this tests as it is practically impossible to run it
     * reliably together with automated Maven build since we can't control the
     * state of the JVM on each machine during the build. However, you can run
     * it selectively for further validation
     */
    @Test
    @Ignore
    public void validateWarnWhenSizeThresholdReached() throws Exception {
        this.doValidate("10 MB");
    }

    public void doValidate(String threshold) throws Exception {
        CapturingLogger capturingLogger = this.wrapAndReturnCapturingLogger();
        ReportingTaskNode reportingTask = fc.createReportingTask(MonitorMemory.class.getName());
        reportingTask.setSchedulingPeriod("1 sec");

        Map<String, String> props = new HashMap<>();
        props.put(MonitorMemory.MEMORY_POOL_PROPERTY.getName(), "PS Old Gen");
        props.put(MonitorMemory.REPORTING_INTERVAL.getName(), "100 millis");
        props.put(MonitorMemory.THRESHOLD_PROPERTY.getName(), threshold);
        reportingTask.setProperties(props);

        ProcessScheduler ps = fc.getProcessScheduler();
        ps.schedule(reportingTask);

        Thread.sleep(2000);
        // ensure no memory warning were issued
        assertTrue(capturingLogger.getWarnMessages().size() == 0);

        // throw something on the heap
        @SuppressWarnings("unused")
        byte[] b = new byte[Integer.MAX_VALUE / 3];
        Thread.sleep(200);
        assertTrue(capturingLogger.getWarnMessages().size() > 0);
        assertTrue(capturingLogger.getWarnMessages().get(0).getMsg()
                .startsWith("Memory Pool 'PS Old Gen' has exceeded the configured Threshold of " + threshold));

        // now try to clear the heap and see memory being reclaimed
        b = null;
        System.gc();
        Thread.sleep(1000);
        assertTrue(capturingLogger.getInfoMessages().get(0).getMsg().startsWith(
                "Memory Pool 'PS Old Gen' is no longer exceeding the configured Threshold of " + threshold));
    }

    private CapturingLogger wrapAndReturnCapturingLogger() throws Exception {
        Field loggerField = MonitorMemory.class.getDeclaredField("logger");
        Field modifiersField = Field.class.getDeclaredField("modifiers");
        modifiersField.setAccessible(true);
        modifiersField.setInt(loggerField, loggerField.getModifiers() & ~Modifier.FINAL);

        loggerField.setAccessible(true);
        CapturingLogger capturingLogger = new CapturingLogger((Logger) loggerField.get(null));
        loggerField.set(null, capturingLogger);
        return capturingLogger;
    }

    private FlowController buildFlowControllerForTest(final Map<String, String> addProps) throws Exception {
        addProps.put(NiFiProperties.PROVENANCE_REPO_IMPLEMENTATION_CLASS, MockProvenanceRepository.class.getName());
        addProps.put("nifi.remote.input.socket.port", "");
        addProps.put("nifi.remote.input.secure", "");
        final NiFiProperties nifiProperties = NiFiProperties.createBasicNiFiProperties(null, addProps);

        return FlowController.createStandaloneInstance(mock(FlowFileEventRepository.class), nifiProperties,
                mock(Authorizer.class), mock(AuditService.class), null, null, null);
    }
}