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 2022/02/20 15:23:52 UTC

[GitHub] [accumulo] KikiManjaro opened a new pull request #2512: Replace n * 1000 with n_000 and n * 1000 * 1000 with n_000_000

KikiManjaro opened a new pull request #2512:
URL: https://github.com/apache/accumulo/pull/2512


   Close #2510 


-- 
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: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [accumulo] EdColeman commented on a change in pull request #2512: Replace n * 1000 with n_000 and n * 1000 * 1000 with n_000_000

Posted by GitBox <gi...@apache.org>.
EdColeman commented on a change in pull request #2512:
URL: https://github.com/apache/accumulo/pull/2512#discussion_r810705279



##########
File path: core/src/test/java/org/apache/accumulo/core/client/BatchWriterConfigTest.java
##########
@@ -62,8 +62,8 @@ public void testOverridingDefaults() {
     bwConfig.setDurability(Durability.NONE);
 
     assertEquals(1123581321L, bwConfig.getMaxMemory());
-    assertEquals(22 * 60 * 60 * 1000L, bwConfig.getMaxLatency(TimeUnit.MILLISECONDS));
-    assertEquals(33 * 24 * 60 * 60 * 1000L, bwConfig.getTimeout(TimeUnit.MILLISECONDS));
+    assertEquals(22 * 60 * 60_000L, bwConfig.getMaxLatency(TimeUnit.MILLISECONDS));
+    assertEquals(33 * 24 * 60 * 60_000L, bwConfig.getTimeout(TimeUnit.MILLISECONDS));

Review comment:
       It might improve clarity to use time conversions instead of replacing a portion. 
   ```
       assertEquals(TimeUnit.HOURS.toMillis(22), bwConfig.getMaxLatency(TimeUnit.MILLISECONDS));
       assertEquals(TimeUnit.DAYS.toMillis(33), bwConfig.getTimeout(TimeUnit.MILLISECONDS));
   ```

##########
File path: server/base/src/main/java/org/apache/accumulo/server/master/balancer/HostRegexTableLoadBalancer.java
##########
@@ -176,7 +176,7 @@
     }
   }
 
-  private static final long ONE_HOUR = 60 * 60 * 1000;
+  private static final long ONE_HOUR = 60 * 60_000;

Review comment:
       Could be
   ```
     private static final long ONE_HOUR = TimeUnit.HOURS.toMillis(1);
   ```

##########
File path: test/src/main/java/org/apache/accumulo/test/functional/KerberosIT.java
##########
@@ -622,7 +622,7 @@ public void testDelegationTokenWithReducedLifetime() throws Throwable {
 
     AuthenticationTokenIdentifier identifier = ((DelegationTokenImpl) dt).getIdentifier();
     assertTrue("Expected identifier to expire in no more than 5 minutes: " + identifier,
-        identifier.getExpirationDate() - identifier.getIssueDate() <= (5 * 60 * 1000));
+        identifier.getExpirationDate() - identifier.getIssueDate() <= (5 * 60_000));

Review comment:
       Could be:
   ```
           identifier.getExpirationDate() - identifier.getIssueDate() <= TimeUnit.MINUTES.toMillis(5));
   ```

##########
File path: core/src/test/java/org/apache/accumulo/core/rpc/TTimeoutTransportTest.java
##########
@@ -75,7 +75,7 @@ public void testFailedSocketOpenIsClosed() throws IOException {
 
   @Test
   public void testFailedInputStreamClosesSocket() throws IOException {
-    long timeout = 2 * 60 * 1000; // 2 mins
+    long timeout = 2 * 60_000; // 2 mins

Review comment:
       Could be
   ```
       long timeout = TimeUnit.MINUTES.toMillis(2); 
   ```

##########
File path: server/base/src/test/java/org/apache/accumulo/server/security/delegation/ZooAuthenticationKeyWatcherTest.java
##########
@@ -66,7 +66,7 @@ public static void setupKeyGenerator() throws Exception {
   private ZooReader zk;
   private InstanceId instanceId;
   private String baseNode;
-  private long tokenLifetime = 7 * 24 * 60 * 60 * 1000; // 7days
+  private long tokenLifetime = 7 * 24 * 60 * 60_000; // 7days

Review comment:
       Could be
   ```
     private long tokenLifetime = TimeUnit.DAYS.toMillis(7); // 7days
   ```

##########
File path: server/monitor/src/main/java/org/apache/accumulo/monitor/Monitor.java
##########
@@ -134,7 +134,7 @@ public static void main(String[] args) throws Exception {
     return Collections.synchronizedList(new LinkedList<>() {
 
       private static final long serialVersionUID = 1L;
-      private final long maxDelta = 60 * 60 * 1000;
+      private final long maxDelta = 60 * 60_000;

Review comment:
       Could be
   ```
         private final long maxDelta = TimeUnit.MINUTES.toMillis(60);
   ```

##########
File path: server/base/src/main/java/org/apache/accumulo/server/manager/LiveTServerSet.java
##########
@@ -310,7 +310,7 @@ private synchronized void checkServer(final Set<TServerInstance> updates,
       Long firstSeen = locklessServers.get(zPath);
       if (firstSeen == null) {
         locklessServers.put(zPath, System.currentTimeMillis());
-      } else if (System.currentTimeMillis() - firstSeen > 10 * 60 * 1000) {
+      } else if (System.currentTimeMillis() - firstSeen > 10 * 60_000) {
         deleteServerNode(path + "/" + zPath);

Review comment:
       Could be 
   ```
         } else if (System.currentTimeMillis() - firstSeen > TimeUnit.MINUTES.toMillis(10)) {
   ```

##########
File path: server/tserver/src/main/java/org/apache/accumulo/tserver/AssignmentHandler.java
##########
@@ -217,7 +217,7 @@ public void run() {
       }
       log.warn("failed to open tablet {} reporting failure to manager", extent);
       server.enqueueManagerMessage(new TabletStatusMessage(TabletLoadState.LOAD_FAILURE, extent));
-      long reschedule = Math.min((1L << Math.min(32, retryAttempt)) * 1000, 10 * 60 * 1000L);
+      long reschedule = Math.min((1L << Math.min(32, retryAttempt)) * 1000, 10 * 60_000L);

Review comment:
       Could be
   ```
   long reschedule = Math.min((1L << Math.min(32, retryAttempt)) * 1000, TimeUnit.MINUTES.toMillis(10));
   ```

##########
File path: start/src/main/java/org/apache/accumulo/start/classloader/vfs/AccumuloReloadingVFSClassLoader.java
##########
@@ -52,7 +52,7 @@
 
   // set to 5 mins. The rationale behind this large time is to avoid a gazillion tservers all asking
   // the name node for info too frequently.
-  private static final int DEFAULT_TIMEOUT = 5 * 60 * 1000;
+  private static final int DEFAULT_TIMEOUT = 5 * 60_000;

Review comment:
       Could be
   ```
      private static final int DEFAULT_TIMEOUT = TimeUnit.MINUTES.toMillis(5);
   ```

##########
File path: core/src/main/java/org/apache/accumulo/core/spi/balancer/HostRegexTableLoadBalancer.java
##########
@@ -175,7 +175,7 @@
     }
   }
 
-  private static final long ONE_HOUR = 60 * 60 * 1000;
+  private static final long ONE_HOUR = 60 * 60_000;

Review comment:
       This could be 
   ```
     private static final long ONE_HOUR = TimeUnit.HOURS.toMillis(1);
   ```

##########
File path: core/src/test/java/org/apache/accumulo/core/rpc/TTimeoutTransportTest.java
##########
@@ -105,7 +105,7 @@ public void testFailedInputStreamClosesSocket() throws IOException {
 
   @Test
   public void testFailedOutputStreamClosesSocket() throws IOException {
-    long timeout = 2 * 60 * 1000; // 2 mins
+    long timeout = 2 * 60_000; // 2 mins

Review comment:
       Could be
   ```
       long timeout = TimeUnit.MINUTES.toMillis(2); 
   ```
   




-- 
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: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [accumulo] EdColeman commented on pull request #2512: Replace n * 1000 with n_000 and n * 1000 * 1000 with n_000_000

Posted by GitBox <gi...@apache.org>.
EdColeman commented on pull request #2512:
URL: https://github.com/apache/accumulo/pull/2512#issuecomment-1046356991


   There are two approvals - my previous suggestions could be done as a follow on if this is merged as is.


-- 
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: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [accumulo] KikiManjaro commented on pull request #2512: Replace n * 1000 with n_000 and n * 1000 * 1000 with n_000_000

Posted by GitBox <gi...@apache.org>.
KikiManjaro commented on pull request #2512:
URL: https://github.com/apache/accumulo/pull/2512#issuecomment-1046285313


   I've added all changes and pushed them,
   
   The 'package' command seems to throw an error :
   
   `
   C:\Users\kylia\.gradle\jdks\jdk-17.0.1+12\bin\java.exe -Dmaven.multiModuleProjectDirectory=C:\Users\kylia\Documents\Projects\accumulo -Dmaven.home=C:\Users\kylia\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\213.6777.52\plugins\maven\lib\maven3 -Dclassworlds.conf=C:\Users\kylia\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\213.6777.52\plugins\maven\lib\maven3\bin\m2.conf -Dmaven.ext.class.path=C:\Users\kylia\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\213.6777.52\plugins\maven\lib\maven-event-listener.jar -javaagent:C:\Users\kylia\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\213.6777.52\lib\idea_rt.jar=52583:C:\Users\kylia\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\213.6777.52\bin -Dfile.encoding=UTF-8 -classpath C:\Users\kylia\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\213.6777.52\plugins\maven\lib\maven3\boot\plexus-classworlds-2.6.0.jar;C:\Users\kylia\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\213.6777.52\plugins\maven\lib\maven3\boot\plexus-cla
 ssworlds.license org.codehaus.classworlds.Launcher -Didea.version=2021.3.2 package
   [INFO] Scanning for projects...
   [INFO] ------------------------------------------------------------------------
   [INFO] Reactor Build Order:
   [INFO] 
   [INFO] Apache Accumulo Project                                            [pom]
   [INFO] Apache Accumulo Start                                              [jar]
   [INFO] Apache Accumulo Core                                               [jar]
   [INFO] Apache Accumulo Server Base                                        [jar]
   [INFO] Apache Accumulo Compaction Coordinator                             [jar]
   [INFO] Apache Accumulo Compactor                                          [jar]
   [INFO] Apache Accumulo GC Server                                          [jar]
   [INFO] Apache Accumulo Manager Server                                     [jar]
   [INFO] Apache Accumulo Monitor Server                                     [jar]
   [INFO] Apache Accumulo Tablet Server                                      [jar]
   [INFO] Apache Accumulo MiniCluster                                        [jar]
   [INFO] Apache Accumulo Native Libraries                                   [pom]
   [INFO] Apache Accumulo Shell                                              [jar]
   [INFO] Apache Accumulo Iterator Test Harness                              [jar]
   [INFO] Apache Accumulo Testing                                            [jar]
   [INFO] Apache Accumulo Hadoop MapReduce                                   [jar]
   [INFO] Apache Accumulo                                                    [pom]
   [INFO] Apache Accumulo Master Server (Deprecated)                         [pom]
   [INFO] 
   [INFO] ----------------< org.apache.accumulo:accumulo-project >----------------
   [INFO] Building Apache Accumulo Project 2.1.0-SNAPSHOT                   [1/18]
   [INFO] --------------------------------[ pom ]---------------------------------
   [INFO] 
   [INFO] --- build-helper-maven-plugin:3.3.0:parse-version (parse-project-version) @ accumulo-project ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-maven-version) @ accumulo-project ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-java-version) @ accumulo-project ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-output-timestamp-property) @ accumulo-project ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-accumulo-rules) @ accumulo-project ---
   [INFO] 
   [INFO] --- mavanagaiata:1.0.0:commit (git-commit) @ accumulo-project ---
   [INFO] 
   [INFO] --- sortpom-maven-plugin:3.0.0:sort (sort-pom) @ accumulo-project ---
   [INFO] Sorting file C:\Users\kylia\Documents\Projects\accumulo\pom.xml
   [INFO] Pom file is already sorted, exiting
   [INFO] 
   [INFO] --- formatter-maven-plugin:2.17.1:format (format-java-source) @ accumulo-project ---
   [INFO] 
   [INFO] --- impsort-maven-plugin:1.6.2:sort (sort-imports) @ accumulo-project ---
   [INFO] Processed 0 files in 00:00.000 (Already Sorted: 0, Needed Sorting: 0)
   [INFO] 
   [INFO] --- maven-remote-resources-plugin:1.7.0:process (process-resource-bundles) @ accumulo-project ---
   [INFO] Preparing remote bundle org.apache:apache-jar-resource-bundle:1.4
   [INFO] Copying 3 resources from 1 bundle.
   [INFO] 
   [INFO] --- license-maven-plugin:4.1:format (license-headers) @ accumulo-project ---
   [INFO] Updating license headers...
   [INFO] 
   [INFO] --- modernizer-maven-plugin:2.2.0:modernizer (modernizer) @ accumulo-project ---
   [INFO] 
   [INFO] --- warbucks-maven-plugin:1.1.2:check (check-junit-categories-on-its) @ accumulo-project ---
   [INFO] Rule 0: Class Matches: 0
   [INFO] Rule 0: Class Failures: 0
   [INFO] Total class failures: 0
   [INFO] 
   [INFO] --- apache-rat-plugin:0.13:check (check-licenses) @ accumulo-project ---
   [INFO] Enabled default license matchers.
   [INFO] Will parse SCM ignores for exclusions...
   [INFO] Parsing exclusions from C:\Users\kylia\Documents\Projects\accumulo\.gitignore
   [INFO] Finished adding exclusions from SCM ignore files.
   [INFO] 91 implicit excludes (use -debug for more details).
   [INFO] 7 explicit excludes (use -debug for more details).
   [INFO] 14 resources included (use -debug for more details)
   [INFO] Rat check: Summary over all files. Unapproved: 0, unknown: 0, generated: 0, approved: 9 licenses.
   [INFO] 
   [INFO] --- maven-site-plugin:3.9.1:attach-descriptor (attach-descriptor) @ accumulo-project ---
   [INFO] Attaching 'src\site\site.xml' site descriptor with classifier 'site'.
   [INFO] 
   [INFO] -----------------< org.apache.accumulo:accumulo-start >-----------------
   [INFO] Building Apache Accumulo Start 2.1.0-SNAPSHOT                     [2/18]
   [INFO] --------------------------------[ jar ]---------------------------------
   [INFO] 
   [INFO] --- build-helper-maven-plugin:3.3.0:parse-version (parse-project-version) @ accumulo-start ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-maven-version) @ accumulo-start ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-java-version) @ accumulo-start ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-output-timestamp-property) @ accumulo-start ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-accumulo-rules) @ accumulo-start ---
   [INFO] 
   [INFO] --- mavanagaiata:1.0.0:commit (git-commit) @ accumulo-start ---
   [INFO] 
   [INFO] --- sortpom-maven-plugin:3.0.0:sort (sort-pom) @ accumulo-start ---
   [INFO] Sorting file C:\Users\kylia\Documents\Projects\accumulo\start\pom.xml
   [INFO] Pom file is already sorted, exiting
   [INFO] 
   [INFO] --- formatter-maven-plugin:2.17.1:format (format-java-source) @ accumulo-start ---
   [INFO] Processed 24 files in 235ms (Formatted: 0, Unchanged: 24, Failed: 0, Readonly: 0)
   [INFO] 
   [INFO] --- impsort-maven-plugin:1.6.2:sort (sort-imports) @ accumulo-start ---
   [INFO] Processed 24 files in 00:00.026 (Already Sorted: 24, Needed Sorting: 0)
   [INFO] 
   [INFO] --- maven-remote-resources-plugin:1.7.0:process (process-resource-bundles) @ accumulo-start ---
   [INFO] Preparing remote bundle org.apache:apache-jar-resource-bundle:1.4
   [INFO] Copying 3 resources from 1 bundle.
   [INFO] 
   [INFO] --- maven-resources-plugin:3.2.0:resources (default-resources) @ accumulo-start ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] Using 'UTF-8' encoding to copy filtered properties files.
   [INFO] skip non existing resourceDirectory C:\Users\kylia\Documents\Projects\accumulo\start\src\main\resources
   [INFO] Copying 3 resources
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ accumulo-start ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 17 source files to C:\Users\kylia\Documents\Projects\accumulo\start\target\classes
   [INFO] 
   [INFO] --- maven-resources-plugin:3.2.0:testResources (default-testResources) @ accumulo-start ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] Using 'UTF-8' encoding to copy filtered properties files.
   [INFO] Copying 1 resource
   [INFO] Copying 3 resources
   [INFO] 
   [INFO] --- license-maven-plugin:4.1:format (license-headers) @ accumulo-start ---
   [INFO] Updating license headers...
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ accumulo-start ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 7 source files to C:\Users\kylia\Documents\Projects\accumulo\start\target\test-classes
   [INFO] 
   [INFO] --- modernizer-maven-plugin:2.2.0:modernizer (modernizer) @ accumulo-start ---
   [INFO] 
   [INFO] --- warbucks-maven-plugin:1.1.2:check (check-junit-categories-on-its) @ accumulo-start ---
   [INFO] Rule 0: Class Matches: 0
   [INFO] Rule 0: Class Failures: 0
   [INFO] Total class failures: 0
   [INFO] 
   [INFO] --- exec-maven-plugin:3.0.0:exec (Build Test jars) @ accumulo-start ---
   [ERROR] Command execution failed.
   java.io.IOException: Cannot run program "C:\Users\kylia\Documents\Projects\accumulo\start\src\test\shell\makeTestJars.sh" (in directory "C:\Users\kylia\Documents\Projects\accumulo\start"): CreateProcess error=193, %1 n’est pas une application Win32 valide
       at java.lang.ProcessBuilder.start (ProcessBuilder.java:1143)
       at java.lang.ProcessBuilder.start (ProcessBuilder.java:1073)
       at java.lang.Runtime.exec (Runtime.java:594)
       at org.apache.commons.exec.launcher.Java13CommandLauncher.exec (Java13CommandLauncher.java:61)
       at org.apache.commons.exec.DefaultExecutor.launch (DefaultExecutor.java:279)
       at org.apache.commons.exec.DefaultExecutor.executeInternal (DefaultExecutor.java:336)
       at org.apache.commons.exec.DefaultExecutor.execute (DefaultExecutor.java:166)
       at org.codehaus.mojo.exec.ExecMojo.executeCommandLine (ExecMojo.java:982)
       at org.codehaus.mojo.exec.ExecMojo.executeCommandLine (ExecMojo.java:929)
       at org.codehaus.mojo.exec.ExecMojo.execute (ExecMojo.java:457)
       at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
       at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:210)
       at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:156)
       at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:148)
       at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
       at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
       at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
       at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
       at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
       at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
       at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
       at org.apache.maven.cli.MavenCli.execute (MavenCli.java:957)
       at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:289)
       at org.apache.maven.cli.MavenCli.main (MavenCli.java:193)
       at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
       at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:77)
       at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
       at java.lang.reflect.Method.invoke (Method.java:568)
       at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
       at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
       at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
       at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
       at org.codehaus.classworlds.Launcher.main (Launcher.java:47)
   Caused by: java.io.IOException: CreateProcess error=193, %1 n’est pas une application Win32 valide
       at java.lang.ProcessImpl.create (Native Method)
       at java.lang.ProcessImpl.<init> (ProcessImpl.java:494)
       at java.lang.ProcessImpl.start (ProcessImpl.java:159)
       at java.lang.ProcessBuilder.start (ProcessBuilder.java:1110)
       at java.lang.ProcessBuilder.start (ProcessBuilder.java:1073)
       at java.lang.Runtime.exec (Runtime.java:594)
       at org.apache.commons.exec.launcher.Java13CommandLauncher.exec (Java13CommandLauncher.java:61)
       at org.apache.commons.exec.DefaultExecutor.launch (DefaultExecutor.java:279)
       at org.apache.commons.exec.DefaultExecutor.executeInternal (DefaultExecutor.java:336)
       at org.apache.commons.exec.DefaultExecutor.execute (DefaultExecutor.java:166)
       at org.codehaus.mojo.exec.ExecMojo.executeCommandLine (ExecMojo.java:982)
       at org.codehaus.mojo.exec.ExecMojo.executeCommandLine (ExecMojo.java:929)
       at org.codehaus.mojo.exec.ExecMojo.execute (ExecMojo.java:457)
       at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
       at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:210)
       at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:156)
       at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:148)
       at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
       at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
       at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
       at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
       at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
       at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
       at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
       at org.apache.maven.cli.MavenCli.execute (MavenCli.java:957)
       at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:289)
       at org.apache.maven.cli.MavenCli.main (MavenCli.java:193)
       at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
       at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:77)
       at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
       at java.lang.reflect.Method.invoke (Method.java:568)
       at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
       at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
       at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
       at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
       at org.codehaus.classworlds.Launcher.main (Launcher.java:47)
   [INFO] ------------------------------------------------------------------------
   [INFO] Reactor Summary for Apache Accumulo Project 2.1.0-SNAPSHOT:
   [INFO] 
   [INFO] Apache Accumulo Project ............................ SUCCESS [  3.031 s]
   [INFO] Apache Accumulo Start .............................. FAILURE [  3.534 s]
   [INFO] Apache Accumulo Core ............................... SKIPPED
   [INFO] Apache Accumulo Server Base ........................ SKIPPED
   [INFO] Apache Accumulo Compaction Coordinator ............. SKIPPED
   [INFO] Apache Accumulo Compactor .......................... SKIPPED
   [INFO] Apache Accumulo GC Server .......................... SKIPPED
   [INFO] Apache Accumulo Manager Server ..................... SKIPPED
   [INFO] Apache Accumulo Monitor Server ..................... SKIPPED
   [INFO] Apache Accumulo Tablet Server ...................... SKIPPED
   [INFO] Apache Accumulo MiniCluster ........................ SKIPPED
   [INFO] Apache Accumulo Native Libraries ................... SKIPPED
   [INFO] Apache Accumulo Shell .............................. SKIPPED
   [INFO] Apache Accumulo Iterator Test Harness .............. SKIPPED
   [INFO] Apache Accumulo Testing ............................ SKIPPED
   [INFO] Apache Accumulo Hadoop MapReduce ................... SKIPPED
   [INFO] Apache Accumulo .................................... SKIPPED
   [INFO] Apache Accumulo Master Server (Deprecated) ......... SKIPPED
   [INFO] ------------------------------------------------------------------------
   [INFO] BUILD FAILURE
   [INFO] ------------------------------------------------------------------------
   [INFO] Total time:  6.775 s
   [INFO] Finished at: 2022-02-20T18:28:00+01:00
   [INFO] ------------------------------------------------------------------------
   [ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:3.0.0:exec (Build Test jars) on project accumulo-start: Command execution failed.: Cannot run program "C:\Users\kylia\Documents\Projects\accumulo\start\src\test\shell\makeTestJars.sh" (in directory "C:\Users\kylia\Documents\Projects\accumulo\start"): CreateProcess error=193, %1 n’est pas une application Win32 valide -> [Help 1]
   [ERROR] 
   [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
   [ERROR] Re-run Maven using the -X switch to enable full debug logging.
   [ERROR] 
   [ERROR] For more information about the errors and possible solutions, please read the following articles:
   [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
   [ERROR] 
   [ERROR] After correcting the problems, you can resume the build with the command
   [ERROR]   mvn <args> -rf :accumulo-start
   
   Process finished with exit code 1
   `


-- 
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: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [accumulo] ctubbsii commented on pull request #2512: Replace n * 1000 with n_000 and n * 1000 * 1000 with n_000_000

Posted by GitBox <gi...@apache.org>.
ctubbsii commented on pull request #2512:
URL: https://github.com/apache/accumulo/pull/2512#issuecomment-1046333296


   As for building on Windows, we definitely don't support that, but you can probably get it to work if you build in a terminal on Windows Subsystem for Linux (WSL).


-- 
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: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [accumulo] KikiManjaro edited a comment on pull request #2512: Replace n * 1000 with n_000 and n * 1000 * 1000 with n_000_000

Posted by GitBox <gi...@apache.org>.
KikiManjaro edited a comment on pull request #2512:
URL: https://github.com/apache/accumulo/pull/2512#issuecomment-1046285313


   I've added all changes and pushed them,
   
   The 'package' command seems to throw an error :
   
   <details>
   `
   C:\Users\kylia\.gradle\jdks\jdk-17.0.1+12\bin\java.exe -Dmaven.multiModuleProjectDirectory=C:\Users\kylia\Documents\Projects\accumulo -Dmaven.home=C:\Users\kylia\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\213.6777.52\plugins\maven\lib\maven3 -Dclassworlds.conf=C:\Users\kylia\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\213.6777.52\plugins\maven\lib\maven3\bin\m2.conf -Dmaven.ext.class.path=C:\Users\kylia\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\213.6777.52\plugins\maven\lib\maven-event-listener.jar -javaagent:C:\Users\kylia\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\213.6777.52\lib\idea_rt.jar=52583:C:\Users\kylia\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\213.6777.52\bin -Dfile.encoding=UTF-8 -classpath C:\Users\kylia\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\213.6777.52\plugins\maven\lib\maven3\boot\plexus-classworlds-2.6.0.jar;C:\Users\kylia\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\213.6777.52\plugins\maven\lib\maven3\boot\plexus-cla
 ssworlds.license org.codehaus.classworlds.Launcher -Didea.version=2021.3.2 package
   [INFO] Scanning for projects...
   [INFO] ------------------------------------------------------------------------
   [INFO] Reactor Build Order:
   [INFO] 
   [INFO] Apache Accumulo Project                                            [pom]
   [INFO] Apache Accumulo Start                                              [jar]
   [INFO] Apache Accumulo Core                                               [jar]
   [INFO] Apache Accumulo Server Base                                        [jar]
   [INFO] Apache Accumulo Compaction Coordinator                             [jar]
   [INFO] Apache Accumulo Compactor                                          [jar]
   [INFO] Apache Accumulo GC Server                                          [jar]
   [INFO] Apache Accumulo Manager Server                                     [jar]
   [INFO] Apache Accumulo Monitor Server                                     [jar]
   [INFO] Apache Accumulo Tablet Server                                      [jar]
   [INFO] Apache Accumulo MiniCluster                                        [jar]
   [INFO] Apache Accumulo Native Libraries                                   [pom]
   [INFO] Apache Accumulo Shell                                              [jar]
   [INFO] Apache Accumulo Iterator Test Harness                              [jar]
   [INFO] Apache Accumulo Testing                                            [jar]
   [INFO] Apache Accumulo Hadoop MapReduce                                   [jar]
   [INFO] Apache Accumulo                                                    [pom]
   [INFO] Apache Accumulo Master Server (Deprecated)                         [pom]
   [INFO] 
   [INFO] ----------------< org.apache.accumulo:accumulo-project >----------------
   [INFO] Building Apache Accumulo Project 2.1.0-SNAPSHOT                   [1/18]
   [INFO] --------------------------------[ pom ]---------------------------------
   [INFO] 
   [INFO] --- build-helper-maven-plugin:3.3.0:parse-version (parse-project-version) @ accumulo-project ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-maven-version) @ accumulo-project ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-java-version) @ accumulo-project ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-output-timestamp-property) @ accumulo-project ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-accumulo-rules) @ accumulo-project ---
   [INFO] 
   [INFO] --- mavanagaiata:1.0.0:commit (git-commit) @ accumulo-project ---
   [INFO] 
   [INFO] --- sortpom-maven-plugin:3.0.0:sort (sort-pom) @ accumulo-project ---
   [INFO] Sorting file C:\Users\kylia\Documents\Projects\accumulo\pom.xml
   [INFO] Pom file is already sorted, exiting
   [INFO] 
   [INFO] --- formatter-maven-plugin:2.17.1:format (format-java-source) @ accumulo-project ---
   [INFO] 
   [INFO] --- impsort-maven-plugin:1.6.2:sort (sort-imports) @ accumulo-project ---
   [INFO] Processed 0 files in 00:00.000 (Already Sorted: 0, Needed Sorting: 0)
   [INFO] 
   [INFO] --- maven-remote-resources-plugin:1.7.0:process (process-resource-bundles) @ accumulo-project ---
   [INFO] Preparing remote bundle org.apache:apache-jar-resource-bundle:1.4
   [INFO] Copying 3 resources from 1 bundle.
   [INFO] 
   [INFO] --- license-maven-plugin:4.1:format (license-headers) @ accumulo-project ---
   [INFO] Updating license headers...
   [INFO] 
   [INFO] --- modernizer-maven-plugin:2.2.0:modernizer (modernizer) @ accumulo-project ---
   [INFO] 
   [INFO] --- warbucks-maven-plugin:1.1.2:check (check-junit-categories-on-its) @ accumulo-project ---
   [INFO] Rule 0: Class Matches: 0
   [INFO] Rule 0: Class Failures: 0
   [INFO] Total class failures: 0
   [INFO] 
   [INFO] --- apache-rat-plugin:0.13:check (check-licenses) @ accumulo-project ---
   [INFO] Enabled default license matchers.
   [INFO] Will parse SCM ignores for exclusions...
   [INFO] Parsing exclusions from C:\Users\kylia\Documents\Projects\accumulo\.gitignore
   [INFO] Finished adding exclusions from SCM ignore files.
   [INFO] 91 implicit excludes (use -debug for more details).
   [INFO] 7 explicit excludes (use -debug for more details).
   [INFO] 14 resources included (use -debug for more details)
   [INFO] Rat check: Summary over all files. Unapproved: 0, unknown: 0, generated: 0, approved: 9 licenses.
   [INFO] 
   [INFO] --- maven-site-plugin:3.9.1:attach-descriptor (attach-descriptor) @ accumulo-project ---
   [INFO] Attaching 'src\site\site.xml' site descriptor with classifier 'site'.
   [INFO] 
   [INFO] -----------------< org.apache.accumulo:accumulo-start >-----------------
   [INFO] Building Apache Accumulo Start 2.1.0-SNAPSHOT                     [2/18]
   [INFO] --------------------------------[ jar ]---------------------------------
   [INFO] 
   [INFO] --- build-helper-maven-plugin:3.3.0:parse-version (parse-project-version) @ accumulo-start ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-maven-version) @ accumulo-start ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-java-version) @ accumulo-start ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-output-timestamp-property) @ accumulo-start ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-accumulo-rules) @ accumulo-start ---
   [INFO] 
   [INFO] --- mavanagaiata:1.0.0:commit (git-commit) @ accumulo-start ---
   [INFO] 
   [INFO] --- sortpom-maven-plugin:3.0.0:sort (sort-pom) @ accumulo-start ---
   [INFO] Sorting file C:\Users\kylia\Documents\Projects\accumulo\start\pom.xml
   [INFO] Pom file is already sorted, exiting
   [INFO] 
   [INFO] --- formatter-maven-plugin:2.17.1:format (format-java-source) @ accumulo-start ---
   [INFO] Processed 24 files in 235ms (Formatted: 0, Unchanged: 24, Failed: 0, Readonly: 0)
   [INFO] 
   [INFO] --- impsort-maven-plugin:1.6.2:sort (sort-imports) @ accumulo-start ---
   [INFO] Processed 24 files in 00:00.026 (Already Sorted: 24, Needed Sorting: 0)
   [INFO] 
   [INFO] --- maven-remote-resources-plugin:1.7.0:process (process-resource-bundles) @ accumulo-start ---
   [INFO] Preparing remote bundle org.apache:apache-jar-resource-bundle:1.4
   [INFO] Copying 3 resources from 1 bundle.
   [INFO] 
   [INFO] --- maven-resources-plugin:3.2.0:resources (default-resources) @ accumulo-start ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] Using 'UTF-8' encoding to copy filtered properties files.
   [INFO] skip non existing resourceDirectory C:\Users\kylia\Documents\Projects\accumulo\start\src\main\resources
   [INFO] Copying 3 resources
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ accumulo-start ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 17 source files to C:\Users\kylia\Documents\Projects\accumulo\start\target\classes
   [INFO] 
   [INFO] --- maven-resources-plugin:3.2.0:testResources (default-testResources) @ accumulo-start ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] Using 'UTF-8' encoding to copy filtered properties files.
   [INFO] Copying 1 resource
   [INFO] Copying 3 resources
   [INFO] 
   [INFO] --- license-maven-plugin:4.1:format (license-headers) @ accumulo-start ---
   [INFO] Updating license headers...
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ accumulo-start ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 7 source files to C:\Users\kylia\Documents\Projects\accumulo\start\target\test-classes
   [INFO] 
   [INFO] --- modernizer-maven-plugin:2.2.0:modernizer (modernizer) @ accumulo-start ---
   [INFO] 
   [INFO] --- warbucks-maven-plugin:1.1.2:check (check-junit-categories-on-its) @ accumulo-start ---
   [INFO] Rule 0: Class Matches: 0
   [INFO] Rule 0: Class Failures: 0
   [INFO] Total class failures: 0
   [INFO] 
   [INFO] --- exec-maven-plugin:3.0.0:exec (Build Test jars) @ accumulo-start ---
   [ERROR] Command execution failed.
   java.io.IOException: Cannot run program "C:\Users\kylia\Documents\Projects\accumulo\start\src\test\shell\makeTestJars.sh" (in directory "C:\Users\kylia\Documents\Projects\accumulo\start"): CreateProcess error=193, %1 n’est pas une application Win32 valide
       at java.lang.ProcessBuilder.start (ProcessBuilder.java:1143)
       at java.lang.ProcessBuilder.start (ProcessBuilder.java:1073)
       at java.lang.Runtime.exec (Runtime.java:594)
       at org.apache.commons.exec.launcher.Java13CommandLauncher.exec (Java13CommandLauncher.java:61)
       at org.apache.commons.exec.DefaultExecutor.launch (DefaultExecutor.java:279)
       at org.apache.commons.exec.DefaultExecutor.executeInternal (DefaultExecutor.java:336)
       at org.apache.commons.exec.DefaultExecutor.execute (DefaultExecutor.java:166)
       at org.codehaus.mojo.exec.ExecMojo.executeCommandLine (ExecMojo.java:982)
       at org.codehaus.mojo.exec.ExecMojo.executeCommandLine (ExecMojo.java:929)
       at org.codehaus.mojo.exec.ExecMojo.execute (ExecMojo.java:457)
       at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
       at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:210)
       at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:156)
       at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:148)
       at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
       at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
       at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
       at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
       at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
       at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
       at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
       at org.apache.maven.cli.MavenCli.execute (MavenCli.java:957)
       at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:289)
       at org.apache.maven.cli.MavenCli.main (MavenCli.java:193)
       at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
       at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:77)
       at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
       at java.lang.reflect.Method.invoke (Method.java:568)
       at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
       at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
       at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
       at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
       at org.codehaus.classworlds.Launcher.main (Launcher.java:47)
   Caused by: java.io.IOException: CreateProcess error=193, %1 n’est pas une application Win32 valide
       at java.lang.ProcessImpl.create (Native Method)
       at java.lang.ProcessImpl.<init> (ProcessImpl.java:494)
       at java.lang.ProcessImpl.start (ProcessImpl.java:159)
       at java.lang.ProcessBuilder.start (ProcessBuilder.java:1110)
       at java.lang.ProcessBuilder.start (ProcessBuilder.java:1073)
       at java.lang.Runtime.exec (Runtime.java:594)
       at org.apache.commons.exec.launcher.Java13CommandLauncher.exec (Java13CommandLauncher.java:61)
       at org.apache.commons.exec.DefaultExecutor.launch (DefaultExecutor.java:279)
       at org.apache.commons.exec.DefaultExecutor.executeInternal (DefaultExecutor.java:336)
       at org.apache.commons.exec.DefaultExecutor.execute (DefaultExecutor.java:166)
       at org.codehaus.mojo.exec.ExecMojo.executeCommandLine (ExecMojo.java:982)
       at org.codehaus.mojo.exec.ExecMojo.executeCommandLine (ExecMojo.java:929)
       at org.codehaus.mojo.exec.ExecMojo.execute (ExecMojo.java:457)
       at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
       at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:210)
       at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:156)
       at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:148)
       at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
       at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
       at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
       at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
       at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
       at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
       at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
       at org.apache.maven.cli.MavenCli.execute (MavenCli.java:957)
       at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:289)
       at org.apache.maven.cli.MavenCli.main (MavenCli.java:193)
       at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
       at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:77)
       at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
       at java.lang.reflect.Method.invoke (Method.java:568)
       at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
       at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
       at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
       at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
       at org.codehaus.classworlds.Launcher.main (Launcher.java:47)
   [INFO] ------------------------------------------------------------------------
   [INFO] Reactor Summary for Apache Accumulo Project 2.1.0-SNAPSHOT:
   [INFO] 
   [INFO] Apache Accumulo Project ............................ SUCCESS [  3.031 s]
   [INFO] Apache Accumulo Start .............................. FAILURE [  3.534 s]
   [INFO] Apache Accumulo Core ............................... SKIPPED
   [INFO] Apache Accumulo Server Base ........................ SKIPPED
   [INFO] Apache Accumulo Compaction Coordinator ............. SKIPPED
   [INFO] Apache Accumulo Compactor .......................... SKIPPED
   [INFO] Apache Accumulo GC Server .......................... SKIPPED
   [INFO] Apache Accumulo Manager Server ..................... SKIPPED
   [INFO] Apache Accumulo Monitor Server ..................... SKIPPED
   [INFO] Apache Accumulo Tablet Server ...................... SKIPPED
   [INFO] Apache Accumulo MiniCluster ........................ SKIPPED
   [INFO] Apache Accumulo Native Libraries ................... SKIPPED
   [INFO] Apache Accumulo Shell .............................. SKIPPED
   [INFO] Apache Accumulo Iterator Test Harness .............. SKIPPED
   [INFO] Apache Accumulo Testing ............................ SKIPPED
   [INFO] Apache Accumulo Hadoop MapReduce ................... SKIPPED
   [INFO] Apache Accumulo .................................... SKIPPED
   [INFO] Apache Accumulo Master Server (Deprecated) ......... SKIPPED
   [INFO] ------------------------------------------------------------------------
   [INFO] BUILD FAILURE
   [INFO] ------------------------------------------------------------------------
   [INFO] Total time:  6.775 s
   [INFO] Finished at: 2022-02-20T18:28:00+01:00
   [INFO] ------------------------------------------------------------------------
   [ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:3.0.0:exec (Build Test jars) on project accumulo-start: Command execution failed.: Cannot run program "C:\Users\kylia\Documents\Projects\accumulo\start\src\test\shell\makeTestJars.sh" (in directory "C:\Users\kylia\Documents\Projects\accumulo\start"): CreateProcess error=193, %1 n’est pas une application Win32 valide -> [Help 1]
   [ERROR] 
   [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
   [ERROR] Re-run Maven using the -X switch to enable full debug logging.
   [ERROR] 
   [ERROR] For more information about the errors and possible solutions, please read the following articles:
   [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
   [ERROR] 
   [ERROR] After correcting the problems, you can resume the build with the command
   [ERROR]   mvn <args> -rf :accumulo-start
   
   Process finished with exit code 1
   `
   </detiails>


-- 
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: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [accumulo] ctubbsii commented on pull request #2512: Replace n * 1000 with n_000 and n * 1000 * 1000 with n_000_000

Posted by GitBox <gi...@apache.org>.
ctubbsii commented on pull request #2512:
URL: https://github.com/apache/accumulo/pull/2512#issuecomment-1046686133


   > @KikiManjaro - there is another form suggested by @ctubbsii that may be even cleaner to read using Duration.ofHours, Minutes,...(x).toMillis()
   > ```
   > Duration.ofHours(24).toMillis()
   > ```
   
   There might be subtle differences in overflow behavior between those that probably won't matter, but might be worth paying close attention just in case. If I remember correctly, most lines are shorter with TimeUnit, even more so if you static import the type, as in `HOURS.toMillis(24)`, but Duration might be better in some cases. Duration might also use more object creation whereas TimeUnit is an enum, basically a bag of singletons.


-- 
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: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [accumulo] KikiManjaro commented on pull request #2512: Replace n * 1000 with n_000 and n * 1000 * 1000 with n_000_000

Posted by GitBox <gi...@apache.org>.
KikiManjaro commented on pull request #2512:
URL: https://github.com/apache/accumulo/pull/2512#issuecomment-1046286254


   Thanks :)


-- 
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: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [accumulo] KikiManjaro commented on pull request #2512: Replace n * 1000 with n_000 and n * 1000 * 1000 with n_000_000

Posted by GitBox <gi...@apache.org>.
KikiManjaro commented on pull request #2512:
URL: https://github.com/apache/accumulo/pull/2512#issuecomment-1046284813


   I've runned clean and package with maven... Does the fact that i'm using windows could be causing the issue ?


-- 
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: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [accumulo] Manno15 commented on pull request #2512: Replace n * 1000 with n_000 and n * 1000 * 1000 with n_000_000

Posted by GitBox <gi...@apache.org>.
Manno15 commented on pull request #2512:
URL: https://github.com/apache/accumulo/pull/2512#issuecomment-1046283862


   Doesn't seem that the formatting took place. 


-- 
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: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [accumulo] EdColeman commented on pull request #2512: Replace n * 1000 with n_000 and n * 1000 * 1000 with n_000_000

Posted by GitBox <gi...@apache.org>.
EdColeman commented on pull request #2512:
URL: https://github.com/apache/accumulo/pull/2512#issuecomment-1046678177


   @KikiManjaro - there is another form suggested by @ctubbsii that may be even cleaner to read using Duration.of[Hours, Minutes,...](x).toMillis()
   ```
   Duration.ofHours(24).toMillis()
   ```


-- 
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: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [accumulo] EdColeman edited a comment on pull request #2512: Replace n * 1000 with n_000 and n * 1000 * 1000 with n_000_000

Posted by GitBox <gi...@apache.org>.
EdColeman edited a comment on pull request #2512:
URL: https://github.com/apache/accumulo/pull/2512#issuecomment-1046678177


   @KikiManjaro - there is another form suggested by @ctubbsii that may be even cleaner to read using Duration.ofHours, Minutes,...(x).toMillis()
   ```
   Duration.ofHours(24).toMillis()
   ```


-- 
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: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [accumulo] ctubbsii commented on pull request #2512: Replace n * 1000 with n_000 and n * 1000 * 1000 with n_000_000

Posted by GitBox <gi...@apache.org>.
ctubbsii commented on pull request #2512:
URL: https://github.com/apache/accumulo/pull/2512#issuecomment-1046497895


   > There are two approvals - my previous suggestions could be done as a follow on if this is merged as is.
   
   I think the suggestions you made are good, but they are more than I intended with the initial ticket. My main goal was to have these cleaned up in the timeouts for the test annotations to smooth the transition to JUnit5, and this PR does what I wanted. I think additional changes should go in a subsequent PR, if @KikiManjaro wants to work on them, or @EdColeman can create a new issue to have somebody else follow up later. @KikiManjaro , would you be interested in doing the changes Ed suggests?


-- 
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: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [accumulo] KikiManjaro edited a comment on pull request #2512: Replace n * 1000 with n_000 and n * 1000 * 1000 with n_000_000

Posted by GitBox <gi...@apache.org>.
KikiManjaro edited a comment on pull request #2512:
URL: https://github.com/apache/accumulo/pull/2512#issuecomment-1046285313


   I've added all changes and pushed them,
   
   The 'package' command seems to throw an error :
   
   <details>
   
   `
   
   C:\Users\kylia\.gradle\jdks\jdk-17.0.1+12\bin\java.exe -Dmaven.multiModuleProjectDirectory=C:\Users\kylia\Documents\Projects\accumulo -Dmaven.home=C:\Users\kylia\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\213.6777.52\plugins\maven\lib\maven3 -Dclassworlds.conf=C:\Users\kylia\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\213.6777.52\plugins\maven\lib\maven3\bin\m2.conf -Dmaven.ext.class.path=C:\Users\kylia\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\213.6777.52\plugins\maven\lib\maven-event-listener.jar -javaagent:C:\Users\kylia\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\213.6777.52\lib\idea_rt.jar=52583:C:\Users\kylia\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\213.6777.52\bin -Dfile.encoding=UTF-8 -classpath C:\Users\kylia\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\213.6777.52\plugins\maven\lib\maven3\boot\plexus-classworlds-2.6.0.jar;C:\Users\kylia\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\213.6777.52\plugins\maven\lib\maven3\boot\plexus-cla
 ssworlds.license org.codehaus.classworlds.Launcher -Didea.version=2021.3.2 package
   [INFO] Scanning for projects...
   [INFO] ------------------------------------------------------------------------
   [INFO] Reactor Build Order:
   [INFO] 
   [INFO] Apache Accumulo Project                                            [pom]
   [INFO] Apache Accumulo Start                                              [jar]
   [INFO] Apache Accumulo Core                                               [jar]
   [INFO] Apache Accumulo Server Base                                        [jar]
   [INFO] Apache Accumulo Compaction Coordinator                             [jar]
   [INFO] Apache Accumulo Compactor                                          [jar]
   [INFO] Apache Accumulo GC Server                                          [jar]
   [INFO] Apache Accumulo Manager Server                                     [jar]
   [INFO] Apache Accumulo Monitor Server                                     [jar]
   [INFO] Apache Accumulo Tablet Server                                      [jar]
   [INFO] Apache Accumulo MiniCluster                                        [jar]
   [INFO] Apache Accumulo Native Libraries                                   [pom]
   [INFO] Apache Accumulo Shell                                              [jar]
   [INFO] Apache Accumulo Iterator Test Harness                              [jar]
   [INFO] Apache Accumulo Testing                                            [jar]
   [INFO] Apache Accumulo Hadoop MapReduce                                   [jar]
   [INFO] Apache Accumulo                                                    [pom]
   [INFO] Apache Accumulo Master Server (Deprecated)                         [pom]
   [INFO] 
   [INFO] ----------------< org.apache.accumulo:accumulo-project >----------------
   [INFO] Building Apache Accumulo Project 2.1.0-SNAPSHOT                   [1/18]
   [INFO] --------------------------------[ pom ]---------------------------------
   [INFO] 
   [INFO] --- build-helper-maven-plugin:3.3.0:parse-version (parse-project-version) @ accumulo-project ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-maven-version) @ accumulo-project ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-java-version) @ accumulo-project ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-output-timestamp-property) @ accumulo-project ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-accumulo-rules) @ accumulo-project ---
   [INFO] 
   [INFO] --- mavanagaiata:1.0.0:commit (git-commit) @ accumulo-project ---
   [INFO] 
   [INFO] --- sortpom-maven-plugin:3.0.0:sort (sort-pom) @ accumulo-project ---
   [INFO] Sorting file C:\Users\kylia\Documents\Projects\accumulo\pom.xml
   [INFO] Pom file is already sorted, exiting
   [INFO] 
   [INFO] --- formatter-maven-plugin:2.17.1:format (format-java-source) @ accumulo-project ---
   [INFO] 
   [INFO] --- impsort-maven-plugin:1.6.2:sort (sort-imports) @ accumulo-project ---
   [INFO] Processed 0 files in 00:00.000 (Already Sorted: 0, Needed Sorting: 0)
   [INFO] 
   [INFO] --- maven-remote-resources-plugin:1.7.0:process (process-resource-bundles) @ accumulo-project ---
   [INFO] Preparing remote bundle org.apache:apache-jar-resource-bundle:1.4
   [INFO] Copying 3 resources from 1 bundle.
   [INFO] 
   [INFO] --- license-maven-plugin:4.1:format (license-headers) @ accumulo-project ---
   [INFO] Updating license headers...
   [INFO] 
   [INFO] --- modernizer-maven-plugin:2.2.0:modernizer (modernizer) @ accumulo-project ---
   [INFO] 
   [INFO] --- warbucks-maven-plugin:1.1.2:check (check-junit-categories-on-its) @ accumulo-project ---
   [INFO] Rule 0: Class Matches: 0
   [INFO] Rule 0: Class Failures: 0
   [INFO] Total class failures: 0
   [INFO] 
   [INFO] --- apache-rat-plugin:0.13:check (check-licenses) @ accumulo-project ---
   [INFO] Enabled default license matchers.
   [INFO] Will parse SCM ignores for exclusions...
   [INFO] Parsing exclusions from C:\Users\kylia\Documents\Projects\accumulo\.gitignore
   [INFO] Finished adding exclusions from SCM ignore files.
   [INFO] 91 implicit excludes (use -debug for more details).
   [INFO] 7 explicit excludes (use -debug for more details).
   [INFO] 14 resources included (use -debug for more details)
   [INFO] Rat check: Summary over all files. Unapproved: 0, unknown: 0, generated: 0, approved: 9 licenses.
   [INFO] 
   [INFO] --- maven-site-plugin:3.9.1:attach-descriptor (attach-descriptor) @ accumulo-project ---
   [INFO] Attaching 'src\site\site.xml' site descriptor with classifier 'site'.
   [INFO] 
   [INFO] -----------------< org.apache.accumulo:accumulo-start >-----------------
   [INFO] Building Apache Accumulo Start 2.1.0-SNAPSHOT                     [2/18]
   [INFO] --------------------------------[ jar ]---------------------------------
   [INFO] 
   [INFO] --- build-helper-maven-plugin:3.3.0:parse-version (parse-project-version) @ accumulo-start ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-maven-version) @ accumulo-start ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-java-version) @ accumulo-start ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-output-timestamp-property) @ accumulo-start ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-accumulo-rules) @ accumulo-start ---
   [INFO] 
   [INFO] --- mavanagaiata:1.0.0:commit (git-commit) @ accumulo-start ---
   [INFO] 
   [INFO] --- sortpom-maven-plugin:3.0.0:sort (sort-pom) @ accumulo-start ---
   [INFO] Sorting file C:\Users\kylia\Documents\Projects\accumulo\start\pom.xml
   [INFO] Pom file is already sorted, exiting
   [INFO] 
   [INFO] --- formatter-maven-plugin:2.17.1:format (format-java-source) @ accumulo-start ---
   [INFO] Processed 24 files in 235ms (Formatted: 0, Unchanged: 24, Failed: 0, Readonly: 0)
   [INFO] 
   [INFO] --- impsort-maven-plugin:1.6.2:sort (sort-imports) @ accumulo-start ---
   [INFO] Processed 24 files in 00:00.026 (Already Sorted: 24, Needed Sorting: 0)
   [INFO] 
   [INFO] --- maven-remote-resources-plugin:1.7.0:process (process-resource-bundles) @ accumulo-start ---
   [INFO] Preparing remote bundle org.apache:apache-jar-resource-bundle:1.4
   [INFO] Copying 3 resources from 1 bundle.
   [INFO] 
   [INFO] --- maven-resources-plugin:3.2.0:resources (default-resources) @ accumulo-start ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] Using 'UTF-8' encoding to copy filtered properties files.
   [INFO] skip non existing resourceDirectory C:\Users\kylia\Documents\Projects\accumulo\start\src\main\resources
   [INFO] Copying 3 resources
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ accumulo-start ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 17 source files to C:\Users\kylia\Documents\Projects\accumulo\start\target\classes
   [INFO] 
   [INFO] --- maven-resources-plugin:3.2.0:testResources (default-testResources) @ accumulo-start ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] Using 'UTF-8' encoding to copy filtered properties files.
   [INFO] Copying 1 resource
   [INFO] Copying 3 resources
   [INFO] 
   [INFO] --- license-maven-plugin:4.1:format (license-headers) @ accumulo-start ---
   [INFO] Updating license headers...
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ accumulo-start ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 7 source files to C:\Users\kylia\Documents\Projects\accumulo\start\target\test-classes
   [INFO] 
   [INFO] --- modernizer-maven-plugin:2.2.0:modernizer (modernizer) @ accumulo-start ---
   [INFO] 
   [INFO] --- warbucks-maven-plugin:1.1.2:check (check-junit-categories-on-its) @ accumulo-start ---
   [INFO] Rule 0: Class Matches: 0
   [INFO] Rule 0: Class Failures: 0
   [INFO] Total class failures: 0
   [INFO] 
   [INFO] --- exec-maven-plugin:3.0.0:exec (Build Test jars) @ accumulo-start ---
   [ERROR] Command execution failed.
   java.io.IOException: Cannot run program "C:\Users\kylia\Documents\Projects\accumulo\start\src\test\shell\makeTestJars.sh" (in directory "C:\Users\kylia\Documents\Projects\accumulo\start"): CreateProcess error=193, %1 n’est pas une application Win32 valide
       at java.lang.ProcessBuilder.start (ProcessBuilder.java:1143)
       at java.lang.ProcessBuilder.start (ProcessBuilder.java:1073)
       at java.lang.Runtime.exec (Runtime.java:594)
       at org.apache.commons.exec.launcher.Java13CommandLauncher.exec (Java13CommandLauncher.java:61)
       at org.apache.commons.exec.DefaultExecutor.launch (DefaultExecutor.java:279)
       at org.apache.commons.exec.DefaultExecutor.executeInternal (DefaultExecutor.java:336)
       at org.apache.commons.exec.DefaultExecutor.execute (DefaultExecutor.java:166)
       at org.codehaus.mojo.exec.ExecMojo.executeCommandLine (ExecMojo.java:982)
       at org.codehaus.mojo.exec.ExecMojo.executeCommandLine (ExecMojo.java:929)
       at org.codehaus.mojo.exec.ExecMojo.execute (ExecMojo.java:457)
       at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
       at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:210)
       at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:156)
       at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:148)
       at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
       at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
       at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
       at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
       at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
       at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
       at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
       at org.apache.maven.cli.MavenCli.execute (MavenCli.java:957)
       at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:289)
       at org.apache.maven.cli.MavenCli.main (MavenCli.java:193)
       at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
       at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:77)
       at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
       at java.lang.reflect.Method.invoke (Method.java:568)
       at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
       at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
       at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
       at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
       at org.codehaus.classworlds.Launcher.main (Launcher.java:47)
   Caused by: java.io.IOException: CreateProcess error=193, %1 n’est pas une application Win32 valide
       at java.lang.ProcessImpl.create (Native Method)
       at java.lang.ProcessImpl.<init> (ProcessImpl.java:494)
       at java.lang.ProcessImpl.start (ProcessImpl.java:159)
       at java.lang.ProcessBuilder.start (ProcessBuilder.java:1110)
       at java.lang.ProcessBuilder.start (ProcessBuilder.java:1073)
       at java.lang.Runtime.exec (Runtime.java:594)
       at org.apache.commons.exec.launcher.Java13CommandLauncher.exec (Java13CommandLauncher.java:61)
       at org.apache.commons.exec.DefaultExecutor.launch (DefaultExecutor.java:279)
       at org.apache.commons.exec.DefaultExecutor.executeInternal (DefaultExecutor.java:336)
       at org.apache.commons.exec.DefaultExecutor.execute (DefaultExecutor.java:166)
       at org.codehaus.mojo.exec.ExecMojo.executeCommandLine (ExecMojo.java:982)
       at org.codehaus.mojo.exec.ExecMojo.executeCommandLine (ExecMojo.java:929)
       at org.codehaus.mojo.exec.ExecMojo.execute (ExecMojo.java:457)
       at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
       at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:210)
       at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:156)
       at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:148)
       at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
       at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
       at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
       at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
       at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
       at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
       at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
       at org.apache.maven.cli.MavenCli.execute (MavenCli.java:957)
       at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:289)
       at org.apache.maven.cli.MavenCli.main (MavenCli.java:193)
       at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
       at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:77)
       at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
       at java.lang.reflect.Method.invoke (Method.java:568)
       at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
       at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
       at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
       at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
       at org.codehaus.classworlds.Launcher.main (Launcher.java:47)
   [INFO] ------------------------------------------------------------------------
   [INFO] Reactor Summary for Apache Accumulo Project 2.1.0-SNAPSHOT:
   [INFO] 
   [INFO] Apache Accumulo Project ............................ SUCCESS [  3.031 s]
   [INFO] Apache Accumulo Start .............................. FAILURE [  3.534 s]
   [INFO] Apache Accumulo Core ............................... SKIPPED
   [INFO] Apache Accumulo Server Base ........................ SKIPPED
   [INFO] Apache Accumulo Compaction Coordinator ............. SKIPPED
   [INFO] Apache Accumulo Compactor .......................... SKIPPED
   [INFO] Apache Accumulo GC Server .......................... SKIPPED
   [INFO] Apache Accumulo Manager Server ..................... SKIPPED
   [INFO] Apache Accumulo Monitor Server ..................... SKIPPED
   [INFO] Apache Accumulo Tablet Server ...................... SKIPPED
   [INFO] Apache Accumulo MiniCluster ........................ SKIPPED
   [INFO] Apache Accumulo Native Libraries ................... SKIPPED
   [INFO] Apache Accumulo Shell .............................. SKIPPED
   [INFO] Apache Accumulo Iterator Test Harness .............. SKIPPED
   [INFO] Apache Accumulo Testing ............................ SKIPPED
   [INFO] Apache Accumulo Hadoop MapReduce ................... SKIPPED
   [INFO] Apache Accumulo .................................... SKIPPED
   [INFO] Apache Accumulo Master Server (Deprecated) ......... SKIPPED
   [INFO] ------------------------------------------------------------------------
   [INFO] BUILD FAILURE
   [INFO] ------------------------------------------------------------------------
   [INFO] Total time:  6.775 s
   [INFO] Finished at: 2022-02-20T18:28:00+01:00
   [INFO] ------------------------------------------------------------------------
   [ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:3.0.0:exec (Build Test jars) on project accumulo-start: Command execution failed.: Cannot run program "C:\Users\kylia\Documents\Projects\accumulo\start\src\test\shell\makeTestJars.sh" (in directory "C:\Users\kylia\Documents\Projects\accumulo\start"): CreateProcess error=193, %1 n’est pas une application Win32 valide -> [Help 1]
   [ERROR] 
   [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
   [ERROR] Re-run Maven using the -X switch to enable full debug logging.
   [ERROR] 
   [ERROR] For more information about the errors and possible solutions, please read the following articles:
   [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
   [ERROR] 
   [ERROR] After correcting the problems, you can resume the build with the command
   [ERROR]   mvn <args> -rf :accumulo-start
   
   Process finished with exit code 1
   `
   </detiails>


-- 
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: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [accumulo] Manno15 commented on pull request #2512: Replace n * 1000 with n_000 and n * 1000 * 1000 with n_000_000

Posted by GitBox <gi...@apache.org>.
Manno15 commented on pull request #2512:
URL: https://github.com/apache/accumulo/pull/2512#issuecomment-1046285065


   I am not quite sure. Are you adding the changes before pushing them up (no need for a force push)? 
   
   It seems the specific issue is in `KerberosRenewalIT` and is a very small spacing issue in a comment. 


-- 
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: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [accumulo] Manno15 commented on pull request #2512: Replace n * 1000 with n_000 and n * 1000 * 1000 with n_000_000

Posted by GitBox <gi...@apache.org>.
Manno15 commented on pull request #2512:
URL: https://github.com/apache/accumulo/pull/2512#issuecomment-1046269399


   Looks like the build is failing due to formatting issues. Can you rune `mvn clean package -DskipTests` locally and then push up the changes from that. That will run the formatter. 


-- 
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: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [accumulo] ctubbsii commented on a change in pull request #2512: Replace n * 1000 with n_000 and n * 1000 * 1000 with n_000_000

Posted by GitBox <gi...@apache.org>.
ctubbsii commented on a change in pull request #2512:
URL: https://github.com/apache/accumulo/pull/2512#discussion_r810691301



##########
File path: server/monitor/src/main/resources/org/apache/accumulo/monitor/resources/external/flot/jquery.flot.time.js
##########
@@ -248,25 +248,25 @@ API.txt for details.
         "microsecond": 0.001,
         "millisecond": 1,
         "second": 1000,
-        "minute": 60 * 1000,
-        "hour": 60 * 60 * 1000,
-        "day": 24 * 60 * 60 * 1000,
-        "month": 30 * 24 * 60 * 60 * 1000,
-        "quarter": 3 * 30 * 24 * 60 * 60 * 1000,
-        "year": 365.2425 * 24 * 60 * 60 * 1000
+        "minute": 60_000,
+        "hour": 60 * 60_000,
+        "day": 24 * 60 * 60_000,
+        "month": 30 * 24 * 60 * 60_000,
+        "quarter": 3 * 30 * 24 * 60 * 60_000,
+        "year": 365.2425 * 24 * 60 * 60_000
     };
 
     // map of app. size of time units in microseconds
     var timeUnitSizeMicroseconds = {
         "microsecond": 1,
         "millisecond": 1000,
         "second": 1000000,
-        "minute": 60 * 1000000,
-        "hour": 60 * 60 * 1000000,
-        "day": 24 * 60 * 60 * 1000000,
-        "month": 30 * 24 * 60 * 60 * 1000000,
-        "quarter": 3 * 30 * 24 * 60 * 60 * 1000000,
-        "year": 365.2425 * 24 * 60 * 60 * 1000000
+        "minute": 60_000_000,
+        "hour": 60 * 60_000_000,
+        "day": 24 * 60 * 60_000_000,
+        "month": 30 * 24 * 60 * 60_000_000,
+        "quarter": 3 * 30 * 24 * 60 * 60_000_000,
+        "year": 365.2425 * 24 * 60 * 60_000_000

Review comment:
       This file shouldn't be changed, because it's a bundled third-party file and not our own code. We don't want it to diverge from the upstream bytes we got it from.




-- 
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: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [accumulo] ctubbsii merged pull request #2512: Replace n * 1000 with n_000 and n * 1000 * 1000 with n_000_000

Posted by GitBox <gi...@apache.org>.
ctubbsii merged pull request #2512:
URL: https://github.com/apache/accumulo/pull/2512


   


-- 
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: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [accumulo] KikiManjaro edited a comment on pull request #2512: Replace n * 1000 with n_000 and n * 1000 * 1000 with n_000_000

Posted by GitBox <gi...@apache.org>.
KikiManjaro edited a comment on pull request #2512:
URL: https://github.com/apache/accumulo/pull/2512#issuecomment-1046285313


   I've added all changes and pushed them,
   
   The 'package' command seems to throw an error :
   
   <details>
   
   `]
   
   C:\Users\kylia\.gradle\jdks\jdk-17.0.1+12\bin\java.exe -Dmaven.multiModuleProjectDirectory=C:\Users\kylia\Documents\Projects\accumulo -Dmaven.home=C:\Users\kylia\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\213.6777.52\plugins\maven\lib\maven3 -Dclassworlds.conf=C:\Users\kylia\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\213.6777.52\plugins\maven\lib\maven3\bin\m2.conf -Dmaven.ext.class.path=C:\Users\kylia\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\213.6777.52\plugins\maven\lib\maven-event-listener.jar -javaagent:C:\Users\kylia\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\213.6777.52\lib\idea_rt.jar=52583:C:\Users\kylia\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\213.6777.52\bin -Dfile.encoding=UTF-8 -classpath C:\Users\kylia\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\213.6777.52\plugins\maven\lib\maven3\boot\plexus-classworlds-2.6.0.jar;C:\Users\kylia\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\213.6777.52\plugins\maven\lib\maven3\boot\plexus-cla
 ssworlds.license org.codehaus.classworlds.Launcher -Didea.version=2021.3.2 package
   [INFO] Scanning for projects...
   [INFO] ------------------------------------------------------------------------
   [INFO] Reactor Build Order:
   [INFO] 
   [INFO] Apache Accumulo Project                                            [pom]
   [INFO] Apache Accumulo Start                                              [jar]
   [INFO] Apache Accumulo Core                                               [jar]
   [INFO] Apache Accumulo Server Base                                        [jar]
   [INFO] Apache Accumulo Compaction Coordinator                             [jar]
   [INFO] Apache Accumulo Compactor                                          [jar]
   [INFO] Apache Accumulo GC Server                                          [jar]
   [INFO] Apache Accumulo Manager Server                                     [jar]
   [INFO] Apache Accumulo Monitor Server                                     [jar]
   [INFO] Apache Accumulo Tablet Server                                      [jar]
   [INFO] Apache Accumulo MiniCluster                                        [jar]
   [INFO] Apache Accumulo Native Libraries                                   [pom]
   [INFO] Apache Accumulo Shell                                              [jar]
   [INFO] Apache Accumulo Iterator Test Harness                              [jar]
   [INFO] Apache Accumulo Testing                                            [jar]
   [INFO] Apache Accumulo Hadoop MapReduce                                   [jar]
   [INFO] Apache Accumulo                                                    [pom]
   [INFO] Apache Accumulo Master Server (Deprecated)                         [pom]
   [INFO] 
   [INFO] ----------------< org.apache.accumulo:accumulo-project >----------------
   [INFO] Building Apache Accumulo Project 2.1.0-SNAPSHOT                   [1/18]
   [INFO] --------------------------------[ pom ]---------------------------------
   [INFO] 
   [INFO] --- build-helper-maven-plugin:3.3.0:parse-version (parse-project-version) @ accumulo-project ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-maven-version) @ accumulo-project ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-java-version) @ accumulo-project ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-output-timestamp-property) @ accumulo-project ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-accumulo-rules) @ accumulo-project ---
   [INFO] 
   [INFO] --- mavanagaiata:1.0.0:commit (git-commit) @ accumulo-project ---
   [INFO] 
   [INFO] --- sortpom-maven-plugin:3.0.0:sort (sort-pom) @ accumulo-project ---
   [INFO] Sorting file C:\Users\kylia\Documents\Projects\accumulo\pom.xml
   [INFO] Pom file is already sorted, exiting
   [INFO] 
   [INFO] --- formatter-maven-plugin:2.17.1:format (format-java-source) @ accumulo-project ---
   [INFO] 
   [INFO] --- impsort-maven-plugin:1.6.2:sort (sort-imports) @ accumulo-project ---
   [INFO] Processed 0 files in 00:00.000 (Already Sorted: 0, Needed Sorting: 0)
   [INFO] 
   [INFO] --- maven-remote-resources-plugin:1.7.0:process (process-resource-bundles) @ accumulo-project ---
   [INFO] Preparing remote bundle org.apache:apache-jar-resource-bundle:1.4
   [INFO] Copying 3 resources from 1 bundle.
   [INFO] 
   [INFO] --- license-maven-plugin:4.1:format (license-headers) @ accumulo-project ---
   [INFO] Updating license headers...
   [INFO] 
   [INFO] --- modernizer-maven-plugin:2.2.0:modernizer (modernizer) @ accumulo-project ---
   [INFO] 
   [INFO] --- warbucks-maven-plugin:1.1.2:check (check-junit-categories-on-its) @ accumulo-project ---
   [INFO] Rule 0: Class Matches: 0
   [INFO] Rule 0: Class Failures: 0
   [INFO] Total class failures: 0
   [INFO] 
   [INFO] --- apache-rat-plugin:0.13:check (check-licenses) @ accumulo-project ---
   [INFO] Enabled default license matchers.
   [INFO] Will parse SCM ignores for exclusions...
   [INFO] Parsing exclusions from C:\Users\kylia\Documents\Projects\accumulo\.gitignore
   [INFO] Finished adding exclusions from SCM ignore files.
   [INFO] 91 implicit excludes (use -debug for more details).
   [INFO] 7 explicit excludes (use -debug for more details).
   [INFO] 14 resources included (use -debug for more details)
   [INFO] Rat check: Summary over all files. Unapproved: 0, unknown: 0, generated: 0, approved: 9 licenses.
   [INFO] 
   [INFO] --- maven-site-plugin:3.9.1:attach-descriptor (attach-descriptor) @ accumulo-project ---
   [INFO] Attaching 'src\site\site.xml' site descriptor with classifier 'site'.
   [INFO] 
   [INFO] -----------------< org.apache.accumulo:accumulo-start >-----------------
   [INFO] Building Apache Accumulo Start 2.1.0-SNAPSHOT                     [2/18]
   [INFO] --------------------------------[ jar ]---------------------------------
   [INFO] 
   [INFO] --- build-helper-maven-plugin:3.3.0:parse-version (parse-project-version) @ accumulo-start ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-maven-version) @ accumulo-start ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-java-version) @ accumulo-start ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-output-timestamp-property) @ accumulo-start ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-accumulo-rules) @ accumulo-start ---
   [INFO] 
   [INFO] --- mavanagaiata:1.0.0:commit (git-commit) @ accumulo-start ---
   [INFO] 
   [INFO] --- sortpom-maven-plugin:3.0.0:sort (sort-pom) @ accumulo-start ---
   [INFO] Sorting file C:\Users\kylia\Documents\Projects\accumulo\start\pom.xml
   [INFO] Pom file is already sorted, exiting
   [INFO] 
   [INFO] --- formatter-maven-plugin:2.17.1:format (format-java-source) @ accumulo-start ---
   [INFO] Processed 24 files in 235ms (Formatted: 0, Unchanged: 24, Failed: 0, Readonly: 0)
   [INFO] 
   [INFO] --- impsort-maven-plugin:1.6.2:sort (sort-imports) @ accumulo-start ---
   [INFO] Processed 24 files in 00:00.026 (Already Sorted: 24, Needed Sorting: 0)
   [INFO] 
   [INFO] --- maven-remote-resources-plugin:1.7.0:process (process-resource-bundles) @ accumulo-start ---
   [INFO] Preparing remote bundle org.apache:apache-jar-resource-bundle:1.4
   [INFO] Copying 3 resources from 1 bundle.
   [INFO] 
   [INFO] --- maven-resources-plugin:3.2.0:resources (default-resources) @ accumulo-start ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] Using 'UTF-8' encoding to copy filtered properties files.
   [INFO] skip non existing resourceDirectory C:\Users\kylia\Documents\Projects\accumulo\start\src\main\resources
   [INFO] Copying 3 resources
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ accumulo-start ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 17 source files to C:\Users\kylia\Documents\Projects\accumulo\start\target\classes
   [INFO] 
   [INFO] --- maven-resources-plugin:3.2.0:testResources (default-testResources) @ accumulo-start ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] Using 'UTF-8' encoding to copy filtered properties files.
   [INFO] Copying 1 resource
   [INFO] Copying 3 resources
   [INFO] 
   [INFO] --- license-maven-plugin:4.1:format (license-headers) @ accumulo-start ---
   [INFO] Updating license headers...
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ accumulo-start ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 7 source files to C:\Users\kylia\Documents\Projects\accumulo\start\target\test-classes
   [INFO] 
   [INFO] --- modernizer-maven-plugin:2.2.0:modernizer (modernizer) @ accumulo-start ---
   [INFO] 
   [INFO] --- warbucks-maven-plugin:1.1.2:check (check-junit-categories-on-its) @ accumulo-start ---
   [INFO] Rule 0: Class Matches: 0
   [INFO] Rule 0: Class Failures: 0
   [INFO] Total class failures: 0
   [INFO] 
   [INFO] --- exec-maven-plugin:3.0.0:exec (Build Test jars) @ accumulo-start ---
   [ERROR] Command execution failed.
   java.io.IOException: Cannot run program "C:\Users\kylia\Documents\Projects\accumulo\start\src\test\shell\makeTestJars.sh" (in directory "C:\Users\kylia\Documents\Projects\accumulo\start"): CreateProcess error=193, %1 n’est pas une application Win32 valide
       at java.lang.ProcessBuilder.start (ProcessBuilder.java:1143)
       at java.lang.ProcessBuilder.start (ProcessBuilder.java:1073)
       at java.lang.Runtime.exec (Runtime.java:594)
       at org.apache.commons.exec.launcher.Java13CommandLauncher.exec (Java13CommandLauncher.java:61)
       at org.apache.commons.exec.DefaultExecutor.launch (DefaultExecutor.java:279)
       at org.apache.commons.exec.DefaultExecutor.executeInternal (DefaultExecutor.java:336)
       at org.apache.commons.exec.DefaultExecutor.execute (DefaultExecutor.java:166)
       at org.codehaus.mojo.exec.ExecMojo.executeCommandLine (ExecMojo.java:982)
       at org.codehaus.mojo.exec.ExecMojo.executeCommandLine (ExecMojo.java:929)
       at org.codehaus.mojo.exec.ExecMojo.execute (ExecMojo.java:457)
       at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
       at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:210)
       at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:156)
       at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:148)
       at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
       at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
       at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
       at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
       at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
       at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
       at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
       at org.apache.maven.cli.MavenCli.execute (MavenCli.java:957)
       at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:289)
       at org.apache.maven.cli.MavenCli.main (MavenCli.java:193)
       at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
       at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:77)
       at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
       at java.lang.reflect.Method.invoke (Method.java:568)
       at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
       at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
       at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
       at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
       at org.codehaus.classworlds.Launcher.main (Launcher.java:47)
   Caused by: java.io.IOException: CreateProcess error=193, %1 n’est pas une application Win32 valide
       at java.lang.ProcessImpl.create (Native Method)
       at java.lang.ProcessImpl.<init> (ProcessImpl.java:494)
       at java.lang.ProcessImpl.start (ProcessImpl.java:159)
       at java.lang.ProcessBuilder.start (ProcessBuilder.java:1110)
       at java.lang.ProcessBuilder.start (ProcessBuilder.java:1073)
       at java.lang.Runtime.exec (Runtime.java:594)
       at org.apache.commons.exec.launcher.Java13CommandLauncher.exec (Java13CommandLauncher.java:61)
       at org.apache.commons.exec.DefaultExecutor.launch (DefaultExecutor.java:279)
       at org.apache.commons.exec.DefaultExecutor.executeInternal (DefaultExecutor.java:336)
       at org.apache.commons.exec.DefaultExecutor.execute (DefaultExecutor.java:166)
       at org.codehaus.mojo.exec.ExecMojo.executeCommandLine (ExecMojo.java:982)
       at org.codehaus.mojo.exec.ExecMojo.executeCommandLine (ExecMojo.java:929)
       at org.codehaus.mojo.exec.ExecMojo.execute (ExecMojo.java:457)
       at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
       at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:210)
       at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:156)
       at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:148)
       at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
       at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
       at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
       at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
       at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
       at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
       at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
       at org.apache.maven.cli.MavenCli.execute (MavenCli.java:957)
       at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:289)
       at org.apache.maven.cli.MavenCli.main (MavenCli.java:193)
       at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
       at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:77)
       at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
       at java.lang.reflect.Method.invoke (Method.java:568)
       at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
       at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
       at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
       at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
       at org.codehaus.classworlds.Launcher.main (Launcher.java:47)
   [INFO] ------------------------------------------------------------------------
   [INFO] Reactor Summary for Apache Accumulo Project 2.1.0-SNAPSHOT:
   [INFO] 
   [INFO] Apache Accumulo Project ............................ SUCCESS [  3.031 s]
   [INFO] Apache Accumulo Start .............................. FAILURE [  3.534 s]
   [INFO] Apache Accumulo Core ............................... SKIPPED
   [INFO] Apache Accumulo Server Base ........................ SKIPPED
   [INFO] Apache Accumulo Compaction Coordinator ............. SKIPPED
   [INFO] Apache Accumulo Compactor .......................... SKIPPED
   [INFO] Apache Accumulo GC Server .......................... SKIPPED
   [INFO] Apache Accumulo Manager Server ..................... SKIPPED
   [INFO] Apache Accumulo Monitor Server ..................... SKIPPED
   [INFO] Apache Accumulo Tablet Server ...................... SKIPPED
   [INFO] Apache Accumulo MiniCluster ........................ SKIPPED
   [INFO] Apache Accumulo Native Libraries ................... SKIPPED
   [INFO] Apache Accumulo Shell .............................. SKIPPED
   [INFO] Apache Accumulo Iterator Test Harness .............. SKIPPED
   [INFO] Apache Accumulo Testing ............................ SKIPPED
   [INFO] Apache Accumulo Hadoop MapReduce ................... SKIPPED
   [INFO] Apache Accumulo .................................... SKIPPED
   [INFO] Apache Accumulo Master Server (Deprecated) ......... SKIPPED
   [INFO] ------------------------------------------------------------------------
   [INFO] BUILD FAILURE
   [INFO] ------------------------------------------------------------------------
   [INFO] Total time:  6.775 s
   [INFO] Finished at: 2022-02-20T18:28:00+01:00
   [INFO] ------------------------------------------------------------------------
   [ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:3.0.0:exec (Build Test jars) on project accumulo-start: Command execution failed.: Cannot run program "C:\Users\kylia\Documents\Projects\accumulo\start\src\test\shell\makeTestJars.sh" (in directory "C:\Users\kylia\Documents\Projects\accumulo\start"): CreateProcess error=193, %1 n’est pas une application Win32 valide -> [Help 1]
   [ERROR] 
   [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
   [ERROR] Re-run Maven using the -X switch to enable full debug logging.
   [ERROR] 
   [ERROR] For more information about the errors and possible solutions, please read the following articles:
   [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
   [ERROR] 
   [ERROR] After correcting the problems, you can resume the build with the command
   [ERROR]   mvn <args> -rf :accumulo-start
   
   Process finished with exit code 1
   `
   </detiails>


-- 
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: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [accumulo] Manno15 commented on pull request #2512: Replace n * 1000 with n_000 and n * 1000 * 1000 with n_000_000

Posted by GitBox <gi...@apache.org>.
Manno15 commented on pull request #2512:
URL: https://github.com/apache/accumulo/pull/2512#issuecomment-1046286060


   Yeah, appears to be an issue due to Windows. I went ahead and added a commit that fixes the tiny format issue. 


-- 
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: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [accumulo] ctubbsii commented on pull request #2512: Replace n * 1000 with n_000 and n * 1000 * 1000 with n_000_000

Posted by GitBox <gi...@apache.org>.
ctubbsii commented on pull request #2512:
URL: https://github.com/apache/accumulo/pull/2512#issuecomment-1046603460


   > Yep :) I'll do it
   
   Cool. Just create a new PR with the changes, then. You don't need to create a new issue.


-- 
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: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [accumulo] KikiManjaro commented on pull request #2512: Replace n * 1000 with n_000 and n * 1000 * 1000 with n_000_000

Posted by GitBox <gi...@apache.org>.
KikiManjaro commented on pull request #2512:
URL: https://github.com/apache/accumulo/pull/2512#issuecomment-1046579246


   > > There are two approvals - my previous suggestions could be done as a follow on if this is merged as is.
   > 
   > I think the suggestions you made are good, but they are more than I intended with the initial ticket. My main goal was to have these cleaned up in the timeouts for the test annotations to smooth the transition to JUnit5, and this PR does what I wanted. I think additional changes should go in a subsequent PR, if @KikiManjaro wants to work on them, or @EdColeman can create a new issue to have somebody else follow up later. @KikiManjaro , would you be interested in doing the changes Ed suggests?
   
   Yep :) I'll do it


-- 
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: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org