Re: Releasing Geode (was Re: September 2015 Report)

2015-09-14 Thread Roman Shaposhnik
It appears it needs to be explicitly added to the project. Can anyone of you guys file an INFRA JIRA? Thanks, Roman. On Mon, Sep 14, 2015 at 9:51 AM, Nitin Lamba wrote: > Other projects do seem to have access. See example of Mesos: > https://issues.apache.org/jira/secure/RapidBoard.jspa?rapidVie

[Spring CI] Spring Data GemFire > Nightly-ApacheGeode > #66 was SUCCESSFUL (with 1140 tests)

2015-09-14 Thread Spring CI
--- Spring Data GemFire > Nightly-ApacheGeode > #66 was successful. --- Scheduled 1144 tests in total. https://build.spring.io/browse/SGF-NAG-66/ -- This me

Re: Apache Geode is....

2015-09-14 Thread Greg Chase
Second frame is "About Apache Geode". 150 words or less for the body. I'm 10 over at 160. What we currently say right now needs a total rewrite: http://geode.incubator.apache.org/about/ Proposed new About text (150 words or less for the body. I'm 10 over at 160): Processing low latency querie

Apache Geode is....

2015-09-14 Thread Greg Chase
Dear Geode contributors, I'm writing the website for the newly accepted Apache HAWQ incubating project. As part of this effort, I secured some web design resources to refresh the Apache Geode site as well. Talking to a number of contributors individually, they like the idea of changing the design

Re: Review Request 38362: Update DUnit framework to JUnit 4

2015-09-14 Thread Dan Smith
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/38362/#review98929 --- First off, thanks for getting this moving, it looks like you've done

Review Request 38373: Improve debugging of process integration test classes to better diagnose GEODE-291

2015-09-14 Thread Kirk Lund
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/38373/ --- Review request for geode, Darrel Schneider and Dan Smith. Bugs: GEODE-291 h

Re: Create Region API

2015-09-14 Thread John Blum
The easiest/simplest way is to just use the RegionFactory API inside a Function targeting the members where the (PARTITION) Region needs to be created, especially if you do not need this recorded in Cluster Configuration, and I imagine in your case, you do not. -j On Mon, Sep 14, 2015 at 1:53 PM,

Re: Create Region API

2015-09-14 Thread Michael Stolz
Wes, we're you looking for cluster configuration management or just creation of a dynamic region? -- Mike Stolz Principal Technical Account Manager Mobile: 631-835-4771 On Sep 14, 2015 1:47 PM, "Kirk Lund" wrote: > All of those "null" args make my soul hurt! > > You could feed a "create region"

Re: Create Region API

2015-09-14 Thread Kirk Lund
All of those "null" args make my soul hurt! You could feed a "create region" command string into MemberMXBean.processCommand() on the Manager. So, I think you would need to: a) target that Manager with your Function and access its MemberMXBean directly or b) connect to the Manager via remotely v

Re: Create Region API

2015-09-14 Thread Barry Oglesby
Another idea (and one we've done in the past before the cluster configuration service) to make sure that all newer members also created the same regions is to use a persistent configuration region and a CacheListener defined on all members. The CreateRegionFunction is invoked on one member and just

Re: Create Region API

2015-09-14 Thread Barry Oglesby
You can do something like this: import com.gemstone.gemfire.management.internal.configuration.SharedConfigurationWriter; import com.gemstone.gemfire.management.internal.configuration.domain.XmlEntity; Region region = ...; XmlEntity xmlEntity = new XmlEntity("region", "name", region.getName()); ne

Re: Create Region API

2015-09-14 Thread Swapnil Bawaskar
One way to create a Region so that it is recorded in the shared configuration is to use the API that GFSH uses to create the region: CreateAlterDestroyRegionCommands cliCmds = new CreateAlterDestroyRegionCommands(); Result result = cliCmds.createRegion(key, RegionShortcut.PARTITION, null, null, tr

Review Request 38362: Update DUnit framework to JUnit 4

2015-09-14 Thread Kirk Lund
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/38362/ --- Review request for geode and Dan Smith. Bugs: GEODE-217 https://issues.apac

Re: Review Request 38283: GEODE-320: Close the cache in DistributedTestCase tear down

2015-09-14 Thread Kirk Lund
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/38283/#review98889 --- Ship it! Ship It! - Kirk Lund On Sept. 11, 2015, 12:57 a.m., Dan

Re: Create Region API

2015-09-14 Thread Dan Smith
RegionFactory.create will create a partitioned region only on the member on which you invoke create. So you could use FunctionService.onMembers and call create on all of the existing members. But what I don't know is if there is a way to do what the gfsh command does - add the region to the shared

Re: GEODE-327: Rename gemfire-junit to gemfire-common

2015-09-14 Thread Kirk Lund
I've closed out GEODE-327 and will create a new gemfire-common subproject for GEODE-328. Please let me know if there's any further input on this. Thanks, Kirk On Sat, Sep 12, 2015 at 4:47 PM, Anthony Baker wrote: > Seems reasonable, as long as we tackle it piecewise. Going back to the > origin

Re: Releasing Geode (was Re: September 2015 Report)

2015-09-14 Thread Nitin Lamba
Other projects do seem to have access. See example of Mesos: https://issues.apache.org/jira/secure/RapidBoard.jspa?rapidView=1 Perhaps, it is only available to TLPs? It gives a good way to prioritize backlog, organize work into sprints, Kanban view of who's working on what, etc. No biggie; the

Re: Releasing Geode (was Re: September 2015 Report)

2015-09-14 Thread Anthony Baker
What do we get from the Scrum Board? How are other ASF projects tracking release activities? Anthony > On Sep 14, 2015, at 9:27 AM, Kirk Lund wrote: > > I thought Jira Scrum Board is an Atlassian add-on that might not be > available on the ASF Jira. Ask Roman or INFRA if it's available to u

Re: Releasing Geode (was Re: September 2015 Report)

2015-09-14 Thread Kirk Lund
I thought Jira Scrum Board is an Atlassian add-on that might not be available on the ASF Jira. Ask Roman or INFRA if it's available to us. -Kirk On Mon, Sep 14, 2015 at 7:44 AM, William Markito wrote: > I've tried a similar thing in the past Nitin and looks it's something you > may need to ask

Create Region API

2015-09-14 Thread Wes Williams
Is RegionFactory.create(regionName) the best and threadsafe way to create a partitioned region across the distributed system from within a function? Thanks, *Wes Williams | Pivotal Sr. **Data Engineer* 781.606.0325 http://pivotal.io/big-data/pivotal-gemfire

Re: Review Request 35541: GEODE-60 Geode build environment within Docker to enable anybody and on any OS and any environment can build Geode as long as there is Docker

2015-09-14 Thread William Markito
Here is the Dockerfile with only Java that I've posted on the tickets comment. Note that I've also removed unnecessary libs from the JDK and from the OS. In fact, this image has already been pushed to DockerHub and can be used with: docker pull apachegeode/java8 FROM centos:latest MAINTAINER W

Re: Releasing Geode (was Re: September 2015 Report)

2015-09-14 Thread William Markito
I've tried a similar thing in the past Nitin and looks it's something you may need to ask INFRA about Even with admin permissions on the project it didn't work. On Fri, Sep 11, 2015 at 5:11 PM, Nitin Lamba wrote: > Seems I'm having trouble creating Scrum Board for the project. Thought I > wa

Build failed in Jenkins: Geode-nightly #215

2015-09-14 Thread Apache Jenkins Server
See -- [...truncated 167 lines...] :2457: warning: Unsafe i