From notifications-return-40102-apmail-accumulo-notifications-archive=accumulo.apache.org@accumulo.apache.org Thu Oct 19 13:45:03 2017 Return-Path: X-Original-To: apmail-accumulo-notifications-archive@minotaur.apache.org Delivered-To: apmail-accumulo-notifications-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A01D210E6C for ; Thu, 19 Oct 2017 13:45:03 +0000 (UTC) Received: (qmail 92027 invoked by uid 500); 19 Oct 2017 13:45:03 -0000 Delivered-To: apmail-accumulo-notifications-archive@accumulo.apache.org Received: (qmail 91987 invoked by uid 500); 19 Oct 2017 13:45:03 -0000 Mailing-List: contact notifications-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: jira@apache.org Delivered-To: mailing list notifications@accumulo.apache.org Received: (qmail 91976 invoked by uid 99); 19 Oct 2017 13:45:03 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Oct 2017 13:45:03 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id 915A1180352 for ; Thu, 19 Oct 2017 13:45:02 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -100.002 X-Spam-Level: X-Spam-Status: No, score=-100.002 tagged_above=-999 required=6.31 tests=[RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id HOdVkCZh76SB for ; Thu, 19 Oct 2017 13:45:01 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id 04A405FC8D for ; Thu, 19 Oct 2017 13:45:01 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 4AAD9E0635 for ; Thu, 19 Oct 2017 13:45:00 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 078BF21EE2 for ; Thu, 19 Oct 2017 13:45:00 +0000 (UTC) Date: Thu, 19 Oct 2017 13:45:00 +0000 (UTC) From: "Jorge Machado (JIRA)" To: notifications@accumulo.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (ACCUMULO-4724) MiniAccumuloCluster does not start MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Jorge Machado created ACCUMULO-4724: --------------------------------------- Summary: MiniAccumuloCluster does not start Key: ACCUMULO-4724 URL: https://issues.apache.org/jira/browse/ACCUMULO-4724 Project: Accumulo Issue Type: Bug Affects Versions: 1.8.1 Environment: Local Mac Reporter: Jorge Machado Hi Guys, I was trying the MiniAccumuloCluster but it seems not to work. It Hangs on the .start() On the master log from mini accumulo I see : {code:java} 2017-10-19 15:38:22 INFO TableLoadBalancer:98 - Loaded class org.apache.accumulo.server.master.balancer.DefaultLoadBalancer for table +r 2017-10-19 15:38:22 INFO MetricsSystemImpl:375 - Scheduled snapshot period at 10 second(s). 2017-10-19 15:38:22 INFO MetricsSystemImpl:192 - Accumulo metrics system started 2017-10-19 15:38:22 ERROR Main:193 - Thread 'org.apache.accumulo.master.Master' died. java.lang.NoSuchMethodError: org.apache.thrift.transport.TNonblockingServerSocket.getPort()I at org.apache.accumulo.server.rpc.TServerUtils.createNonBlockingServer(TServerUtils.java:202) at org.apache.accumulo.server.rpc.TServerUtils.startTServer(TServerUtils.java:524) at org.apache.accumulo.server.rpc.TServerUtils.startTServer(TServerUtils.java:485) at org.apache.accumulo.server.rpc.TServerUtils.startServer(TServerUtils.java:152) at org.apache.accumulo.master.Master.run(Master.java:1247) at org.apache.accumulo.master.Master.main(Master.java:1434) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.accumulo.start.Main$2.run(Main.java:157) at java.lang.Thread.run(Thread.java:745) {code} {code:java} File loc = new File("./target/minicluster"); FileUtils.deleteDirectory(loc); loc.mkdir(); loc.deleteOnExit(); accMiniCluster = new MiniAccumuloCluster(new MiniAccumuloConfig(loc,"root")); accMiniCluster.start(); accCon = accMiniCluster.getConnector("root","root"); accCon.tableOperations().create(tablename); {code} Ideas ?! -- This message was sent by Atlassian JIRA (v6.4.14#64029)