[jira] [Commented] (GEODE-1494) Allow users to provide callbacks to sample statistics

2016-06-21 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-1494?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15343149#comment-15343149
 ] 

ASF subversion and git services commented on GEODE-1494:


Commit 5882693954d6f71e5479e08bfb0a2abb3ac956c2 in incubator-geode's branch 
refs/heads/develop from [~upthewaterspout]
[ https://git-wip-us.apache.org/repos/asf?p=incubator-geode.git;h=5882693 ]

GEODE-1494: Fixing javadocs and stats descriptions for stat suppliers

Based on review feedback, correcting some javadocs and the description
of the sample callbacks stat.


> Allow users to provide callbacks to sample statistics
> -
>
> Key: GEODE-1494
> URL: https://issues.apache.org/jira/browse/GEODE-1494
> Project: Geode
>  Issue Type: Improvement
>Reporter: Dan Smith
>Assignee: Dan Smith
> Fix For: 1.0.0-incubating.M3
>
>
> The Statistics interface has methods to increment, set, and get the value of 
> various statistics. The statistics are sampled at the sample-rate by the stat 
> sampling thread.
> We should add a way to provide a callback that computes the value of the 
> statistic. The callback can be called by the stat sampling thread to compute 
> the value at the sample time.
> This is useful because some statistics are hard to update correctly using 
> using increment operations. For example, tracking the total number of entries 
> in a parallel async event queue is tricky, because buckets may move on and 
> off of a node while concurrent operations are also adding entries. But 
> measuring the current size of the queue is easy by just calling size on the 
> underlying regions.
> Here are the proposed new methods on the statistics interface:
> {code}
>/**
>* Provide a callback to compute the value of this statistic
>* every sample interval and use that as the value of the stat.
>* 
>* The callback should return quickly because it is invoked on a shared 
> thread.
>* It should not do any expensive computations, network calls, or access 
> any resources
>* under locks that may be locked by long running processes.
>* 
>* This callback will only be invoked if the distributed system property
>* statistic-sampling-enabled is set to true, and it will be invoked at 
> intervals
>* determined by the statistic-sampling-rate.
>* 
>* Get methods are not guaranteed to recompute a new value, they may return
>* the last sampled value
>* @param id a statistic id obtained with {@link #nameToId}
>* or {@link StatisticsType#nameToId}.
>* @param supplier a callback that will return the value of the stat. This
>* replaces any previously registered supplier. If the passed in suppplier 
> is null, it
>* will remove any existing supplier
>* @return the previously registered supplier, or null if there was no 
> previously registered supplier
>* @throws ArrayIndexOutOfBoundsException If the id is invalid.
>* @throws IllegalArgumentException if the type of this
>* stat is not int
>*/
>   public IntSupplier setIntSupplier(int id, IntSupplier supplier);
>   public LongSupplier setLongSupplier(int id, LongSupplier supplier);
>   public DoubleSupplier setDoubleSupplier(int id, DoubleSupplier supplier);
>   public IntSupplier setIntSupplier(String name, IntSupplier supplier);
>   public LongSupplier setLongSupplier(String name, LongSupplier supplier);
>   public DoubleSupplier setDoubleSupplier(String name, DoubleSupplier 
> supplier);
>   public IntSupplier setIntSupplier(StatisticDescriptor descriptor, 
> IntSupplier supplier);
>   public LongSupplier setLongSupplier(StatisticDescriptor descriptor, 
> LongSupplier supplier);
>   public DoubleSupplier setDoubleSupplier(StatisticDescriptor descriptor, 
> DoubleSupplier supplier);
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (GEODE-11) Lucene Integration

2016-06-21 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-11?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15343148#comment-15343148
 ] 

ASF subversion and git services commented on GEODE-11:
--

Commit d25dd3fe61a67027d10ebcb6b11f3b2ecf6cf444 in incubator-geode's branch 
refs/heads/develop from [~upthewaterspout]
[ https://git-wip-us.apache.org/repos/asf?p=incubator-geode.git;h=d25dd3f ]

GEODE-11: Adding a dunit test of querying with a custom query object


> Lucene Integration
> --
>
> Key: GEODE-11
> URL: https://issues.apache.org/jira/browse/GEODE-11
> Project: Geode
>  Issue Type: New Feature
>  Components: querying
>Reporter: Dan Smith
>Assignee: xiaojian zhou
>
> This is a feature that has been under development for GemFire but was not 
> part of the initial drop of code for geode.
> Allow Lucene indexes to be stored in Geode regions allowing users to do text 
> searches on data stored in Geode. 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (GEODE-11) Lucene Integration

2016-06-21 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-11?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15343144#comment-15343144
 ] 

ASF GitHub Bot commented on GEODE-11:
-

Github user upthewaterspout commented on the issue:

https://github.com/apache/incubator-geode/pull/169
  
+1


> Lucene Integration
> --
>
> Key: GEODE-11
> URL: https://issues.apache.org/jira/browse/GEODE-11
> Project: Geode
>  Issue Type: New Feature
>  Components: querying
>Reporter: Dan Smith
>Assignee: xiaojian zhou
>
> This is a feature that has been under development for GemFire but was not 
> part of the initial drop of code for geode.
> Allow Lucene indexes to be stored in Geode regions allowing users to do text 
> searches on data stored in Geode. 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (GEODE-1578) add a test class to write index into default lucene FSDirectory

2016-06-21 Thread xiaojian zhou (JIRA)
xiaojian zhou created GEODE-1578:


 Summary: add a test class to write index into default lucene 
FSDirectory
 Key: GEODE-1578
 URL: https://issues.apache.org/jira/browse/GEODE-1578
 Project: Geode
  Issue Type: Test
Reporter: xiaojian zhou






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (GEODE-1577) Unhelpful generic types on Execution.execute

2016-06-21 Thread Dan Smith (JIRA)
Dan Smith created GEODE-1577:


 Summary: Unhelpful generic types on Execution.execute
 Key: GEODE-1577
 URL: https://issues.apache.org/jira/browse/GEODE-1577
 Project: Geode
  Issue Type: Bug
  Components: functions
Reporter: Dan Smith


The execute methods of the function service Execution class returns a 
ResultCollector with wildcards for the type.

{code}  
public ResultCollector execute(
  Function function) throws FunctionException;
{code}

Wildcards are supposed to be used in APIs where the type doesn't matter, for 
example counting the elements in a list. By returning a ResultCollector with 
wildcards, we're essentially forcing the user to cast the result collector.

At a minimum they should be able to pick the type of result collector
{code}
  public  ResultCollector execute(
  Function function) throws FunctionException;
{code}

But maybe it would make more sense to parameterize Execution itself. Then the 
compiler could ensure that the types used by withCollector and the types used 
by execute match.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Assigned] (GEODE-1576) Website needs to be upgraded to include WAN and CQ

2016-06-21 Thread Swapnil Bawaskar (JIRA)

 [ 
https://issues.apache.org/jira/browse/GEODE-1576?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Swapnil Bawaskar reassigned GEODE-1576:
---

Assignee: Swapnil Bawaskar

> Website needs to be upgraded to include WAN and CQ
> --
>
> Key: GEODE-1576
> URL: https://issues.apache.org/jira/browse/GEODE-1576
> Project: Geode
>  Issue Type: Improvement
>  Components: web-content
>Reporter: Swapnil Bawaskar
>Assignee: Swapnil Bawaskar
>
> Since WAN and CQ are new features included in M2 release, we should update 
> the website to highlight their availability.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (GEODE-1576) Website needs to be upgraded to include WAN and CQ

2016-06-21 Thread Swapnil Bawaskar (JIRA)
Swapnil Bawaskar created GEODE-1576:
---

 Summary: Website needs to be upgraded to include WAN and CQ
 Key: GEODE-1576
 URL: https://issues.apache.org/jira/browse/GEODE-1576
 Project: Geode
  Issue Type: Improvement
  Components: web-content
Reporter: Swapnil Bawaskar


Since WAN and CQ are new features included in M2 release, we should update the 
website to highlight their availability.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (GEODE-33) Create project examples

2016-06-21 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-33?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15342434#comment-15342434
 ] 

ASF subversion and git services commented on GEODE-33:
--

Commit e82120bbbc51fe60c02e34fbfdce7daf130d in incubator-geode's branch 
refs/heads/feature/GEODE-33 from William Markito
[ https://git-wip-us.apache.org/repos/asf?p=incubator-geode.git;h=e82120b ]

GEODE-33 - Removing quote from folder name


> Create project examples
> ---
>
> Key: GEODE-33
> URL: https://issues.apache.org/jira/browse/GEODE-33
> Project: Geode
>  Issue Type: Improvement
>  Components: docs, general, web-content
>Reporter: William Markito Oliveira
>  Labels: gsoc2016
> Fix For: 1.0.0-incubating.M3
>
>
> Currently the project doesn't have examples.
> Ideally  it should be created as a separated project, include tests and be 
> used as part of build process tests as well.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (GEODE-33) Create project examples

2016-06-21 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-33?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15342424#comment-15342424
 ] 

ASF subversion and git services commented on GEODE-33:
--

Commit 996d704533bd9898d4f0f380031598146c95bd88 in incubator-geode's branch 
refs/heads/feature/GEODE-33 from William Markito
[ https://git-wip-us.apache.org/repos/asf?p=incubator-geode.git;h=996d704 ]

GEODE-33 - Adding link to replicated examples


> Create project examples
> ---
>
> Key: GEODE-33
> URL: https://issues.apache.org/jira/browse/GEODE-33
> Project: Geode
>  Issue Type: Improvement
>  Components: docs, general, web-content
>Reporter: William Markito Oliveira
>  Labels: gsoc2016
> Fix For: 1.0.0-incubating.M3
>
>
> Currently the project doesn't have examples.
> Ideally  it should be created as a separated project, include tests and be 
> used as part of build process tests as well.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (GEODE-1575) Unhandled NoClassDefFound Exception when creating regions

2016-06-21 Thread Kevin Duling (JIRA)

 [ 
https://issues.apache.org/jira/browse/GEODE-1575?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Kevin Duling updated GEODE-1575:

Component/s: gfsh

> Unhandled NoClassDefFound Exception when creating regions
> -
>
> Key: GEODE-1575
> URL: https://issues.apache.org/jira/browse/GEODE-1575
> Project: Geode
>  Issue Type: Bug
>  Components: configuration, gfsh
>Reporter: Kevin Duling
>Assignee: Kevin Duling
> Fix For: 1.0.0-incubating.M3
>
>
> The wrong error message is being displayed when encountering a 
> {{NoClassDefFoundError}}
> {panel:title=gfsh}
> {noformat}
> Executing - create region --name=replicatedRegion --type=REPLICATE 
> --cache-loader=com.example.TestCacheLoader
> Could not process command due to GemFire error. 
> java.lang.ClassNotFoundException cannot be cast to 
> com.gemstone.gemfire.management.internal.cli.functions.CliFunctionResult
> {noformat}
> {panel}
> {panel:title=server.log}
> {noformat}
> [fine 2016/06/21 10:02:02.745 PDT host1-server1  Processor1> tid=0x41] Replying with exception: ReplyMessage processorId=13 
> from null with exception 
> com.gemstone.gemfire.distributed.internal.ReplyException: 
> java.lang.NoClassDefFoundError: org/apache/log4j/Logger
> com.gemstone.gemfire.distributed.internal.ReplyException: 
> java.lang.NoClassDefFoundError: org/apache/log4j/Logger
> at 
> com.gemstone.gemfire.internal.cache.MemberFunctionStreamingMessage.process(MemberFunctionStreamingMessage.java:248)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionMessage.scheduleAction(DistributionMessage.java:379)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionMessage$1.run(DistributionMessage.java:450)
> at 
> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
> at 
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionManager.runUntilShutdown(DistributionManager.java:611)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionManager$9$1.run(DistributionManager.java:1071)
> at java.lang.Thread.run(Thread.java:745)
> Caused by: java.lang.NoClassDefFoundError: org/apache/log4j/Logger
> at 
> io.pivotal.support.cases.server.TestCacheLoader.(TestCacheLoader.java:14)
> at java.lang.Class.forName0(Native Method)
> at java.lang.Class.forName(Class.java:348)
> at 
> com.gemstone.gemfire.internal.ClassPathLoader.forName(ClassPathLoader.java:408)
> at 
> com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.forName(RegionCreateFunction.java:386)
> at 
> com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.createRegion(RegionCreateFunction.java:312)
> at 
> com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.execute(RegionCreateFunction.java:89)
> at 
> com.gemstone.gemfire.internal.cache.MemberFunctionStreamingMessage.process(MemberFunctionStreamingMessage.java:194)
> ... 7 more
> Caused by: java.lang.ClassNotFoundException: org.apache.log4j.Logger
> at 
> com.gemstone.gemfire.internal.JarClassLoader.forName(JarClassLoader.java:568)
> at 
> com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:413)
> at 
> com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:389)
> at 
> com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:384)
> ... 15 more
> {noformat}
> {panel}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Resolved] (GEODE-1575) Unhandled NoClassDefFound Exception when creating regions

2016-06-21 Thread Kevin Duling (JIRA)

 [ 
https://issues.apache.org/jira/browse/GEODE-1575?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Kevin Duling resolved GEODE-1575.
-
Resolution: Fixed

> Unhandled NoClassDefFound Exception when creating regions
> -
>
> Key: GEODE-1575
> URL: https://issues.apache.org/jira/browse/GEODE-1575
> Project: Geode
>  Issue Type: Bug
>  Components: configuration, gfsh
>Reporter: Kevin Duling
>Assignee: Kevin Duling
> Fix For: 1.0.0-incubating.M3
>
>
> The wrong error message is being displayed when encountering a 
> {{NoClassDefFoundError}}
> {panel:title=gfsh}
> {noformat}
> Executing - create region --name=replicatedRegion --type=REPLICATE 
> --cache-loader=com.example.TestCacheLoader
> Could not process command due to GemFire error. 
> java.lang.ClassNotFoundException cannot be cast to 
> com.gemstone.gemfire.management.internal.cli.functions.CliFunctionResult
> {noformat}
> {panel}
> {panel:title=server.log}
> {noformat}
> [fine 2016/06/21 10:02:02.745 PDT host1-server1  Processor1> tid=0x41] Replying with exception: ReplyMessage processorId=13 
> from null with exception 
> com.gemstone.gemfire.distributed.internal.ReplyException: 
> java.lang.NoClassDefFoundError: org/apache/log4j/Logger
> com.gemstone.gemfire.distributed.internal.ReplyException: 
> java.lang.NoClassDefFoundError: org/apache/log4j/Logger
> at 
> com.gemstone.gemfire.internal.cache.MemberFunctionStreamingMessage.process(MemberFunctionStreamingMessage.java:248)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionMessage.scheduleAction(DistributionMessage.java:379)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionMessage$1.run(DistributionMessage.java:450)
> at 
> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
> at 
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionManager.runUntilShutdown(DistributionManager.java:611)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionManager$9$1.run(DistributionManager.java:1071)
> at java.lang.Thread.run(Thread.java:745)
> Caused by: java.lang.NoClassDefFoundError: org/apache/log4j/Logger
> at 
> io.pivotal.support.cases.server.TestCacheLoader.(TestCacheLoader.java:14)
> at java.lang.Class.forName0(Native Method)
> at java.lang.Class.forName(Class.java:348)
> at 
> com.gemstone.gemfire.internal.ClassPathLoader.forName(ClassPathLoader.java:408)
> at 
> com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.forName(RegionCreateFunction.java:386)
> at 
> com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.createRegion(RegionCreateFunction.java:312)
> at 
> com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.execute(RegionCreateFunction.java:89)
> at 
> com.gemstone.gemfire.internal.cache.MemberFunctionStreamingMessage.process(MemberFunctionStreamingMessage.java:194)
> ... 7 more
> Caused by: java.lang.ClassNotFoundException: org.apache.log4j.Logger
> at 
> com.gemstone.gemfire.internal.JarClassLoader.forName(JarClassLoader.java:568)
> at 
> com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:413)
> at 
> com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:389)
> at 
> com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:384)
> ... 15 more
> {noformat}
> {panel}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Reopened] (GEODE-1575) Unhandled NoClassDefFound Exception when creating regions

2016-06-21 Thread Kevin Duling (JIRA)

 [ 
https://issues.apache.org/jira/browse/GEODE-1575?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Kevin Duling reopened GEODE-1575:
-

> Unhandled NoClassDefFound Exception when creating regions
> -
>
> Key: GEODE-1575
> URL: https://issues.apache.org/jira/browse/GEODE-1575
> Project: Geode
>  Issue Type: Bug
>  Components: configuration, gfsh
>Reporter: Kevin Duling
>Assignee: Kevin Duling
> Fix For: 1.0.0-incubating.M3
>
>
> The wrong error message is being displayed when encountering a 
> {{NoClassDefFoundError}}
> {panel:title=gfsh}
> {noformat}
> Executing - create region --name=replicatedRegion --type=REPLICATE 
> --cache-loader=com.example.TestCacheLoader
> Could not process command due to GemFire error. 
> java.lang.ClassNotFoundException cannot be cast to 
> com.gemstone.gemfire.management.internal.cli.functions.CliFunctionResult
> {noformat}
> {panel}
> {panel:title=server.log}
> {noformat}
> [fine 2016/06/21 10:02:02.745 PDT host1-server1  Processor1> tid=0x41] Replying with exception: ReplyMessage processorId=13 
> from null with exception 
> com.gemstone.gemfire.distributed.internal.ReplyException: 
> java.lang.NoClassDefFoundError: org/apache/log4j/Logger
> com.gemstone.gemfire.distributed.internal.ReplyException: 
> java.lang.NoClassDefFoundError: org/apache/log4j/Logger
> at 
> com.gemstone.gemfire.internal.cache.MemberFunctionStreamingMessage.process(MemberFunctionStreamingMessage.java:248)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionMessage.scheduleAction(DistributionMessage.java:379)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionMessage$1.run(DistributionMessage.java:450)
> at 
> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
> at 
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionManager.runUntilShutdown(DistributionManager.java:611)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionManager$9$1.run(DistributionManager.java:1071)
> at java.lang.Thread.run(Thread.java:745)
> Caused by: java.lang.NoClassDefFoundError: org/apache/log4j/Logger
> at 
> io.pivotal.support.cases.server.TestCacheLoader.(TestCacheLoader.java:14)
> at java.lang.Class.forName0(Native Method)
> at java.lang.Class.forName(Class.java:348)
> at 
> com.gemstone.gemfire.internal.ClassPathLoader.forName(ClassPathLoader.java:408)
> at 
> com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.forName(RegionCreateFunction.java:386)
> at 
> com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.createRegion(RegionCreateFunction.java:312)
> at 
> com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.execute(RegionCreateFunction.java:89)
> at 
> com.gemstone.gemfire.internal.cache.MemberFunctionStreamingMessage.process(MemberFunctionStreamingMessage.java:194)
> ... 7 more
> Caused by: java.lang.ClassNotFoundException: org.apache.log4j.Logger
> at 
> com.gemstone.gemfire.internal.JarClassLoader.forName(JarClassLoader.java:568)
> at 
> com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:413)
> at 
> com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:389)
> at 
> com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:384)
> ... 15 more
> {noformat}
> {panel}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (GEODE-1575) Unhandled NoClassDefFound Exception when creating regions

2016-06-21 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-1575?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15342250#comment-15342250
 ] 

ASF subversion and git services commented on GEODE-1575:


Commit 087da4e3d084f64516181e7f06317cae64c8af40 in incubator-geode's branch 
refs/heads/develop from [~kduling]
[ https://git-wip-us.apache.org/repos/asf?p=incubator-geode.git;h=087da4e ]

GEODE-1575 - Unhandled NoClassDefFound Exception when creating regions

Added exception clause for NoClassDefFoundError

This closes #170


> Unhandled NoClassDefFound Exception when creating regions
> -
>
> Key: GEODE-1575
> URL: https://issues.apache.org/jira/browse/GEODE-1575
> Project: Geode
>  Issue Type: Bug
>  Components: configuration
>Reporter: Kevin Duling
>Assignee: Kevin Duling
> Fix For: 1.0.0-incubating.M3
>
>
> The wrong error message is being displayed when encountering a 
> {{NoClassDefFoundError}}
> {panel:title=gfsh}
> {noformat}
> Executing - create region --name=replicatedRegion --type=REPLICATE 
> --cache-loader=com.example.TestCacheLoader
> Could not process command due to GemFire error. 
> java.lang.ClassNotFoundException cannot be cast to 
> com.gemstone.gemfire.management.internal.cli.functions.CliFunctionResult
> {noformat}
> {panel}
> {panel:title=server.log}
> {noformat}
> [fine 2016/06/21 10:02:02.745 PDT host1-server1  Processor1> tid=0x41] Replying with exception: ReplyMessage processorId=13 
> from null with exception 
> com.gemstone.gemfire.distributed.internal.ReplyException: 
> java.lang.NoClassDefFoundError: org/apache/log4j/Logger
> com.gemstone.gemfire.distributed.internal.ReplyException: 
> java.lang.NoClassDefFoundError: org/apache/log4j/Logger
> at 
> com.gemstone.gemfire.internal.cache.MemberFunctionStreamingMessage.process(MemberFunctionStreamingMessage.java:248)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionMessage.scheduleAction(DistributionMessage.java:379)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionMessage$1.run(DistributionMessage.java:450)
> at 
> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
> at 
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionManager.runUntilShutdown(DistributionManager.java:611)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionManager$9$1.run(DistributionManager.java:1071)
> at java.lang.Thread.run(Thread.java:745)
> Caused by: java.lang.NoClassDefFoundError: org/apache/log4j/Logger
> at 
> io.pivotal.support.cases.server.TestCacheLoader.(TestCacheLoader.java:14)
> at java.lang.Class.forName0(Native Method)
> at java.lang.Class.forName(Class.java:348)
> at 
> com.gemstone.gemfire.internal.ClassPathLoader.forName(ClassPathLoader.java:408)
> at 
> com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.forName(RegionCreateFunction.java:386)
> at 
> com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.createRegion(RegionCreateFunction.java:312)
> at 
> com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.execute(RegionCreateFunction.java:89)
> at 
> com.gemstone.gemfire.internal.cache.MemberFunctionStreamingMessage.process(MemberFunctionStreamingMessage.java:194)
> ... 7 more
> Caused by: java.lang.ClassNotFoundException: org.apache.log4j.Logger
> at 
> com.gemstone.gemfire.internal.JarClassLoader.forName(JarClassLoader.java:568)
> at 
> com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:413)
> at 
> com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:389)
> at 
> com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:384)
> ... 15 more
> {noformat}
> {panel}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (GEODE-1575) Unhandled NoClassDefFound Exception when creating regions

2016-06-21 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-1575?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15342253#comment-15342253
 ] 

ASF GitHub Bot commented on GEODE-1575:
---

Github user asfgit closed the pull request at:

https://github.com/apache/incubator-geode/pull/170


> Unhandled NoClassDefFound Exception when creating regions
> -
>
> Key: GEODE-1575
> URL: https://issues.apache.org/jira/browse/GEODE-1575
> Project: Geode
>  Issue Type: Bug
>  Components: configuration
>Reporter: Kevin Duling
>Assignee: Kevin Duling
> Fix For: 1.0.0-incubating.M3
>
>
> The wrong error message is being displayed when encountering a 
> {{NoClassDefFoundError}}
> {panel:title=gfsh}
> {noformat}
> Executing - create region --name=replicatedRegion --type=REPLICATE 
> --cache-loader=com.example.TestCacheLoader
> Could not process command due to GemFire error. 
> java.lang.ClassNotFoundException cannot be cast to 
> com.gemstone.gemfire.management.internal.cli.functions.CliFunctionResult
> {noformat}
> {panel}
> {panel:title=server.log}
> {noformat}
> [fine 2016/06/21 10:02:02.745 PDT host1-server1  Processor1> tid=0x41] Replying with exception: ReplyMessage processorId=13 
> from null with exception 
> com.gemstone.gemfire.distributed.internal.ReplyException: 
> java.lang.NoClassDefFoundError: org/apache/log4j/Logger
> com.gemstone.gemfire.distributed.internal.ReplyException: 
> java.lang.NoClassDefFoundError: org/apache/log4j/Logger
> at 
> com.gemstone.gemfire.internal.cache.MemberFunctionStreamingMessage.process(MemberFunctionStreamingMessage.java:248)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionMessage.scheduleAction(DistributionMessage.java:379)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionMessage$1.run(DistributionMessage.java:450)
> at 
> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
> at 
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionManager.runUntilShutdown(DistributionManager.java:611)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionManager$9$1.run(DistributionManager.java:1071)
> at java.lang.Thread.run(Thread.java:745)
> Caused by: java.lang.NoClassDefFoundError: org/apache/log4j/Logger
> at 
> io.pivotal.support.cases.server.TestCacheLoader.(TestCacheLoader.java:14)
> at java.lang.Class.forName0(Native Method)
> at java.lang.Class.forName(Class.java:348)
> at 
> com.gemstone.gemfire.internal.ClassPathLoader.forName(ClassPathLoader.java:408)
> at 
> com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.forName(RegionCreateFunction.java:386)
> at 
> com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.createRegion(RegionCreateFunction.java:312)
> at 
> com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.execute(RegionCreateFunction.java:89)
> at 
> com.gemstone.gemfire.internal.cache.MemberFunctionStreamingMessage.process(MemberFunctionStreamingMessage.java:194)
> ... 7 more
> Caused by: java.lang.ClassNotFoundException: org.apache.log4j.Logger
> at 
> com.gemstone.gemfire.internal.JarClassLoader.forName(JarClassLoader.java:568)
> at 
> com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:413)
> at 
> com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:389)
> at 
> com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:384)
> ... 15 more
> {noformat}
> {panel}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Resolved] (GEODE-1565) GemfireDataCommandsDUnitTest fails when executed over HTTP

2016-06-21 Thread Kirk Lund (JIRA)

 [ 
https://issues.apache.org/jira/browse/GEODE-1565?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Kirk Lund resolved GEODE-1565.
--
   Resolution: Fixed
Fix Version/s: 1.0.0-incubating.M3

> GemfireDataCommandsDUnitTest fails when executed over HTTP
> --
>
> Key: GEODE-1565
> URL: https://issues.apache.org/jira/browse/GEODE-1565
> Project: Geode
>  Issue Type: Bug
>  Components: gfsh
>Reporter: Kirk Lund
>Assignee: Kirk Lund
> Fix For: 1.0.0-incubating.M3
>
>
> CommandOverHttpDUnitTest executes GFSH command dunit tests over HTTP by 
> specifying:
> {noformat}
>   @ClassRule
>   public static ProvideSystemProperty provideSystemProperty = new 
> ProvideSystemProperty(CliCommandTestBase.USE_HTTP_SYSTEM_PROPERTY, "true");
> {noformat}
> Executing GemfireDataCommandsDUnitTest directly passes, but executing it over 
> HTTP results in several failures (possibly introduced by fix for GEODE-835):
> * testRebalanceCommandForSimulateWithNoMember
> * testRebalanceCommandForSimulate
> * testRebalanceForExcludeRegionFunction
> * testRebalanceForIncludeRegionFunction
> * testSimulateForEntireDS
> Note: this bug does not reproduce on the command-line via:
> ./gradlew geode-web:distributedTest 
> -DdistributedTest.single=CommandOverHttpDUnitTest
> ...because distributedTest excludes the above tests because they are now 
> annotated with FlakyTest.
> The fix for GEODE-835 (replace geode-joptsimple with dependency on 
> jopt-simple release) is required so GemfireDataCommandsDUnitTest should be 
> removed from CommandOverHttpDUnitTest until this ticket can be fixed.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (GEODE-1575) Unhandled NoClassDefFound Exception when creating regions

2016-06-21 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-1575?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15342242#comment-15342242
 ] 

ASF GitHub Bot commented on GEODE-1575:
---

Github user jinmeiliao commented on the issue:

https://github.com/apache/incubator-geode/pull/170
  
+1


> Unhandled NoClassDefFound Exception when creating regions
> -
>
> Key: GEODE-1575
> URL: https://issues.apache.org/jira/browse/GEODE-1575
> Project: Geode
>  Issue Type: Bug
>  Components: configuration
>Reporter: Kevin Duling
>Assignee: Kevin Duling
> Fix For: 1.0.0-incubating.M3
>
>
> The wrong error message is being displayed when encountering a 
> {{NoClassDefFoundError}}
> {panel:title=gfsh}
> {noformat}
> Executing - create region --name=replicatedRegion --type=REPLICATE 
> --cache-loader=com.example.TestCacheLoader
> Could not process command due to GemFire error. 
> java.lang.ClassNotFoundException cannot be cast to 
> com.gemstone.gemfire.management.internal.cli.functions.CliFunctionResult
> {noformat}
> {panel}
> {panel:title=server.log}
> {noformat}
> [fine 2016/06/21 10:02:02.745 PDT host1-server1  Processor1> tid=0x41] Replying with exception: ReplyMessage processorId=13 
> from null with exception 
> com.gemstone.gemfire.distributed.internal.ReplyException: 
> java.lang.NoClassDefFoundError: org/apache/log4j/Logger
> com.gemstone.gemfire.distributed.internal.ReplyException: 
> java.lang.NoClassDefFoundError: org/apache/log4j/Logger
> at 
> com.gemstone.gemfire.internal.cache.MemberFunctionStreamingMessage.process(MemberFunctionStreamingMessage.java:248)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionMessage.scheduleAction(DistributionMessage.java:379)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionMessage$1.run(DistributionMessage.java:450)
> at 
> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
> at 
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionManager.runUntilShutdown(DistributionManager.java:611)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionManager$9$1.run(DistributionManager.java:1071)
> at java.lang.Thread.run(Thread.java:745)
> Caused by: java.lang.NoClassDefFoundError: org/apache/log4j/Logger
> at 
> io.pivotal.support.cases.server.TestCacheLoader.(TestCacheLoader.java:14)
> at java.lang.Class.forName0(Native Method)
> at java.lang.Class.forName(Class.java:348)
> at 
> com.gemstone.gemfire.internal.ClassPathLoader.forName(ClassPathLoader.java:408)
> at 
> com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.forName(RegionCreateFunction.java:386)
> at 
> com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.createRegion(RegionCreateFunction.java:312)
> at 
> com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.execute(RegionCreateFunction.java:89)
> at 
> com.gemstone.gemfire.internal.cache.MemberFunctionStreamingMessage.process(MemberFunctionStreamingMessage.java:194)
> ... 7 more
> Caused by: java.lang.ClassNotFoundException: org.apache.log4j.Logger
> at 
> com.gemstone.gemfire.internal.JarClassLoader.forName(JarClassLoader.java:568)
> at 
> com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:413)
> at 
> com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:389)
> at 
> com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:384)
> ... 15 more
> {noformat}
> {panel}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (GEODE-1565) GemfireDataCommandsDUnitTest fails when executed over HTTP

2016-06-21 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-1565?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15342240#comment-15342240
 ] 

ASF subversion and git services commented on GEODE-1565:


Commit 170919bcc33dcb48d931b5c4ad707df7eec4a2f0 in incubator-geode's branch 
refs/heads/develop from [~apa...@the9muses.net]
[ https://git-wip-us.apache.org/repos/asf?p=incubator-geode.git;h=170919b ]

GEODE-1565: add quotes around any value starting with hyphen

* refactor OptionJFormatter into HyphenFormatter to format all values starting 
with hypen


> GemfireDataCommandsDUnitTest fails when executed over HTTP
> --
>
> Key: GEODE-1565
> URL: https://issues.apache.org/jira/browse/GEODE-1565
> Project: Geode
>  Issue Type: Bug
>  Components: gfsh
>Reporter: Kirk Lund
>Assignee: Kirk Lund
>
> CommandOverHttpDUnitTest executes GFSH command dunit tests over HTTP by 
> specifying:
> {noformat}
>   @ClassRule
>   public static ProvideSystemProperty provideSystemProperty = new 
> ProvideSystemProperty(CliCommandTestBase.USE_HTTP_SYSTEM_PROPERTY, "true");
> {noformat}
> Executing GemfireDataCommandsDUnitTest directly passes, but executing it over 
> HTTP results in several failures (possibly introduced by fix for GEODE-835):
> * testRebalanceCommandForSimulateWithNoMember
> * testRebalanceCommandForSimulate
> * testRebalanceForExcludeRegionFunction
> * testRebalanceForIncludeRegionFunction
> * testSimulateForEntireDS
> Note: this bug does not reproduce on the command-line via:
> ./gradlew geode-web:distributedTest 
> -DdistributedTest.single=CommandOverHttpDUnitTest
> ...because distributedTest excludes the above tests because they are now 
> annotated with FlakyTest.
> The fix for GEODE-835 (replace geode-joptsimple with dependency on 
> jopt-simple release) is required so GemfireDataCommandsDUnitTest should be 
> removed from CommandOverHttpDUnitTest until this ticket can be fixed.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (GEODE-1572) create a test case to run lucene query from a client

2016-06-21 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-1572?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15342226#comment-15342226
 ] 

ASF subversion and git services commented on GEODE-1572:


Commit de6105f98021095c110bbc91ba547f8a01904ae7 in incubator-geode's branch 
refs/heads/develop from zhouxh
[ https://git-wip-us.apache.org/repos/asf?p=incubator-geode.git;h=de6105f ]

GEODE-1572: add a dunit test for client server query for lucene


> create a test case to run lucene query from a client
> 
>
> Key: GEODE-1572
> URL: https://issues.apache.org/jira/browse/GEODE-1572
> Project: Geode
>  Issue Type: Test
>Reporter: xiaojian zhou
>Assignee: xiaojian zhou
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Resolved] (GEODE-1572) create a test case to run lucene query from a client

2016-06-21 Thread xiaojian zhou (JIRA)

 [ 
https://issues.apache.org/jira/browse/GEODE-1572?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

xiaojian zhou resolved GEODE-1572.
--
Resolution: Fixed

> create a test case to run lucene query from a client
> 
>
> Key: GEODE-1572
> URL: https://issues.apache.org/jira/browse/GEODE-1572
> Project: Geode
>  Issue Type: Test
>Reporter: xiaojian zhou
>Assignee: xiaojian zhou
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (GEODE-1575) Unhandled NoClassDefFound Exception when creating regions

2016-06-21 Thread Kevin Duling (JIRA)

 [ 
https://issues.apache.org/jira/browse/GEODE-1575?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Kevin Duling updated GEODE-1575:

Description: 
The wrong error message is being displayed when encountering a 
{{NoClassDefFoundError}}

{panel:title=gfsh}
{noformat}
Executing - create region --name=replicatedRegion --type=REPLICATE 
--cache-loader=com.example.TestCacheLoader
Could not process command due to GemFire error. 
java.lang.ClassNotFoundException cannot be cast to 
com.gemstone.gemfire.management.internal.cli.functions.CliFunctionResult
{noformat}
{panel}

{panel:title=server.log}
{noformat}
[fine 2016/06/21 10:02:02.745 PDT host1-server1  
tid=0x41] Replying with exception: ReplyMessage processorId=13 from null with 
exception com.gemstone.gemfire.distributed.internal.ReplyException: 
java.lang.NoClassDefFoundError: org/apache/log4j/Logger
com.gemstone.gemfire.distributed.internal.ReplyException: 
java.lang.NoClassDefFoundError: org/apache/log4j/Logger
at 
com.gemstone.gemfire.internal.cache.MemberFunctionStreamingMessage.process(MemberFunctionStreamingMessage.java:248)
at 
com.gemstone.gemfire.distributed.internal.DistributionMessage.scheduleAction(DistributionMessage.java:379)
at 
com.gemstone.gemfire.distributed.internal.DistributionMessage$1.run(DistributionMessage.java:450)
at 
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at 
com.gemstone.gemfire.distributed.internal.DistributionManager.runUntilShutdown(DistributionManager.java:611)
at 
com.gemstone.gemfire.distributed.internal.DistributionManager$9$1.run(DistributionManager.java:1071)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.lang.NoClassDefFoundError: org/apache/log4j/Logger
at 
io.pivotal.support.cases.server.TestCacheLoader.(TestCacheLoader.java:14)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:348)
at 
com.gemstone.gemfire.internal.ClassPathLoader.forName(ClassPathLoader.java:408)
at 
com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.forName(RegionCreateFunction.java:386)
at 
com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.createRegion(RegionCreateFunction.java:312)
at 
com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.execute(RegionCreateFunction.java:89)
at 
com.gemstone.gemfire.internal.cache.MemberFunctionStreamingMessage.process(MemberFunctionStreamingMessage.java:194)
... 7 more
Caused by: java.lang.ClassNotFoundException: org.apache.log4j.Logger
at 
com.gemstone.gemfire.internal.JarClassLoader.forName(JarClassLoader.java:568)
at 
com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:413)
at 
com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:389)
at 
com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:384)
... 15 more
{noformat}
{panel}

  was:
{panel:title=gfsh}
Executing - create region --name=replicatedRegion --type=REPLICATE 
--cache-loader=com.example.TestCacheLoader
Could not process command due to GemFire error. 
java.lang.ClassNotFoundException cannot be cast to 
com.gemstone.gemfire.management.internal.cli.functions.CliFunctionResult
{panel}

{panel:title=server.log}
[fine 2016/06/21 10:02:02.745 PDT host1-server1  
tid=0x41] Replying with exception: ReplyMessage processorId=13 from null with 
exception com.gemstone.gemfire.distributed.internal.ReplyE
xception: java.lang.NoClassDefFoundError: org/apache/log4j/Logger
com.gemstone.gemfire.distributed.internal.ReplyException: 
java.lang.NoClassDefFoundError: org/apache/log4j/Logger
at 
com.gemstone.gemfire.internal.cache.MemberFunctionStreamingMessage.process(MemberFunctionStreamingMessage.java:248)
at 
com.gemstone.gemfire.distributed.internal.DistributionMessage.scheduleAction(DistributionMessage.java:379)
at 
com.gemstone.gemfire.distributed.internal.DistributionMessage$1.run(DistributionMessage.java:450)
at 
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at 
com.gemstone.gemfire.distributed.internal.DistributionManager.runUntilShutdown(DistributionManager.java:611)
at 
com.gemstone.gemfire.distributed.internal.DistributionManager$9$1.run(DistributionManager.java:1071)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.lang.NoClassDefFoundError: org/apache/log4j/Logger
at 
io.pivotal.support.cases.server.TestCacheLoader.(TestCacheLoader.java:14)
at java.lang.Class.forName0(Native Method)
at 

[jira] [Comment Edited] (GEODE-1575) Unhandled NoClassDefFound Exception when creating regions

2016-06-21 Thread Kevin Duling (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-1575?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15342192#comment-15342192
 ] 

Kevin Duling edited comment on GEODE-1575 at 6/21/16 5:07 PM:
--

Added a catch clause for the exception.

Now the error message reads:

{panel:title=gfsh}
{noformat}
(2) Executing - create region --name=replicatedRegion --type=REPLICATE 
--cache-loader=com.example.TestCacheLoader
   Member | Status
- | 
---
host1-server1 | ERROR: Could not find class "com.example.TestCacheLoader" 
specified for "cache-loader".
{noformat}
{panel}


was (Author: kduling):
Added a catch clause for the exception.

Now the error message reads:

{panel:title=gfsh}


(2) Executing - create region --name=replicatedRegion --type=REPLICATE 
--cache-loader=com.example.TestCacheLoader
   Member | Status
- | 
---
host1-server1 | ERROR: Could not find class "com.example.TestCacheLoader" 
specified for "cache-loader".
{panel}

> Unhandled NoClassDefFound Exception when creating regions
> -
>
> Key: GEODE-1575
> URL: https://issues.apache.org/jira/browse/GEODE-1575
> Project: Geode
>  Issue Type: Bug
>  Components: configuration
>Reporter: Kevin Duling
>Assignee: Kevin Duling
> Fix For: 1.0.0-incubating.M3
>
>
> {panel:title=gfsh}
> Executing - create region --name=replicatedRegion --type=REPLICATE 
> --cache-loader=com.example.TestCacheLoader
> Could not process command due to GemFire error. 
> java.lang.ClassNotFoundException cannot be cast to 
> com.gemstone.gemfire.management.internal.cli.functions.CliFunctionResult
> {panel}
> {panel:title=server.log}
> [fine 2016/06/21 10:02:02.745 PDT host1-server1  Processor1> tid=0x41] Replying with exception: ReplyMessage processorId=13 
> from null with exception com.gemstone.gemfire.distributed.internal.ReplyE
> xception: java.lang.NoClassDefFoundError: org/apache/log4j/Logger
> com.gemstone.gemfire.distributed.internal.ReplyException: 
> java.lang.NoClassDefFoundError: org/apache/log4j/Logger
> at 
> com.gemstone.gemfire.internal.cache.MemberFunctionStreamingMessage.process(MemberFunctionStreamingMessage.java:248)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionMessage.scheduleAction(DistributionMessage.java:379)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionMessage$1.run(DistributionMessage.java:450)
> at 
> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
> at 
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionManager.runUntilShutdown(DistributionManager.java:611)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionManager$9$1.run(DistributionManager.java:1071)
> at java.lang.Thread.run(Thread.java:745)
> Caused by: java.lang.NoClassDefFoundError: org/apache/log4j/Logger
> at 
> io.pivotal.support.cases.server.TestCacheLoader.(TestCacheLoader.java:14)
> at java.lang.Class.forName0(Native Method)
> at java.lang.Class.forName(Class.java:348)
> at 
> com.gemstone.gemfire.internal.ClassPathLoader.forName(ClassPathLoader.java:408)
> at 
> com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.forName(RegionCreateFunction.java:386)
> at 
> com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.createRegion(RegionCreateFunction.java:312)
> at 
> com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.execute(RegionCreateFunction.java:89)
> at 
> com.gemstone.gemfire.internal.cache.MemberFunctionStreamingMessage.process(MemberFunctionStreamingMessage.java:194)
> ... 7 more
> Caused by: java.lang.ClassNotFoundException: org.apache.log4j.Logger
> at 
> com.gemstone.gemfire.internal.JarClassLoader.forName(JarClassLoader.java:568)
> at 
> com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:413)
> at 
> com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:389)
> at 
> com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:384)
> ... 15 more
> {panel}
> The wrong error message is being displayed.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Resolved] (GEODE-1575) Unhandled NoClassDefFound Exception when creating regions

2016-06-21 Thread Kevin Duling (JIRA)

 [ 
https://issues.apache.org/jira/browse/GEODE-1575?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Kevin Duling resolved GEODE-1575.
-
   Resolution: Fixed
Fix Version/s: 1.0.0-incubating.M3

Added a catch clause for the exception.

Now the error message reads:

{panel:title=gfsh}


(2) Executing - create region --name=replicatedRegion --type=REPLICATE 
--cache-loader=com.example.TestCacheLoader
   Member | Status
- | 
---
host1-server1 | ERROR: Could not find class "com.example.TestCacheLoader" 
specified for "cache-loader".
{panel}

> Unhandled NoClassDefFound Exception when creating regions
> -
>
> Key: GEODE-1575
> URL: https://issues.apache.org/jira/browse/GEODE-1575
> Project: Geode
>  Issue Type: Bug
>  Components: configuration
>Reporter: Kevin Duling
>Assignee: Kevin Duling
> Fix For: 1.0.0-incubating.M3
>
>
> {panel:title=gfsh}
> Executing - create region --name=replicatedRegion --type=REPLICATE 
> --cache-loader=com.example.TestCacheLoader
> Could not process command due to GemFire error. 
> java.lang.ClassNotFoundException cannot be cast to 
> com.gemstone.gemfire.management.internal.cli.functions.CliFunctionResult
> {panel}
> {panel:title=server.log}
> [fine 2016/06/21 10:02:02.745 PDT host1-server1  Processor1> tid=0x41] Replying with exception: ReplyMessage processorId=13 
> from null with exception com.gemstone.gemfire.distributed.internal.ReplyE
> xception: java.lang.NoClassDefFoundError: org/apache/log4j/Logger
> com.gemstone.gemfire.distributed.internal.ReplyException: 
> java.lang.NoClassDefFoundError: org/apache/log4j/Logger
> at 
> com.gemstone.gemfire.internal.cache.MemberFunctionStreamingMessage.process(MemberFunctionStreamingMessage.java:248)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionMessage.scheduleAction(DistributionMessage.java:379)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionMessage$1.run(DistributionMessage.java:450)
> at 
> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
> at 
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionManager.runUntilShutdown(DistributionManager.java:611)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionManager$9$1.run(DistributionManager.java:1071)
> at java.lang.Thread.run(Thread.java:745)
> Caused by: java.lang.NoClassDefFoundError: org/apache/log4j/Logger
> at 
> io.pivotal.support.cases.server.TestCacheLoader.(TestCacheLoader.java:14)
> at java.lang.Class.forName0(Native Method)
> at java.lang.Class.forName(Class.java:348)
> at 
> com.gemstone.gemfire.internal.ClassPathLoader.forName(ClassPathLoader.java:408)
> at 
> com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.forName(RegionCreateFunction.java:386)
> at 
> com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.createRegion(RegionCreateFunction.java:312)
> at 
> com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.execute(RegionCreateFunction.java:89)
> at 
> com.gemstone.gemfire.internal.cache.MemberFunctionStreamingMessage.process(MemberFunctionStreamingMessage.java:194)
> ... 7 more
> Caused by: java.lang.ClassNotFoundException: org.apache.log4j.Logger
> at 
> com.gemstone.gemfire.internal.JarClassLoader.forName(JarClassLoader.java:568)
> at 
> com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:413)
> at 
> com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:389)
> at 
> com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:384)
> ... 15 more
> {panel}
> The wrong error message is being displayed.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Assigned] (GEODE-1575) Unhandled NoClassDefFound Exception when creating regions

2016-06-21 Thread Kevin Duling (JIRA)

 [ 
https://issues.apache.org/jira/browse/GEODE-1575?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Kevin Duling reassigned GEODE-1575:
---

Assignee: Kevin Duling

> Unhandled NoClassDefFound Exception when creating regions
> -
>
> Key: GEODE-1575
> URL: https://issues.apache.org/jira/browse/GEODE-1575
> Project: Geode
>  Issue Type: Bug
>  Components: configuration
>Reporter: Kevin Duling
>Assignee: Kevin Duling
>
> {panel:title=gfsh}
> Executing - create region --name=replicatedRegion --type=REPLICATE 
> --cache-loader=com.example.TestCacheLoader
> Could not process command due to GemFire error. 
> java.lang.ClassNotFoundException cannot be cast to 
> com.gemstone.gemfire.management.internal.cli.functions.CliFunctionResult
> {panel}
> {panel:title=server.log}
> [fine 2016/06/21 10:02:02.745 PDT host1-server1  Processor1> tid=0x41] Replying with exception: ReplyMessage processorId=13 
> from null with exception com.gemstone.gemfire.distributed.internal.ReplyE
> xception: java.lang.NoClassDefFoundError: org/apache/log4j/Logger
> com.gemstone.gemfire.distributed.internal.ReplyException: 
> java.lang.NoClassDefFoundError: org/apache/log4j/Logger
> at 
> com.gemstone.gemfire.internal.cache.MemberFunctionStreamingMessage.process(MemberFunctionStreamingMessage.java:248)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionMessage.scheduleAction(DistributionMessage.java:379)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionMessage$1.run(DistributionMessage.java:450)
> at 
> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
> at 
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionManager.runUntilShutdown(DistributionManager.java:611)
> at 
> com.gemstone.gemfire.distributed.internal.DistributionManager$9$1.run(DistributionManager.java:1071)
> at java.lang.Thread.run(Thread.java:745)
> Caused by: java.lang.NoClassDefFoundError: org/apache/log4j/Logger
> at 
> io.pivotal.support.cases.server.TestCacheLoader.(TestCacheLoader.java:14)
> at java.lang.Class.forName0(Native Method)
> at java.lang.Class.forName(Class.java:348)
> at 
> com.gemstone.gemfire.internal.ClassPathLoader.forName(ClassPathLoader.java:408)
> at 
> com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.forName(RegionCreateFunction.java:386)
> at 
> com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.createRegion(RegionCreateFunction.java:312)
> at 
> com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.execute(RegionCreateFunction.java:89)
> at 
> com.gemstone.gemfire.internal.cache.MemberFunctionStreamingMessage.process(MemberFunctionStreamingMessage.java:194)
> ... 7 more
> Caused by: java.lang.ClassNotFoundException: org.apache.log4j.Logger
> at 
> com.gemstone.gemfire.internal.JarClassLoader.forName(JarClassLoader.java:568)
> at 
> com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:413)
> at 
> com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:389)
> at 
> com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:384)
> ... 15 more
> {panel}
> The wrong error message is being displayed.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (GEODE-1575) Unhandled NoClassDefFound Exception when creating regions

2016-06-21 Thread Kevin Duling (JIRA)
Kevin Duling created GEODE-1575:
---

 Summary: Unhandled NoClassDefFound Exception when creating regions
 Key: GEODE-1575
 URL: https://issues.apache.org/jira/browse/GEODE-1575
 Project: Geode
  Issue Type: Bug
  Components: configuration
Reporter: Kevin Duling


{panel:title=gfsh}
Executing - create region --name=replicatedRegion --type=REPLICATE 
--cache-loader=com.example.TestCacheLoader
Could not process command due to GemFire error. 
java.lang.ClassNotFoundException cannot be cast to 
com.gemstone.gemfire.management.internal.cli.functions.CliFunctionResult
{panel}

{panel:title=server.log}
[fine 2016/06/21 10:02:02.745 PDT host1-server1  
tid=0x41] Replying with exception: ReplyMessage processorId=13 from null with 
exception com.gemstone.gemfire.distributed.internal.ReplyE
xception: java.lang.NoClassDefFoundError: org/apache/log4j/Logger
com.gemstone.gemfire.distributed.internal.ReplyException: 
java.lang.NoClassDefFoundError: org/apache/log4j/Logger
at 
com.gemstone.gemfire.internal.cache.MemberFunctionStreamingMessage.process(MemberFunctionStreamingMessage.java:248)
at 
com.gemstone.gemfire.distributed.internal.DistributionMessage.scheduleAction(DistributionMessage.java:379)
at 
com.gemstone.gemfire.distributed.internal.DistributionMessage$1.run(DistributionMessage.java:450)
at 
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at 
com.gemstone.gemfire.distributed.internal.DistributionManager.runUntilShutdown(DistributionManager.java:611)
at 
com.gemstone.gemfire.distributed.internal.DistributionManager$9$1.run(DistributionManager.java:1071)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.lang.NoClassDefFoundError: org/apache/log4j/Logger
at 
io.pivotal.support.cases.server.TestCacheLoader.(TestCacheLoader.java:14)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:348)
at 
com.gemstone.gemfire.internal.ClassPathLoader.forName(ClassPathLoader.java:408)
at 
com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.forName(RegionCreateFunction.java:386)
at 
com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.createRegion(RegionCreateFunction.java:312)
at 
com.gemstone.gemfire.management.internal.cli.functions.RegionCreateFunction.execute(RegionCreateFunction.java:89)
at 
com.gemstone.gemfire.internal.cache.MemberFunctionStreamingMessage.process(MemberFunctionStreamingMessage.java:194)
... 7 more
Caused by: java.lang.ClassNotFoundException: org.apache.log4j.Logger
at 
com.gemstone.gemfire.internal.JarClassLoader.forName(JarClassLoader.java:568)
at 
com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:413)
at 
com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:389)
at 
com.gemstone.gemfire.internal.JarClassLoader.loadClass(JarClassLoader.java:384)
... 15 more
{panel}

The wrong error message is being displayed.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (GEODE-1560) CI Failure: LocatorDUnitTest.testMultipleLocatorsRestartingAtSameTime NPE

2016-06-21 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-1560?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15342125#comment-15342125
 ] 

ASF subversion and git services commented on GEODE-1560:


Commit 2df86745a72105f7dae8f8b85fedf105ad207148 in incubator-geode's branch 
refs/heads/feature/GEODE-1565 from [~hitesh.khamesra]
[ https://git-wip-us.apache.org/repos/asf?p=incubator-geode.git;h=2df8674 ]

GEODE-1560 test now explicitly set mcast-port to 0.

Test was picking mcast port from gemfire.properties file.


> CI Failure: LocatorDUnitTest.testMultipleLocatorsRestartingAtSameTime NPE
> -
>
> Key: GEODE-1560
> URL: https://issues.apache.org/jira/browse/GEODE-1560
> Project: Geode
>  Issue Type: Bug
>  Components: membership
>Reporter: Scott Jewell
>Assignee: Hitesh Khamesra
>  Labels: CI
>
> It appears to be perhaps a tainted environment or multiple tests running
> concurrently interfering with each other?  Bottom of log shows this test
> experiencing multiple failures.
> Error Message
> java.lang.NullPointerException
> Stacktrace
> java.lang.NullPointerException
>   at 
> com.gemstone.gemfire.distributed.LocatorDUnitTest.testMultipleLocatorsRestartingAtSameTime(LocatorDUnitTest.java:1579)
>   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>   at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
>   at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>   at java.lang.reflect.Method.invoke(Method.java:498)
>   at 
> org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
>   at 
> org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
>   at 
> org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
>   at 
> org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
>   at 
> org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
>   at 
> org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
>   at org.junit.rules.TestWatcher$1.evaluate(TestWatcher.java:55)
>   at org.junit.rules.RunRules.evaluate(RunRules.java:20)
>   at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
>   at 
> org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
>   at 
> org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
>   at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
>   at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
>   at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
>   at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
>   at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
>   at 
> org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
>   at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
>   at 
> org.gradle.api.internal.tasks.testing.junit.JUnitTestClassExecuter.runTestClass(JUnitTestClassExecuter.java:112)
>   at 
> org.gradle.api.internal.tasks.testing.junit.JUnitTestClassExecuter.execute(JUnitTestClassExecuter.java:56)
>   at 
> org.gradle.api.internal.tasks.testing.junit.JUnitTestClassProcessor.processTestClass(JUnitTestClassProcessor.java:66)
>   at 
> org.gradle.api.internal.tasks.testing.SuiteTestClassProcessor.processTestClass(SuiteTestClassProcessor.java:51)
>   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>   at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
>   at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>   at java.lang.reflect.Method.invoke(Method.java:498)
>   at 
> org.gradle.messaging.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:35)
>   at 
> org.gradle.messaging.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:24)
>   at 
> org.gradle.messaging.dispatch.ContextClassLoaderDispatch.dispatch(ContextClassLoaderDispatch.java:32)
>   at 
> org.gradle.messaging.dispatch.ProxyDispatchAdapter$DispatchingInvocationHandler.invoke(ProxyDispatchAdapter.java:93)
>   at com.sun.proxy.$Proxy2.processTestClass(Unknown Source)
>   at 
> org.gradle.api.internal.tasks.testing.worker.TestWorker.processTestClass(TestWorker.java:109)
>   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>   at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
>   at 
> 

[jira] [Commented] (GEODE-1549) Incorrect "Help" hyperlink in pulse

2016-06-21 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-1549?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15342156#comment-15342156
 ] 

ASF GitHub Bot commented on GEODE-1549:
---

Github user asfgit closed the pull request at:

https://github.com/apache/incubator-geode/pull/161


> Incorrect "Help" hyperlink in pulse
> ---
>
> Key: GEODE-1549
> URL: https://issues.apache.org/jira/browse/GEODE-1549
> Project: Geode
>  Issue Type: Bug
>  Components: pulse
>Reporter: Srikanth Manvi
>Assignee: Srikanth Manvi
>Priority: Minor
>
> When we click on "Help" link on the top right corner in pulse we get 
> PageNotFound



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (GEODE-1549) Incorrect "Help" hyperlink in pulse

2016-06-21 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-1549?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15342153#comment-15342153
 ] 

ASF subversion and git services commented on GEODE-1549:


Commit 9ccb4d5bb5897c9c01d7b6eb59f4c137865cd263 in incubator-geode's branch 
refs/heads/develop from [~Srikanth Manvi]
[ https://git-wip-us.apache.org/repos/asf?p=incubator-geode.git;h=9ccb4d5 ]

GEODE-1549: Correct "Help" hyperlink in pulse

Corrected the links to point to geode docs instead of gemfire
This closes #161


> Incorrect "Help" hyperlink in pulse
> ---
>
> Key: GEODE-1549
> URL: https://issues.apache.org/jira/browse/GEODE-1549
> Project: Geode
>  Issue Type: Bug
>  Components: pulse
>Reporter: Srikanth Manvi
>Assignee: Srikanth Manvi
>Priority: Minor
>
> When we click on "Help" link on the top right corner in pulse we get 
> PageNotFound



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (GEODE-1549) Incorrect "Help" hyperlink in pulse

2016-06-21 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-1549?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15342147#comment-15342147
 ] 

ASF GitHub Bot commented on GEODE-1549:
---

Github user jinmeiliao commented on the issue:

https://github.com/apache/incubator-geode/pull/161
  
I'll pull this


> Incorrect "Help" hyperlink in pulse
> ---
>
> Key: GEODE-1549
> URL: https://issues.apache.org/jira/browse/GEODE-1549
> Project: Geode
>  Issue Type: Bug
>  Components: pulse
>Reporter: Srikanth Manvi
>Assignee: Srikanth Manvi
>Priority: Minor
>
> When we click on "Help" link on the top right corner in pulse we get 
> PageNotFound



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (GEODE-117) gfsh put ignores --skip-if-exists flag

2016-06-21 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-117?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15342143#comment-15342143
 ] 

ASF subversion and git services commented on GEODE-117:
---

Commit 91f92a49726be20dd3000738f77b3b383518adc2 in incubator-geode's branch 
refs/heads/develop from [~kduling]
[ https://git-wip-us.apache.org/repos/asf?p=incubator-geode.git;h=91f92a4 ]

GEODE-117 - gfsh put ignores --skip-if-exists flag

Fixed test, which erroneously reported that the --skip-if-exists flag is 
honored.
Implemented check for flag within the put operation.

This closes #166


> gfsh put ignores --skip-if-exists flag
> --
>
> Key: GEODE-117
> URL: https://issues.apache.org/jira/browse/GEODE-117
> Project: Geode
>  Issue Type: Bug
>  Components: gfsh
>Reporter: Dan Smith
>Assignee: Kevin Duling
>  Labels: gfsh, starter
> Fix For: 1.0.0-incubating.M3
>
>
> Someone hit this on a forum post:
> https://support.pivotal.io/hc/communities/public/questions/204414098-put-in-gfsh-doesn-t-honor-skip-if-exists-true-flag-?flash_digest=f2441b8a96ac363d6da205c6f90a62035b1a3c21
> I looked into the code, and it looks like the flag gets lost somewhere along 
> the way. If you look at DataCommandFunction.put, it has a putIfAbsent flag, 
> but that flag is not used; the function just does a normal put.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (GEODE-117) gfsh put ignores --skip-if-exists flag

2016-06-21 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-117?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15342145#comment-15342145
 ] 

ASF GitHub Bot commented on GEODE-117:
--

Github user asfgit closed the pull request at:

https://github.com/apache/incubator-geode/pull/166


> gfsh put ignores --skip-if-exists flag
> --
>
> Key: GEODE-117
> URL: https://issues.apache.org/jira/browse/GEODE-117
> Project: Geode
>  Issue Type: Bug
>  Components: gfsh
>Reporter: Dan Smith
>Assignee: Kevin Duling
>  Labels: gfsh, starter
> Fix For: 1.0.0-incubating.M3
>
>
> Someone hit this on a forum post:
> https://support.pivotal.io/hc/communities/public/questions/204414098-put-in-gfsh-doesn-t-honor-skip-if-exists-true-flag-?flash_digest=f2441b8a96ac363d6da205c6f90a62035b1a3c21
> I looked into the code, and it looks like the flag gets lost somewhere along 
> the way. If you look at DataCommandFunction.put, it has a putIfAbsent flag, 
> but that flag is not used; the function just does a normal put.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (GEODE-1408) gfsh help alter region output defaults say "__DEFAULT__"

2016-06-21 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-1408?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15342122#comment-15342122
 ] 

ASF subversion and git services commented on GEODE-1408:


Commit 858bc35445a861acdcc2d2f678466d903987cbba in incubator-geode's branch 
refs/heads/feature/GEODE-1565 from [~apa...@the9muses.net]
[ https://git-wip-us.apache.org/repos/asf?p=incubator-geode.git;h=858bc35 ]

GEODE-1567: update golden-help-offline for HelpCommandsIntegrationTest

* update golden-help-offline.properties to match changes made for GEODE-985 and 
GEODE-1408
* restore geode.properties back to gemfire.properties in CliStrings until 
GEODE-1466 is completed
* restore GeodeRedisServer back to GemFireRedisServer in CliStrings until 
GEODE-1566 is completed
* fix typo for cacheLoader default in CreateAlterDestroyRegionCommands from 
"help" to "null"


> gfsh help alter region output defaults say "__DEFAULT__"
> 
>
> Key: GEODE-1408
> URL: https://issues.apache.org/jira/browse/GEODE-1408
> Project: Geode
>  Issue Type: Bug
>  Components: docs, gfsh
>Reporter: Karen Smoler Miller
>Assignee: Grace Meilen
> Fix For: 1.0.0-incubating.M3
>
>
> To observe, see the output of `gfsh help alter region`.
> The specification of the default for several options is the string 
> {noformat}__DEFAULT__{noformat}  
> This string is wrong.
> The options that show this string are
>  - entry-idle-time-expiration-action
>  - entry-time-to-live-expiration-action
>  - region-idle-time-expiration-action
>  - region-time-to-live-expiration-action
>  - cache-loader
>  - cache-writer



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (GEODE-985) gfsh help text: rebrand for open source

2016-06-21 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-985?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15342121#comment-15342121
 ] 

ASF subversion and git services commented on GEODE-985:
---

Commit 858bc35445a861acdcc2d2f678466d903987cbba in incubator-geode's branch 
refs/heads/feature/GEODE-1565 from [~apa...@the9muses.net]
[ https://git-wip-us.apache.org/repos/asf?p=incubator-geode.git;h=858bc35 ]

GEODE-1567: update golden-help-offline for HelpCommandsIntegrationTest

* update golden-help-offline.properties to match changes made for GEODE-985 and 
GEODE-1408
* restore geode.properties back to gemfire.properties in CliStrings until 
GEODE-1466 is completed
* restore GeodeRedisServer back to GemFireRedisServer in CliStrings until 
GEODE-1566 is completed
* fix typo for cacheLoader default in CreateAlterDestroyRegionCommands from 
"help" to "null"


> gfsh help text: rebrand for open source
> ---
>
> Key: GEODE-985
> URL: https://issues.apache.org/jira/browse/GEODE-985
> Project: Geode
>  Issue Type: Bug
>  Components: docs, gfsh
>Reporter: Dave Barnes
>Assignee: Grace Meilen
> Fix For: 1.0.0-incubating.M3
>
>
> The gfsh help text is full of Gemfire references. Needs rewriting to be 
> generic to both Gemfire and Geode.
> See 
> gemfire-core/src/main/java/com/gemstone/gemfire/management/internal/cli/i18n/CliStrings.java



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (GEODE-11) Lucene Integration

2016-06-21 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-11?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15342119#comment-15342119
 ] 

ASF subversion and git services commented on GEODE-11:
--

Commit 02964761656928b61eb8abb6e6029ef12e05733c in incubator-geode's branch 
refs/heads/feature/GEODE-1565 from [~agingade]
[ https://git-wip-us.apache.org/repos/asf?p=incubator-geode.git;h=0296476 ]

GEODE-11: Added changes to Lucene AEQ, to propagate expiration destroy events 
(by setting the flag forwardExpirationDestroy()).


> Lucene Integration
> --
>
> Key: GEODE-11
> URL: https://issues.apache.org/jira/browse/GEODE-11
> Project: Geode
>  Issue Type: New Feature
>  Components: querying
>Reporter: Dan Smith
>Assignee: xiaojian zhou
>
> This is a feature that has been under development for GemFire but was not 
> part of the initial drop of code for geode.
> Allow Lucene indexes to be stored in Geode regions allowing users to do text 
> searches on data stored in Geode. 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (GEODE-1566) Branding: GemFireRedisServer should be renamed as GeodeRedisServer

2016-06-21 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-1566?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15342124#comment-15342124
 ] 

ASF subversion and git services commented on GEODE-1566:


Commit 858bc35445a861acdcc2d2f678466d903987cbba in incubator-geode's branch 
refs/heads/feature/GEODE-1565 from [~apa...@the9muses.net]
[ https://git-wip-us.apache.org/repos/asf?p=incubator-geode.git;h=858bc35 ]

GEODE-1567: update golden-help-offline for HelpCommandsIntegrationTest

* update golden-help-offline.properties to match changes made for GEODE-985 and 
GEODE-1408
* restore geode.properties back to gemfire.properties in CliStrings until 
GEODE-1466 is completed
* restore GeodeRedisServer back to GemFireRedisServer in CliStrings until 
GEODE-1566 is completed
* fix typo for cacheLoader default in CreateAlterDestroyRegionCommands from 
"help" to "null"


> Branding: GemFireRedisServer should be renamed as GeodeRedisServer
> --
>
> Key: GEODE-1566
> URL: https://issues.apache.org/jira/browse/GEODE-1566
> Project: Geode
>  Issue Type: Improvement
>  Components: general
>Reporter: Kirk Lund
>Assignee: Kirk Lund
>  Labels: branding
>
> This changes the User API from com.gemstone.gemfire.redis.GemFireRedisServer 
> to com.gemstone.gemfire.redis.GeodeRedisServer.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (GEODE-1565) GemfireDataCommandsDUnitTest fails when executed over HTTP

2016-06-21 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-1565?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15342127#comment-15342127
 ] 

ASF subversion and git services commented on GEODE-1565:


Commit 539696d5d70114e56db6e62ae6e25f32a572eeac in incubator-geode's branch 
refs/heads/feature/GEODE-1565 from [~apa...@the9muses.net]
[ https://git-wip-us.apache.org/repos/asf?p=incubator-geode.git;h=539696d ]

Merge remote-tracking branch 'origin/develop' into feature/GEODE-1565


> GemfireDataCommandsDUnitTest fails when executed over HTTP
> --
>
> Key: GEODE-1565
> URL: https://issues.apache.org/jira/browse/GEODE-1565
> Project: Geode
>  Issue Type: Bug
>  Components: gfsh
>Reporter: Kirk Lund
>Assignee: Kirk Lund
>
> CommandOverHttpDUnitTest executes GFSH command dunit tests over HTTP by 
> specifying:
> {noformat}
>   @ClassRule
>   public static ProvideSystemProperty provideSystemProperty = new 
> ProvideSystemProperty(CliCommandTestBase.USE_HTTP_SYSTEM_PROPERTY, "true");
> {noformat}
> Executing GemfireDataCommandsDUnitTest directly passes, but executing it over 
> HTTP results in several failures (possibly introduced by fix for GEODE-835):
> * testRebalanceCommandForSimulateWithNoMember
> * testRebalanceCommandForSimulate
> * testRebalanceForExcludeRegionFunction
> * testRebalanceForIncludeRegionFunction
> * testSimulateForEntireDS
> Note: this bug does not reproduce on the command-line via:
> ./gradlew geode-web:distributedTest 
> -DdistributedTest.single=CommandOverHttpDUnitTest
> ...because distributedTest excludes the above tests because they are now 
> annotated with FlakyTest.
> The fix for GEODE-835 (replace geode-joptsimple with dependency on 
> jopt-simple release) is required so GemfireDataCommandsDUnitTest should be 
> removed from CommandOverHttpDUnitTest until this ticket can be fixed.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (GEODE-117) gfsh put ignores --skip-if-exists flag

2016-06-21 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-117?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15342128#comment-15342128
 ] 

ASF GitHub Bot commented on GEODE-117:
--

Github user jinmeiliao commented on the issue:

https://github.com/apache/incubator-geode/pull/166
  
+1. I'll pull this in.


> gfsh put ignores --skip-if-exists flag
> --
>
> Key: GEODE-117
> URL: https://issues.apache.org/jira/browse/GEODE-117
> Project: Geode
>  Issue Type: Bug
>  Components: gfsh
>Reporter: Dan Smith
>Assignee: Kevin Duling
>  Labels: gfsh, starter
> Fix For: 1.0.0-incubating.M3
>
>
> Someone hit this on a forum post:
> https://support.pivotal.io/hc/communities/public/questions/204414098-put-in-gfsh-doesn-t-honor-skip-if-exists-true-flag-?flash_digest=f2441b8a96ac363d6da205c6f90a62035b1a3c21
> I looked into the code, and it looks like the flag gets lost somewhere along 
> the way. If you look at DataCommandFunction.put, it has a putIfAbsent flag, 
> but that flag is not used; the function just does a normal put.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (GEODE-1567) HelpCommandsIntegrationTest fails after rebranding GFSH help from GemFire to Geode

2016-06-21 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-1567?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15342120#comment-15342120
 ] 

ASF subversion and git services commented on GEODE-1567:


Commit 858bc35445a861acdcc2d2f678466d903987cbba in incubator-geode's branch 
refs/heads/feature/GEODE-1565 from [~apa...@the9muses.net]
[ https://git-wip-us.apache.org/repos/asf?p=incubator-geode.git;h=858bc35 ]

GEODE-1567: update golden-help-offline for HelpCommandsIntegrationTest

* update golden-help-offline.properties to match changes made for GEODE-985 and 
GEODE-1408
* restore geode.properties back to gemfire.properties in CliStrings until 
GEODE-1466 is completed
* restore GeodeRedisServer back to GemFireRedisServer in CliStrings until 
GEODE-1566 is completed
* fix typo for cacheLoader default in CreateAlterDestroyRegionCommands from 
"help" to "null"


> HelpCommandsIntegrationTest fails after rebranding GFSH help from GemFire to 
> Geode
> --
>
> Key: GEODE-1567
> URL: https://issues.apache.org/jira/browse/GEODE-1567
> Project: Geode
>  Issue Type: Bug
>  Components: tests
>Reporter: Kirk Lund
>Assignee: Kirk Lund
>
> HelpCommandsIntegrationTest compares GFSH help output to golden file in 
> resources. The resource golden-help-offline.properties needs to be updated.
> A couple changes in GFSH help also need to be restored back to gemfire until 
> other tickets are completed:
> * geode.properties (GEODE-1466)
> * GeodeRedisServer (GEODE-1566)
> Related typo in CreateAlterDestroyRegionCommands: default for cacheLoader 
> should be "null" instead of "help".



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (GEODE-1557) LuceneQueriesPeerPRDUnitTest.returnCorrectResultsAfterRebalance fails with suspect string error

2016-06-21 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-1557?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15342126#comment-15342126
 ] 

ASF subversion and git services commented on GEODE-1557:


Commit 83c7c661648c9fd7b0dac054dde60e2ae1ef12cd in incubator-geode's branch 
refs/heads/feature/GEODE-1565 from [~adharmakkan]
[ https://git-wip-us.apache.org/repos/asf?p=incubator-geode.git;h=83c7c66 ]

GEODE-1557: Not logging BucketNotFoundException

Not logging BucketNotFoundException as an error in LuceneEventLister and added
a test shouldIgnoreBucketNotFoundException to verify it

This closes #168


> LuceneQueriesPeerPRDUnitTest.returnCorrectResultsAfterRebalance fails with 
> suspect string error
> ---
>
> Key: GEODE-1557
> URL: https://issues.apache.org/jira/browse/GEODE-1557
> Project: Geode
>  Issue Type: Bug
>  Components: lucene
>Reporter: Aparna Dharmakkan
>
> This test failed with the following error
> {noformat}
> Suspicious strings were written to the log during this run.
> Fix the strings or use IgnoredException.addIgnoredException to ignore.
> ---
> Found suspect string in log4j at line 61460
> [error 2016/06/16 12:02:33.844 PDT  GatewaySender_AsyncEventQueue_index#_region_0> tid=1453] Unable to save to 
> lucene index
> com.gemstone.gemfire.internal.cache.BucketNotFoundException: User bucket was 
> not found for region Partitioned Region @149884aa [path='/region'; 
> dataPolicy=PARTITION; prId=92; isDestroyed=false; isClosed=false; 
> retryTimeout=360; serialNumber=10558; partition 
> attributes=PartitionAttributes@1660363202[redundantCopies=0;localMaxMemory=409;totalMaxMemory=2147483647;totalNumBuckets=113;partitionResolver=null;colocatedWith=null;recoveryDelay=-1;startupRecoveryDelay=0;FixedPartitionAttributes=null;partitionListeners=null];
>  on VM 192.168.1.17(10580):1025]key 1 callbackarg null
>   at 
> com.gemstone.gemfire.cache.lucene.internal.PartitionedRepositoryManager.getRepository(PartitionedRepositoryManager.java:102)
>   at 
> com.gemstone.gemfire.cache.lucene.internal.LuceneEventListener.processEvents(LuceneEventListener.java:72)
>   at 
> com.gemstone.gemfire.internal.cache.wan.GatewaySenderEventCallbackDispatcher.dispatchBatch(GatewaySenderEventCallbackDispatcher.java:168)
>   at 
> com.gemstone.gemfire.internal.cache.wan.GatewaySenderEventCallbackDispatcher.dispatchBatch(GatewaySenderEventCallbackDispatcher.java:87)
>   at 
> com.gemstone.gemfire.internal.cache.wan.AbstractGatewaySenderEventProcessor.processQueue(AbstractGatewaySenderEventProcessor.java:613)
>   at 
> com.gemstone.gemfire.internal.cache.wan.AbstractGatewaySenderEventProcessor.run(AbstractGatewaySenderEventProcessor.java:1058)
> ---
> {noformat}
> It looks like this test is doing a rebalance, so it may be expected that 
> buckets are not found when writing to the lucent index. The system should 
> probably not log an error just because a bucket has moved.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (GEODE-1568) PreloadedRegionTestCase was recently enabled as a test but fails

2016-06-21 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-1568?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15342118#comment-15342118
 ] 

ASF subversion and git services commented on GEODE-1568:


Commit b53d28ff6696b5753c4642fc910b66042a4cc014 in incubator-geode's branch 
refs/heads/feature/GEODE-1565 from [~apa...@the9muses.net]
[ https://git-wip-us.apache.org/repos/asf?p=incubator-geode.git;h=b53d28f ]

GEODE-1568: disable PreloadedRegionTestCase with @Ignore


> PreloadedRegionTestCase was recently enabled as a test but fails
> 
>
> Key: GEODE-1568
> URL: https://issues.apache.org/jira/browse/GEODE-1568
> Project: Geode
>  Issue Type: Bug
>  Components: tests
>Reporter: Kirk Lund
>Assignee: Kirk Lund
>
> PreloadedRegionTestCase was only recently "enabled" to run as a test by the 
> fix for GEODE-1374 (gradle changes for FlakyTests) and the fix for GEODE-837 
> (upgrading all dunit tests to JUnit4).
> Prior to that commit, it was not being executed as a DistributedTest. The 
> python script we used for GEODE-837 auto-applied the 
> "@Category(DistributedTest.class)" and then the gradle change for GEODE-1374 
> started executing classes categorized with DistributedTest even if the class 
> name doesn't match *DUnitTest.
> PreloadedRegionTestCase was added for GemFire 3.0 but does not currently have 
> any subclasses, so it may have been an unused class for an unknown period of 
> time. 
> If no other tests provide coverage that this one provides, then it should be 
> fixed and re-enabled.
> The following tests are currently failing:
> * testTXNonblockingGetInitialImage
> * testNonblockingGetInitialImage
> Failure stack for testTXNonblockingGetInitialImage:
> {noformat}
> com.gemstone.gemfire.test.dunit.RMIException: While invoking 
> com.gemstone.gemfire.cache30.MultiVMRegionTestCase$205.runRepeatingIfNecessary
>  in VM 2 running on Host 192.168.1.17 with 4 VMs
>   at com.gemstone.gemfire.test.dunit.VM.invoke(VM.java:389)
>   at 
> com.gemstone.gemfire.test.dunit.VM.invokeRepeatingIfNecessary(VM.java:334)
>   at 
> com.gemstone.gemfire.cache30.MultiVMRegionTestCase.testTXNonblockingGetInitialImage(MultiVMRegionTestCase.java:4850)
>   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>   at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
>   at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>   at java.lang.reflect.Method.invoke(Method.java:497)
>   at 
> org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
>   at 
> org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
>   at 
> org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
>   at 
> org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
>   at 
> org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
>   at 
> org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
>   at org.junit.rules.TestWatcher$1.evaluate(TestWatcher.java:55)
>   at org.junit.rules.RunRules.evaluate(RunRules.java:20)
>   at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
>   at 
> org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
>   at 
> com.intellij.junit4.JUnit4TestRunnerUtil$IgnoreIgnoredTestJUnit4ClassRunner.runChild(JUnit4TestRunnerUtil.java:356)
>   at 
> org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
>   at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
>   at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
>   at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
>   at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
>   at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
>   at 
> org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
>   at 
> org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
>   at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
>   at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
>   at 
> com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:119)
>   at 
> com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:42)
>   at 
> com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:234)
>   at 
> com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:74)
>   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>   

[jira] [Commented] (GEODE-1466) Branding: rename gemfire.properties file to geode.properties file

2016-06-21 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-1466?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15342123#comment-15342123
 ] 

ASF subversion and git services commented on GEODE-1466:


Commit 858bc35445a861acdcc2d2f678466d903987cbba in incubator-geode's branch 
refs/heads/feature/GEODE-1565 from [~apa...@the9muses.net]
[ https://git-wip-us.apache.org/repos/asf?p=incubator-geode.git;h=858bc35 ]

GEODE-1567: update golden-help-offline for HelpCommandsIntegrationTest

* update golden-help-offline.properties to match changes made for GEODE-985 and 
GEODE-1408
* restore geode.properties back to gemfire.properties in CliStrings until 
GEODE-1466 is completed
* restore GeodeRedisServer back to GemFireRedisServer in CliStrings until 
GEODE-1566 is completed
* fix typo for cacheLoader default in CreateAlterDestroyRegionCommands from 
"help" to "null"


> Branding: rename gemfire.properties file to geode.properties file
> -
>
> Key: GEODE-1466
> URL: https://issues.apache.org/jira/browse/GEODE-1466
> Project: Geode
>  Issue Type: Improvement
>  Components: docs
>Reporter: Nitin Lamba
>  Labels: branding
>
> Currently, all runtime properties defined at startup are defined in 
> gemfire.properties file and the namespace also starts with gemfire. It is 
> desirable to rename this to geode.
> This will affect multiple modules (a lot of string literals) across the 
> project and may create config migration issues later on, hence is important 
> for the 1.0 release.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (GEODE-1571) Client security should be able to use Resource:Operation permissions

2016-06-21 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-1571?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15342096#comment-15342096
 ] 

ASF subversion and git services commented on GEODE-1571:


Commit 756d8216e65d9d56b8f348f91a748a07807e6dcd in incubator-geode's branch 
refs/heads/feature/GEODE-1571 from [~kduling]
[ https://git-wip-us.apache.org/repos/asf?p=incubator-geode.git;h=756d821 ]

Merge branch 'feature/GEODE-1571' of github.com:jinmeiliao/incubator-geode into 
feature/GEODE-1571


> Client security should be able to use Resource:Operation permissions
> 
>
> Key: GEODE-1571
> URL: https://issues.apache.org/jira/browse/GEODE-1571
> Project: Geode
>  Issue Type: Sub-task
>  Components: security
>Reporter: Swapnil Bawaskar
>
> While providing role based access control for JMX and CLI, noun-verby 
> permission of the form of RESOURCE:OPERATION[:REGION] have been introduced. 
> Please refer to the wiki for more details: 
> https://cwiki.apache.org/confluence/display/GEODE/How+to+secure+JMX+and+GFSH
> We now need to provide a new interface so that client-server security can 
> also use these noun-verby permissions.
> To make Geode security "integrated", users will only have to provide an 
> implementation of this new interface and it will work for JMX, gfsh and 
> client-server.
> {{com.gemstone.gemfire.security.AccessControl}} should be deprecated once we 
> have this new interface.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (GEODE-1571) Client security should be able to use Resource:Operation permissions

2016-06-21 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-1571?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15342095#comment-15342095
 ] 

ASF subversion and git services commented on GEODE-1571:


Commit 756d8216e65d9d56b8f348f91a748a07807e6dcd in incubator-geode's branch 
refs/heads/feature/GEODE-1571 from [~kduling]
[ https://git-wip-us.apache.org/repos/asf?p=incubator-geode.git;h=756d821 ]

Merge branch 'feature/GEODE-1571' of github.com:jinmeiliao/incubator-geode into 
feature/GEODE-1571


> Client security should be able to use Resource:Operation permissions
> 
>
> Key: GEODE-1571
> URL: https://issues.apache.org/jira/browse/GEODE-1571
> Project: Geode
>  Issue Type: Sub-task
>  Components: security
>Reporter: Swapnil Bawaskar
>
> While providing role based access control for JMX and CLI, noun-verby 
> permission of the form of RESOURCE:OPERATION[:REGION] have been introduced. 
> Please refer to the wiki for more details: 
> https://cwiki.apache.org/confluence/display/GEODE/How+to+secure+JMX+and+GFSH
> We now need to provide a new interface so that client-server security can 
> also use these noun-verby permissions.
> To make Geode security "integrated", users will only have to provide an 
> implementation of this new interface and it will work for JMX, gfsh and 
> client-server.
> {{com.gemstone.gemfire.security.AccessControl}} should be deprecated once we 
> have this new interface.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (GEODE-33) Create project examples

2016-06-21 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/GEODE-33?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15341254#comment-15341254
 ] 

ASF subversion and git services commented on GEODE-33:
--

Commit a31b8482a3306856f9e97459649ac38d0db709bf in incubator-geode's branch 
refs/heads/feature/GEODE-33 from William Markito
[ https://git-wip-us.apache.org/repos/asf?p=incubator-geode.git;h=a31b848 ]

[GEODE-33] Fixed hardcoded path for resources on tests
- Included rat exclusion rules


> Create project examples
> ---
>
> Key: GEODE-33
> URL: https://issues.apache.org/jira/browse/GEODE-33
> Project: Geode
>  Issue Type: Improvement
>  Components: docs, general, web-content
>Reporter: William Markito Oliveira
>  Labels: gsoc2016
> Fix For: 1.0.0-incubating.M3
>
>
> Currently the project doesn't have examples.
> Ideally  it should be created as a separated project, include tests and be 
> used as part of build process tests as well.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)