Return-Path: X-Original-To: apmail-accumulo-dev-archive@www.apache.org Delivered-To: apmail-accumulo-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1C8B518815 for ; Mon, 4 Jan 2016 20:53:33 +0000 (UTC) Received: (qmail 44340 invoked by uid 500); 4 Jan 2016 20:53:32 -0000 Delivered-To: apmail-accumulo-dev-archive@accumulo.apache.org Received: (qmail 44293 invoked by uid 500); 4 Jan 2016 20:53:32 -0000 Mailing-List: contact dev-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list dev@accumulo.apache.org Received: (qmail 44282 invoked by uid 99); 4 Jan 2016 20:53:32 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Jan 2016 20:53:32 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 0F928E048C; Mon, 4 Jan 2016 20:53:32 +0000 (UTC) From: joshelser To: dev@accumulo.apache.org Reply-To: dev@accumulo.apache.org References: In-Reply-To: Subject: [GitHub] accumulo pull request: ACCUMULO-3509: Make cleanup stateful to min... Content-Type: text/plain Message-Id: <20160104205332.0F928E048C@git1-us-west.apache.org> Date: Mon, 4 Jan 2016 20:53:32 +0000 (UTC) Github user joshelser commented on a diff in the pull request: https://github.com/apache/accumulo/pull/62#discussion_r48779729 --- Diff: test/src/test/java/org/apache/accumulo/test/functional/SessionBlockVerifyIT.java --- @@ -0,0 +1,181 @@ +/* + * 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.accumulo.test.functional; + +import static java.nio.charset.StandardCharsets.UTF_8; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; + +import java.util.ArrayList; +import java.util.Iterator; +import java.util.List; +import java.util.Map; +import java.util.Map.Entry; +import java.util.concurrent.Callable; +import java.util.concurrent.ExecutorService; +import java.util.concurrent.Executors; +import java.util.concurrent.Future; + +import org.apache.accumulo.core.client.BatchWriter; +import org.apache.accumulo.core.client.BatchWriterConfig; +import org.apache.accumulo.core.client.Connector; +import org.apache.accumulo.core.client.IteratorSetting; +import org.apache.accumulo.core.client.Scanner; +import org.apache.accumulo.core.client.admin.ActiveScan; +import org.apache.accumulo.core.client.admin.InstanceOperations; +import org.apache.accumulo.core.conf.AccumuloConfiguration; +import org.apache.accumulo.core.conf.Property; +import org.apache.accumulo.core.data.Key; +import org.apache.accumulo.core.data.Mutation; +import org.apache.accumulo.core.data.Range; +import org.apache.accumulo.core.data.Value; +import org.apache.accumulo.core.security.Authorizations; +import org.apache.accumulo.harness.AccumuloClusterIT; +import org.apache.accumulo.minicluster.impl.MiniAccumuloConfigImpl; +import org.apache.hadoop.conf.Configuration; +import org.apache.hadoop.io.Text; +import org.junit.Before; +import org.junit.Test; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +/** + * Verify that we have resolved blocking issue by ensuring that we have not lost scan sessions which we know to currently be running + */ +public class SessionBlockVerifyIT extends AccumuloClusterIT { + private static final Logger log = LoggerFactory.getLogger(SessionBlockVerifyIT.class); + + @Override + public void configureMiniCluster(MiniAccumuloConfigImpl cfg, Configuration hadoopCoreSite) { + Map siteConfig = cfg.getSiteConfig(); + cfg.setNumTservers(1); + siteConfig.put(Property.TSERV_SESSION_MAXIDLE.getKey(), "1s"); + siteConfig.put(Property.TSERV_READ_AHEAD_MAXCONCURRENT.getKey(), "11"); + cfg.setSiteConfig(siteConfig); + } + + @Override + protected int defaultTimeoutSeconds() { + return 60; + } + + private String sessionIdle = null; + + @Before + public void reduceSessionIdle() throws Exception { + + InstanceOperations ops = getConnector().instanceOperations(); + sessionIdle = ops.getSystemConfiguration().get(Property.TSERV_SESSION_MAXIDLE.getKey()); + ops.setProperty(Property.TSERV_SESSION_MAXIDLE.getKey(), "1s"); + log.info("Waiting for existing session idle time to expire"); + Thread.sleep(AccumuloConfiguration.getTimeInMillis(sessionIdle)); + log.info("Finished waiting"); + } + + ExecutorService service = Executors.newFixedThreadPool(10); + + @Test + public void run() throws Exception { + Connector c = getConnector(); + String tableName = getUniqueNames(1)[0]; + c.tableOperations().create(tableName); + + BatchWriter bw = c.createBatchWriter(tableName, new BatchWriterConfig()); + + for (int i = 0; i < 1000; i++) { + Mutation m = new Mutation(new Text(String.format("%08d", i))); + for (int j = 0; j < 3; j++) + m.put(new Text("cf1"), new Text("cq" + j), new Value((i + "_" + j).getBytes(UTF_8))); + + bw.addMutation(m); + } + + bw.close(); + + Scanner scanner = c.createScanner(tableName, new Authorizations()); + scanner.setReadaheadThreshold(20000); + scanner.setRange(new Range(String.format("%08d", 0), String.format("%08d", 1000))); + + // test by making a slow iterator and then a couple of fast ones. + // when then checking we shouldn't have any running except the slow iterator + IteratorSetting setting = new IteratorSetting(21, SlowIterator.class); + SlowIterator.setSeekSleepTime(setting, Long.MAX_VALUE); + SlowIterator.setSleepTime(setting, Long.MAX_VALUE); + scanner.addScanIterator(setting); + + final Iterator> slow = scanner.iterator(); + + final List> callables = new ArrayList>(); + for (int i = 0; i < 10; i++) { + Future callable = service.submit(new Callable() { + public Boolean call() { + while (slow.hasNext()) { + + slow.next(); + } + return slow.hasNext(); + } + }); + callables.add(callable); + } + + Thread.sleep(10000); --- End diff -- Could you use some kind of construct (maybe a CountDownLatch) to guarantee at least one of your slow scans is running? Relying on a 10second pause is very likely to cause us test stability issues. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---