Re: Need a way to limit scanning of deployed jars

2017-01-09 Thread Swapnil Bawaskar
+1. Let's deploy all functions while preventing a NoClassDefFoundError On Mon, Jan 9, 2017 at 5:01 PM, Anthony Baker wrote: > > > Normally, I'd respond by saying "well then don't include that Function in > > the jar that you're deploying.” > > > > ^^^ Yep. > > If we need more complicated semant

Re: Review Request 55360: GEODE-2288 - Handle null values in the lucene serializer

2017-01-09 Thread xiaojian zhou
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/55360/#review161038 --- Ship it! Ship It! - xiaojian zhou On Jan. 9, 2017, 10:50 p.m

[jira] [Commented] (GEODE-2049) unit of measure wrong in DistributionStats tcpFinalCheck statitistics

2017-01-09 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2049?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15813815#comment-15813815 ] ASF GitHub Bot commented on GEODE-2049: --- GitHub user ameybarve15 opened a pull reque

[GitHub] geode pull request #332: GEODE-2049: Replaced unit of measure for all of the...

2017-01-09 Thread ameybarve15
GitHub user ameybarve15 opened a pull request: https://github.com/apache/geode/pull/332 GEODE-2049: Replaced unit of measure for all of the tcpfinalCheck statistics from currently "nanoseconds" to be "messages". You can merge this pull request into a Git repository by running:

Re: ClassLoader isolation of application code

2017-01-09 Thread Kirk Lund
What about hot-redploy only? 1.b) Hot-redploy variation This is the case where the user wants to have only one realm of "application code" deployed but be able to update application code and 3rd party dependencies without restarting the server. For example, one Function might use a 3rd party depe

Re: Review Request 55351: GEODE-2285: fix some typos in GFSH code

2017-01-09 Thread Dave Barnes
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/55351/#review161020 --- Ship it! Ship It! - Dave Barnes On Jan. 9, 2017, 7:18 p.m.,

Re: ClassLoader isolation of application code

2017-01-09 Thread Michael Stolz
Given that we are heading toward microservices architectures wherein isolation of data to bounded contexts is of critical importance, I think that the kind of multi-tenancy we're talking about here is on the decline. We're probably well off going after single tenant or departmental grids for now a

Re: Need a way to limit scanning of deployed jars

2017-01-09 Thread Anthony Baker
> Normally, I'd respond by saying "well then don't include that Function in > the jar that you're deploying.” > ^^^ Yep. If we need more complicated semantics than “deploy everything” then we need an application descriptor of some sort. Anthony

ClassLoader isolation of application code

2017-01-09 Thread Kirk Lund
I have some questions from the previous discussion thread about adding in some sort of application isolation feature to Apache Geode. "application code" -- defined as a Function or plain old application code that uses the Geode APIs including Cache and Region There is more than one level of code

Re: Review Request 55360: GEODE-2288 - Handle null values in the lucene serializer

2017-01-09 Thread Jason Huynh
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/55360/#review161013 --- Ship it! Ship It! - Jason Huynh On Jan. 9, 2017, 10:50 p.m.,

[jira] [Updated] (GEODE-2291) Invalidates on a region with a lucene index do not update the index

2017-01-09 Thread Dan Smith (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2291?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Dan Smith updated GEODE-2291: - Attachment: lucene_invalidate_test.diff Attaching a simple test that indicates that the invalidate is not

[jira] [Created] (GEODE-2291) Invalidates on a region with a lucene index do not update the index

2017-01-09 Thread Dan Smith (JIRA)
Dan Smith created GEODE-2291: Summary: Invalidates on a region with a lucene index do not update the index Key: GEODE-2291 URL: https://issues.apache.org/jira/browse/GEODE-2291 Project: Geode Is

[jira] [Resolved] (GEODE-1209) Support/Propagating eviction and expiration operation with AsycEventQueue.

2017-01-09 Thread Dan Smith (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-1209?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Dan Smith resolved GEODE-1209. -- Resolution: Fixed Fix Version/s: 1.0.0-incubating Based on the comments, this is already fixed. S

Re: Need a way to limit scanning of deployed jars

2017-01-09 Thread Kirk Lund
If a given Function uses a 3rd party dependency and they don't need to use that Function then I suppose it could save some system resources including PermGen space? Normally, I'd respond by saying "well then don't include that Function in the jar that you're deploying." On Mon, Jan 9, 2017 at 4:

Re: Need a way to limit scanning of deployed jars

2017-01-09 Thread Kirk Lund
I guess I would then want to separate this into two different requests: 1) prevent NoClassDefFoundErrors by using something like FastClasspathScanner or the utility Bruce mentioned -- we could simply treat the forced load/resolve of every .class as a bug 2) request way to avoid auto-registering e

Re: Need a way to limit scanning of deployed jars

2017-01-09 Thread Dan Smith
On Mon, Jan 9, 2017 at 4:18 PM, Kirk Lund wrote: > What about this use case: a user has a jar containing 100 Function classes > but only wants the deployer to register one of those, so they would still > need some way to specify which classes to automatically instantiate and > register during the

Re: Need a way to limit scanning of deployed jars

2017-01-09 Thread Kirk Lund
What about this use case: a user has a jar containing 100 Function classes but only wants the deployer to register one of those, so they would still need some way to specify which classes to automatically instantiate and register during the deploy. Right now, it would register all 100 classes. On

Re: New proposal for type definitons

2017-01-09 Thread Darrel Schneider
One correct to Jake's comment about PDX. The cost to access a field does not change if it is the last field. The cost of accessing every variable width field except the first (which is slightly cheaper) is the same. Pdx stores and index at the end of the blob so that it can lookup any of the fields

Re: Review Request 55272: GEDOE-2274: Add additional test cases for non colocated transactions

2017-01-09 Thread Darrel Schneider
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/55272/#review161004 --- Ship it! Ship It! - Darrel Schneider On Jan. 6, 2017, 8:55 a

Re: Review Request 54948: fix unsafe concurrent mods on expiredTombstones ArrayList

2017-01-09 Thread Darrel Schneider
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/54948/ --- (Updated Jan. 9, 2017, 3:47 p.m.) Review request for geode and anilkumar gingad

Re: Need a way to limit scanning of deployed jars

2017-01-09 Thread Jared Stewart
Another alternative might be to use the FastClasspathScanner project (see https://github.com/lukehutch/fast-classpath-scanner and http://stackoverflow.com/a/25354394/3988499 ). This library scans

Re: Need a way to limit scanning of deployed jars

2017-01-09 Thread Bruce Schuchardt
The geode-core test tree has utilities for parsing .class files. The AnalyzeSerializablesJUnitTest uses these utilities to find all DataSerializable classes in a jar or directory. Le 1/9/2017 à 3:22 PM, Kirk Lund a écrit : Please see GEODE-2290 "Provide way to limit scanning of deployed jars"

[jira] [Resolved] (GEODE-2285) GFSH CliStrings contains typos

2017-01-09 Thread Kirk Lund (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2285?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Kirk Lund resolved GEODE-2285. -- Resolution: Fixed Fix Version/s: 1.1.0 > GFSH CliStrings contains typos > ---

Need a way to limit scanning of deployed jars

2017-01-09 Thread Kirk Lund
Please see GEODE-2290 "Provide way to limit scanning of deployed jars" Currently if you use the GFSH command "deploy jar" the deployed jar will be scanned in such a way that the deployer will load and resolve every .class file in the jar file. The original intention of "deploy jar" was that only F

[jira] [Created] (GEODE-2290) Provide way to limit scanning of deployed jars

2017-01-09 Thread Kirk Lund (JIRA)
Kirk Lund created GEODE-2290: Summary: Provide way to limit scanning of deployed jars Key: GEODE-2290 URL: https://issues.apache.org/jira/browse/GEODE-2290 Project: Geode Issue Type: Improvement

[jira] [Commented] (GEODE-958) AgentUtilJUnitTest.testRESTApiExists failed with java.lang.AssertionError: GemFire REST API WAR File was not found

2017-01-09 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-958?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15813176#comment-15813176 ] ASF GitHub Bot commented on GEODE-958: -- Github user jaredjstewart commented on the iss

[GitHub] geode issue #331: GEODE-958: AgentUtilJunitTest doesn't require env var.

2017-01-09 Thread jaredjstewart
Github user jaredjstewart commented on the issue: https://github.com/apache/geode/pull/331 Precheckin passed --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so

[GitHub] geode pull request #331: GEODE-958: AgentUtilJunitTest doesn't require env v...

2017-01-09 Thread jaredjstewart
Github user jaredjstewart commented on a diff in the pull request: https://github.com/apache/geode/pull/331#discussion_r95268586 --- Diff: geode-core/src/main/java/org/apache/geode/management/internal/AgentUtil.java --- @@ -60,6 +60,7 @@ public String findWarLocation(String warFile

[jira] [Commented] (GEODE-958) AgentUtilJUnitTest.testRESTApiExists failed with java.lang.AssertionError: GemFire REST API WAR File was not found

2017-01-09 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-958?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15813158#comment-15813158 ] ASF GitHub Bot commented on GEODE-958: -- Github user jaredjstewart commented on a diff

[jira] [Commented] (GEODE-2142) Remove JSON.org dependency

2017-01-09 Thread Hitesh Khamesra (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2142?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15813141#comment-15813141 ] Hitesh Khamesra commented on GEODE-2142: We should see if we can use Jackson, whic

Re: Review Request 55346: GEODE-2279: Events may linger in HARegionQueue

2017-01-09 Thread Dan Smith
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/55346/#review160997 --- Ship it! What about that BlockingHARegionQueue.waitForData? Do

[jira] [Updated] (GEODE-2289) Request: add deploy resource command to deploy dependency jars and application specific files

2017-01-09 Thread Kirk Lund (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2289?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Kirk Lund updated GEODE-2289: - Description: Feature request: add a "deploy resource" command that can be used to deploy dependency jars

[jira] [Updated] (GEODE-2289) Request: add deploy resource command to deploy dependency jars and application specific files

2017-01-09 Thread Kirk Lund (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2289?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Kirk Lund updated GEODE-2289: - Summary: Request: add deploy resource command to deploy dependency jars and application specific files (w

[jira] [Updated] (GEODE-2289) Request: deploy resource command to deploy dependency jars and application specific files

2017-01-09 Thread Kirk Lund (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2289?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Kirk Lund updated GEODE-2289: - External issue URL: http://mail-archives.apache.org/mod_mbox/geode-dev/201701.mbox/%3CCANZq1gDhf7st27YsKCB

[jira] [Updated] (GEODE-2289) Request: deploy resource command to deploy dependency jars and application specific files

2017-01-09 Thread Kirk Lund (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2289?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Kirk Lund updated GEODE-2289: - Description: Feature request: add a "deploy resource" command that can be used to deploy dependency jars

Review Request 55360: GEODE-2288 - Handle null values in the lucene serializer

2017-01-09 Thread Dan Smith
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/55360/ --- Review request for geode and nabarun nag. Repository: geode Description -

[jira] [Created] (GEODE-2289) Request: deploy resource command to deploy dependency jars and application specific files

2017-01-09 Thread Kirk Lund (JIRA)
Kirk Lund created GEODE-2289: Summary: Request: deploy resource command to deploy dependency jars and application specific files Key: GEODE-2289 URL: https://issues.apache.org/jira/browse/GEODE-2289 Proje

[jira] [Assigned] (GEODE-2288) NPE when putting null values into a region with a lucene index

2017-01-09 Thread Dan Smith (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2288?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Dan Smith reassigned GEODE-2288: Assignee: Dan Smith > NPE when putting null values into a region with a lucene index >

[jira] [Created] (GEODE-2288) NPE when putting null values into a region with a lucene index

2017-01-09 Thread Dan Smith (JIRA)
Dan Smith created GEODE-2288: Summary: NPE when putting null values into a region with a lucene index Key: GEODE-2288 URL: https://issues.apache.org/jira/browse/GEODE-2288 Project: Geode Issue T

[jira] [Resolved] (GEODE-1155) CI failure: NetSearchMessagingDUnitTest.testNetSearchNormals

2017-01-09 Thread Bruce Schuchardt (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-1155?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bruce Schuchardt resolved GEODE-1155. - Resolution: Not A Problem removed from the Flaky test category > CI failure: NetSearchMes

[jira] [Commented] (GEODE-1155) CI failure: NetSearchMessagingDUnitTest.testNetSearchNormals

2017-01-09 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-1155?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15813049#comment-15813049 ] ASF subversion and git services commented on GEODE-1155: Commit 04

[jira] [Commented] (GEODE-1155) CI failure: NetSearchMessagingDUnitTest.testNetSearchNormals

2017-01-09 Thread Bruce Schuchardt (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-1155?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15813037#comment-15813037 ] Bruce Schuchardt commented on GEODE-1155: - It looks to me like this was being caus

[jira] [Updated] (GEODE-2142) Remove JSON.org dependency

2017-01-09 Thread Hitesh Khamesra (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2142?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Hitesh Khamesra updated GEODE-2142: --- Fix Version/s: (was: 1.1.0) > Remove JSON.org dependency > -- > >

Re: Review Request 55356: GEODE-209: delete broken test and fix ProcessStreamReader

2017-01-09 Thread Jared Stewart
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/55356/#review160976 --- Ship it! Ship It! - Jared Stewart On Jan. 9, 2017, 8:58 p.m.

[jira] [Commented] (GEODE-1155) CI failure: NetSearchMessagingDUnitTest.testNetSearchNormals

2017-01-09 Thread Bruce Schuchardt (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-1155?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15812954#comment-15812954 ] Bruce Schuchardt commented on GEODE-1155: - There is no evidence of a GC issue in t

[jira] [Assigned] (GEODE-2287) Possible NPE in HARegionQueue during gii with conflation

2017-01-09 Thread Jason Huynh (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2287?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jason Huynh reassigned GEODE-2287: -- Assignee: Jason Huynh > Possible NPE in HARegionQueue during gii with conflation >

[jira] [Created] (GEODE-2287) Possible NPE in HARegionQueue during gii with conflation

2017-01-09 Thread Jason Huynh (JIRA)
Jason Huynh created GEODE-2287: -- Summary: Possible NPE in HARegionQueue during gii with conflation Key: GEODE-2287 URL: https://issues.apache.org/jira/browse/GEODE-2287 Project: Geode Issue Type

[jira] [Updated] (GEODE-2142) Remove JSON.org dependency

2017-01-09 Thread Hitesh Khamesra (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2142?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Hitesh Khamesra updated GEODE-2142: --- Fix Version/s: 1.1.0 > Remove JSON.org dependency > -- > >

[jira] [Commented] (GEODE-2143) JSON deserialization fails if a String contains an apostrophe

2017-01-09 Thread Hitesh Khamesra (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2143?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15812860#comment-15812860 ] Hitesh Khamesra commented on GEODE-2143: [~kduling] We have partially fix the GEOD

[jira] [Updated] (GEODE-1717) CI Failure: ConnectionPoolAutoDUnitTest.test038Bug39526part2 assertion failure

2017-01-09 Thread Bruce Schuchardt (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-1717?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bruce Schuchardt updated GEODE-1717: Component/s: (was: client/server) client queues > CI Failure: Connecti

Review Request 55356: GEODE-209: delete broken test and fix ProcessStreamReader

2017-01-09 Thread Kirk Lund
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/55356/ --- Review request for geode, Jinmei Liao, Jared Stewart, and Kevin Duling. Bugs: G

[jira] [Assigned] (GEODE-1114) Remove sqlfire/GemFireXD references from Pulse

2017-01-09 Thread Jared Stewart (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-1114?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jared Stewart reassigned GEODE-1114: Assignee: Jared Stewart > Remove sqlfire/GemFireXD references from Pulse >

[jira] [Assigned] (GEODE-2194) Initial, post-login Pulse page is /pulse/pulse/pulseVersion

2017-01-09 Thread Jared Stewart (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2194?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jared Stewart reassigned GEODE-2194: Assignee: Jared Stewart (was: Kirk Lund) > Initial, post-login Pulse page is /pulse/pulse/

[jira] [Commented] (GEODE-958) AgentUtilJUnitTest.testRESTApiExists failed with java.lang.AssertionError: GemFire REST API WAR File was not found

2017-01-09 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-958?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15812743#comment-15812743 ] ASF GitHub Bot commented on GEODE-958: -- Github user jinmeiliao commented on a diff in

[GitHub] geode pull request #331: GEODE-958: AgentUtilJunitTest doesn't require env v...

2017-01-09 Thread jinmeiliao
Github user jinmeiliao commented on a diff in the pull request: https://github.com/apache/geode/pull/331#discussion_r95237941 --- Diff: geode-core/src/main/java/org/apache/geode/management/internal/AgentUtil.java --- @@ -60,6 +60,7 @@ public String findWarLocation(String warFilePre

[jira] [Commented] (GEODE-2285) GFSH CliStrings contains typos

2017-01-09 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2285?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15812713#comment-15812713 ] ASF subversion and git services commented on GEODE-2285: Commit 05

[jira] [Commented] (GEODE-2286) GemFireStatSamplerIntegrationTest.testArchiveRemoval fails intermittently

2017-01-09 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2286?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15812714#comment-15812714 ] ASF subversion and git services commented on GEODE-2286: Commit c3

[jira] [Commented] (GEODE-2286) GemFireStatSamplerIntegrationTest.testArchiveRemoval fails intermittently

2017-01-09 Thread Kirk Lund (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2286?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15812709#comment-15812709 ] Kirk Lund commented on GEODE-2286: -- Need to rewrite this test with Awaitility and longer

Re: Review Request 55351: GEODE-2285: fix some typos in GFSH code

2017-01-09 Thread Mark Bretl
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/55351/#review160953 --- Ship it! Ship It! - Mark Bretl On Jan. 9, 2017, 11:18 a.m.,

[jira] [Assigned] (GEODE-2286) GemFireStatSamplerIntegrationTest.testArchiveRemoval fails intermittently

2017-01-09 Thread Kirk Lund (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2286?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Kirk Lund reassigned GEODE-2286: Assignee: Kirk Lund > GemFireStatSamplerIntegrationTest.testArchiveRemoval fails intermittently > -

[jira] [Updated] (GEODE-2286) GemFireStatSamplerIntegrationTest.testArchiveRemoval fails intermittently

2017-01-09 Thread Kirk Lund (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2286?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Kirk Lund updated GEODE-2286: - Summary: GemFireStatSamplerIntegrationTest.testArchiveRemoval fails intermittently (was: GemFireSTatSampl

[jira] [Updated] (GEODE-2286) GemFireStatSamplerIntegrationTest.testArchiveRemoval fails intermittently

2017-01-09 Thread Kirk Lund (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2286?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Kirk Lund updated GEODE-2286: - Labels: Flaky (was: ) > GemFireStatSamplerIntegrationTest.testArchiveRemoval fails intermittently > -

[jira] [Created] (GEODE-2286) GemFireSTatSamplerIntegrationTest.testArchiveRemoval fails intermittently

2017-01-09 Thread Kirk Lund (JIRA)
Kirk Lund created GEODE-2286: Summary: GemFireSTatSamplerIntegrationTest.testArchiveRemoval fails intermittently Key: GEODE-2286 URL: https://issues.apache.org/jira/browse/GEODE-2286 Project: Geode

Fixed: apache/geode#1736 (develop - 40e8c15)

2017-01-09 Thread Travis CI
Build Update for apache/geode - Build: #1736 Status: Fixed Duration: 7 minutes and 6 seconds Commit: 40e8c15 (develop) Author: Bruce Schuchardt Message: GEODE-2277 spotless fixes View the changeset: https://github.com/apache/geode/compare/1eceed2eb570...40e8c

Broken: apache/geode#1735 (develop - 1eceed2)

2017-01-09 Thread Travis CI
Build Update for apache/geode - Build: #1735 Status: Broken Duration: 7 minutes and 57 seconds Commit: 1eceed2 (develop) Author: Bruce Schuchardt Message: GEODE-2277 PDX logging cleanup View the changeset: https://github.com/apache/geode/compare/dfecdba2a8b1.

[jira] [Resolved] (GEODE-1988) CI failure: RegisterInterestKeysPRDUnitTest fails intermittently

2017-01-09 Thread Bruce Schuchardt (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-1988?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bruce Schuchardt resolved GEODE-1988. - Resolution: Cannot Reproduce This failure doesn't reproduce. It must have been influenced

[jira] [Commented] (GEODE-2277) client cache fails to deserialize a PdxInstance due to InternalGemFireError

2017-01-09 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2277?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15812622#comment-15812622 ] ASF subversion and git services commented on GEODE-2277: Commit 40

[jira] [Resolved] (GEODE-2277) client cache fails to deserialize a PdxInstance due to InternalGemFireError

2017-01-09 Thread Bruce Schuchardt (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2277?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bruce Schuchardt resolved GEODE-2277. - Resolution: Cannot Reproduce I set up a 4-site WAN test that created a bunch of PDX types

Re: Review Request 55351: GEODE-2285: fix some typos in GFSH code

2017-01-09 Thread Jinmei Liao
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/55351/#review160939 --- Ship it! Ship It! - Jinmei Liao On Jan. 9, 2017, 7:18 p.m.,

[jira] [Commented] (GEODE-958) AgentUtilJUnitTest.testRESTApiExists failed with java.lang.AssertionError: GemFire REST API WAR File was not found

2017-01-09 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-958?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15812591#comment-15812591 ] ASF GitHub Bot commented on GEODE-958: -- Github user jaredjstewart commented on the iss

[GitHub] geode issue #331: GEODE-958: AgentUtilJunitTest doesn't require env var.

2017-01-09 Thread jaredjstewart
Github user jaredjstewart commented on the issue: https://github.com/apache/geode/pull/331 @kohlmu-pivotal @hiteshk25 Adding you guys since you originally were active in GEODE-958 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub a

[jira] [Commented] (GEODE-2277) client cache fails to deserialize a PdxInstance due to InternalGemFireError

2017-01-09 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2277?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15812585#comment-15812585 ] ASF subversion and git services commented on GEODE-2277: Commit 1e

[jira] [Commented] (GEODE-2277) client cache fails to deserialize a PdxInstance due to InternalGemFireError

2017-01-09 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2277?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15812583#comment-15812583 ] ASF subversion and git services commented on GEODE-2277: Commit cb

[jira] [Commented] (GEODE-2277) client cache fails to deserialize a PdxInstance due to InternalGemFireError

2017-01-09 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2277?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15812584#comment-15812584 ] ASF subversion and git services commented on GEODE-2277: Commit aa

Review Request 55351: GEODE-2285: fix some typos in GFSH code

2017-01-09 Thread Kirk Lund
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/55351/ --- Review request for geode, Jinmei Liao, Jared Stewart, and Kevin Duling. Bugs: G

Re: The next release (v1.1.0)

2017-01-09 Thread Anthony Baker
Thanks Hitesh! You will need to follow the instructions at https://cwiki.apache.org/confluence/display/GEODE/Release+Steps. The instructions will need to be updated since we do not need to go through the IPMC vote. Please make sure you have a GPG key as noted in the instructions. Anthony > O

[jira] [Assigned] (GEODE-2285) GFSH CliStrings contains typos

2017-01-09 Thread Kirk Lund (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2285?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Kirk Lund reassigned GEODE-2285: Assignee: Kirk Lund > GFSH CliStrings contains typos > -- > >

[jira] [Updated] (GEODE-2285) GFSH CliStrings contains typos

2017-01-09 Thread Kirk Lund (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2285?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Kirk Lund updated GEODE-2285: - Affects Version/s: 1.0.0-incubating > GFSH CliStrings contains typos > -- > >

[jira] [Created] (GEODE-2285) GFSH CliStrings contains typos

2017-01-09 Thread Kirk Lund (JIRA)
Kirk Lund created GEODE-2285: Summary: GFSH CliStrings contains typos Key: GEODE-2285 URL: https://issues.apache.org/jira/browse/GEODE-2285 Project: Geode Issue Type: Bug Components: gf

[jira] [Updated] (GEODE-2284) HelpCommandsIntegrationTest is too brittle

2017-01-09 Thread Kirk Lund (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2284?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Kirk Lund updated GEODE-2284: - Component/s: gfsh > HelpCommandsIntegrationTest is too brittle > -

[jira] [Updated] (GEODE-2284) HelpCommandsIntegrationTest is too brittle

2017-01-09 Thread Kirk Lund (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2284?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Kirk Lund updated GEODE-2284: - Affects Version/s: 1.0.0-incubating > HelpCommandsIntegrationTest is too brittle > ---

[jira] [Created] (GEODE-2284) HelpCommandsIntegrationTest is too brittle

2017-01-09 Thread Kirk Lund (JIRA)
Kirk Lund created GEODE-2284: Summary: HelpCommandsIntegrationTest is too brittle Key: GEODE-2284 URL: https://issues.apache.org/jira/browse/GEODE-2284 Project: Geode Issue Type: Bug Co

Re: The next release (v1.1.0)

2017-01-09 Thread Hitesh Khamesra
let me try it out this time. Any instruction to follow? Thanks.HItesh From: Anthony Baker To: dev@geode.apache.org Sent: Monday, January 9, 2017 9:49 AM Subject: Re: The next release (v1.1.0) Updates: 1) I did a first round of changes on GEODE-2142, should be enough for v1.1.0. 2)

[jira] [Created] (GEODE-2283) Refactor WanTestBase getSenderStats(String senderId, final int expectedQueueSize)

2017-01-09 Thread Jason Huynh (JIRA)
Jason Huynh created GEODE-2283: -- Summary: Refactor WanTestBase getSenderStats(String senderId, final int expectedQueueSize) Key: GEODE-2283 URL: https://issues.apache.org/jira/browse/GEODE-2283 Project:

[jira] [Commented] (GEODE-958) AgentUtilJUnitTest.testRESTApiExists failed with java.lang.AssertionError: GemFire REST API WAR File was not found

2017-01-09 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-958?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15812512#comment-15812512 ] ASF GitHub Bot commented on GEODE-958: -- Github user jaredjstewart commented on the iss

[jira] [Commented] (GEODE-958) AgentUtilJUnitTest.testRESTApiExists failed with java.lang.AssertionError: GemFire REST API WAR File was not found

2017-01-09 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-958?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15812511#comment-15812511 ] ASF GitHub Bot commented on GEODE-958: -- GitHub user jaredjstewart opened a pull reques

[GitHub] geode pull request #331: GEODE-958: AgentUtilJunitTest doesn't require env v...

2017-01-09 Thread jaredjstewart
GitHub user jaredjstewart opened a pull request: https://github.com/apache/geode/pull/331 GEODE-958: AgentUtilJunitTest doesn't require env var. - AgentUtilJunitTest will now set the gemfire.home system property for AgentUtil to find the pulse war if no GEMFIRE enironment variable i

[GitHub] geode issue #331: GEODE-958: AgentUtilJunitTest doesn't require env var.

2017-01-09 Thread jaredjstewart
Github user jaredjstewart commented on the issue: https://github.com/apache/geode/pull/331 Precheckin started --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes s

[jira] [Assigned] (GEODE-958) AgentUtilJUnitTest.testRESTApiExists failed with java.lang.AssertionError: GemFire REST API WAR File was not found

2017-01-09 Thread Jared Stewart (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-958?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jared Stewart reassigned GEODE-958: --- Assignee: Jared Stewart (was: Udo Kohlmeyer) > AgentUtilJUnitTest.testRESTApiExists failed wi

[jira] [Commented] (GEODE-958) AgentUtilJUnitTest.testRESTApiExists failed with java.lang.AssertionError: GemFire REST API WAR File was not found

2017-01-09 Thread Jared Stewart (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-958?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15812486#comment-15812486 ] Jared Stewart commented on GEODE-958: - I reproduced this issue when I didn't have the '

[jira] [Assigned] (GEODE-2282) Provide ability to sort field while creating pdxType for jSON document

2017-01-09 Thread Hitesh Khamesra (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2282?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Hitesh Khamesra reassigned GEODE-2282: -- Assignee: Hitesh Khamesra > Provide ability to sort field while creating pdxType for jS

[jira] [Created] (GEODE-2282) Provide ability to sort field while creating pdxType for jSON document

2017-01-09 Thread Hitesh Khamesra (JIRA)
Hitesh Khamesra created GEODE-2282: -- Summary: Provide ability to sort field while creating pdxType for jSON document Key: GEODE-2282 URL: https://issues.apache.org/jira/browse/GEODE-2282 Project: Geo

Re: The next release (v1.1.0)

2017-01-09 Thread Joey McAllister
Re: 2) I'll take a look at GEODE-2031, versioning the documentation. On Mon, Jan 9, 2017 at 9:50 AM Anthony Baker wrote: > Updates: > > 1) I did a first round of changes on GEODE-2142, should be enough for > v1.1.0. > 2) Any volunteers to look at GEODE-2031 or GEODE-1965? > 3) Are there other op

[jira] [Resolved] (GEODE-2239) CI failure: org.apache.geode.pdx.JSONFormatterJUnitTest.testJSONFormatterAPIs

2017-01-09 Thread Hitesh Khamesra (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2239?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Hitesh Khamesra resolved GEODE-2239. Resolution: Fixed > CI failure: org.apache.geode.pdx.JSONFormatterJUnitTest.testJSONFormatte

[jira] [Resolved] (GEODE-2271) Reduce pdx type id generation for string fields in JSON

2017-01-09 Thread Hitesh Khamesra (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2271?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Hitesh Khamesra resolved GEODE-2271. Resolution: Fixed > Reduce pdx type id generation for string fields in JSON > --

[jira] [Closed] (GEODE-2239) CI failure: org.apache.geode.pdx.JSONFormatterJUnitTest.testJSONFormatterAPIs

2017-01-09 Thread Hitesh Khamesra (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2239?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Hitesh Khamesra closed GEODE-2239. -- > CI failure: org.apache.geode.pdx.JSONFormatterJUnitTest.testJSONFormatterAPIs > --

[jira] [Closed] (GEODE-2271) Reduce pdx type id generation for string fields in JSON

2017-01-09 Thread Hitesh Khamesra (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2271?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Hitesh Khamesra closed GEODE-2271. -- > Reduce pdx type id generation for string fields in JSON >

[jira] [Commented] (GEODE-2239) CI failure: org.apache.geode.pdx.JSONFormatterJUnitTest.testJSONFormatterAPIs

2017-01-09 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2239?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15812462#comment-15812462 ] ASF subversion and git services commented on GEODE-2239: Commit df

[jira] [Commented] (GEODE-2271) Reduce pdx type id generation for string fields in JSON

2017-01-09 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2271?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15812461#comment-15812461 ] ASF subversion and git services commented on GEODE-2271: Commit e2

[jira] [Commented] (GEODE-2261) refactor ClusterConfigWriter do not need to use remote call to change cluster config

2017-01-09 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/GEODE-2261?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15812448#comment-15812448 ] ASF subversion and git services commented on GEODE-2261: Commit 60

  1   2   >