You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@accumulo.apache.org by GitBox <gi...@apache.org> on 2019/09/12 22:04:54 UTC

[GitHub] [accumulo-testing] milleruntime opened a new issue #111: AssertionError thrown where never should happen

milleruntime opened a new issue #111: AssertionError thrown where never should happen
URL: https://github.com/apache/accumulo-testing/issues/111
 
 
   I saw this while running a rwalk on a 5 node cluster.
   ```
   2019-09-12 21:26:51,842 [testing.randomwalk.Module] ERROR: Caught error executing BulkImport
   java.util.concurrent.ExecutionException: java.lang.AssertionError: org.apache.accumulo.core.client.TableNotFoundException: Table (Id=a0) does not exist (Table (Id=a0) does not exist)
   	at java.util.concurrent.FutureTask.report(FutureTask.java:122)
   	at java.util.concurrent.FutureTask.get(FutureTask.java:206)
   	at org.apache.accumulo.testing.randomwalk.Module.visit(Module.java:318)
   	at org.apache.accumulo.testing.randomwalk.Framework.run(Framework.java:48)
   	at org.apache.accumulo.testing.randomwalk.Framework.main(Framework.java:92)
   Caused by: java.lang.AssertionError: org.apache.accumulo.core.client.TableNotFoundException: Table (Id=a0) does not exist (Table (Id=a0) does not exist)
   	at org.apache.accumulo.core.clientImpl.TableOperationsImpl.doBulkFateOperation(TableOperationsImpl.java:334)
   	at org.apache.accumulo.core.clientImpl.bulk.BulkImport.load(BulkImport.java:142)
   	at org.apache.accumulo.testing.randomwalk.concurrent.BulkImport.visit(BulkImport.java:130)
   	at org.apache.accumulo.testing.randomwalk.Module$1.call(Module.java:303)
   	at org.apache.accumulo.testing.randomwalk.Module$1.call(Module.java:298)
   	at java.util.concurrent.FutureTask.run(FutureTask.java:266)
   	at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
   	at java.util.concurrent.FutureTask.run(FutureTask.java:266)
   	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
   	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
   	at org.apache.accumulo.fate.util.LoggingRunnable.run(LoggingRunnable.java:35)
   	at java.lang.Thread.run(Thread.java:748)
   Caused by: org.apache.accumulo.core.client.TableNotFoundException: Table (Id=a0) does not exist (Table (Id=a0) does not exist)
   	at org.apache.accumulo.core.clientImpl.TableOperationsImpl.doFateOperation(TableOperationsImpl.java:376)
   	at org.apache.accumulo.core.clientImpl.TableOperationsImpl.doFateOperation(TableOperationsImpl.java:342)
   	at org.apache.accumulo.core.clientImpl.TableOperationsImpl.doBulkFateOperation(TableOperationsImpl.java:329)
   	... 11 more
   Caused by: ThriftTableOperationException(tableId:a0, tableName:null, op:BULK_IMPORT, type:NOTFOUND, description:Table (Id=a0) does not exist)
   	at org.apache.accumulo.core.master.thrift.FateService$executeFateOperation_result$executeFateOperation_resultStandardScheme.read(FateService.java:3474)
   	at org.apache.accumulo.core.master.thrift.FateService$executeFateOperation_result$executeFateOperation_resultStandardScheme.read(FateService.java:3451)
   	at org.apache.accumulo.core.master.thrift.FateService$executeFateOperation_result.read(FateService.java:3385)
   	at org.apache.thrift.TServiceClient.receiveBase(TServiceClient.java:88)
   	at org.apache.accumulo.core.master.thrift.FateService$Client.recv_executeFateOperation(FateService.java:124)
   	at org.apache.accumulo.core.master.thrift.FateService$Client.executeFateOperation(FateService.java:105)
   	at org.apache.accumulo.core.clientImpl.TableOperationsImpl.executeFateOperation(TableOperationsImpl.java:270)
   	at org.apache.accumulo.core.clientImpl.TableOperationsImpl.doFateOperation(TableOperationsImpl.java:353)
   	... 13 more
   ```
   
   Then looking at where the error is thrown, it seems like this could be bad:
   ```
   public String doBulkFateOperation(List<ByteBuffer> args, String tableName)
         throws AccumuloSecurityException, AccumuloException {
       try {
         return doFateOperation(FateOperation.TABLE_BULK_IMPORT2, args, Collections.emptyMap(),
             tableName);
       } catch (TableExistsException | TableNotFoundException | NamespaceNotFoundException
           | NamespaceExistsException e) {
         // should not happen
         throw new AssertionError(e);
       }
     }
   ```

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services