Geode unit tests completed in 'develop/DistributedTest' with non-zero exit code

2018-03-01 Thread apachegeodeci
Pipeline results can be found at: Concourse: https://concourse.apachegeode-ci.info/teams/main/pipelines/develop/jobs/DistributedTest/builds/172

Geode unit tests 'develop/DistributedTest' took too long to execute

2018-03-01 Thread apachegeodeci
Pipeline results can be found at: Concourse: https://concourse.apachegeode-ci.info/teams/main/pipelines/develop/jobs/DistributedTest/builds/171

Spring for Apache Geode Announcements...

2018-03-01 Thread John Blum
Greetings Apache Geode Community- It is my pleasure to follow-up with several announcements and releases concerning the Apache Geode ecosystem from the Spring portfolio. 1. First, we moved 2 versions since my last announcement [1] to *Spring Data for Apache Geode* *2.0.5.RELEASE* (*Kay-SR5*). 1

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

2018-03-01 Thread Spring CI
--- Spring Data GemFire > Nightly-ApacheGeode > #843 was successful. --- Scheduled 2380 tests in total. https://build.spring.io/browse/SGF-NAG-843/ -- This

Geode unit tests completed in 'develop/IntegrationTest' with non-zero exit code

2018-03-01 Thread apachegeodeci
Pipeline results can be found at: Concourse: https://concourse.apachegeode-ci.info/teams/main/pipelines/develop/jobs/IntegrationTest/builds/244

Re: Next release: 1.5.0

2018-03-01 Thread Swapnil Bawaskar
I will take up the release management task for 1.5.0 On Mon, Feb 26, 2018 at 5:03 PM Dave Barnes wrote: > Status on the 3 doc issues: > GEODE-4737 / GEODE-3915: JSON args in gfsh - Karen's got it covered > GEODE-4101: redirect-output - Dave, in process, on track > GEODE-3948: client timeout -

Re: Row-Level security with key as a regex

2018-03-01 Thread Jens Deppe
Hi Nilkanth, It's basically up to the provided SecurityManager how to handle the ResourcePermission passed into it. So in your implementation could be as simple as: if (rp.getKey() != null && rp.getKey().contains("system") {...} Are you perhaps looking at a specific SecurityManager implemen

Row-Level security with key as a regex

2018-03-01 Thread Nilkanth Patel
Hi Team, I am exploring row-level security with Geode and observed that exact key has to be provided in security configuration (for example: DATA:READ:MyRegion:*system*). Is there any way to provide Key as a regex (*admin*) ..? I want to achieve row-level security on all keys containing *system*