Re: Micronaut/Ignite

2020-09-10 Thread Michael Pollind
-projects.github.io/micronaut-ignite/snapshot/guide/ PR: https://github.com/micronaut-projects/micronaut-ignite/pull/33 On Thu, Aug 27, 2020 at 5:32 PM Michael Pollind wrote: > Not sure, I would probably bring that up in the PR so the micronaut devs > are aware of this. Not sure how the CI will work an

Re: Micronaut/Ignite

2020-09-11 Thread Michael Pollind
looks like I was wrong, will have to wait till this PR get merged and a release is made in the repo. https://github.com/micronaut-projects/micronaut-core/pull/4070 On Fri, Sep 11, 2020 at 10:01 AM Michael Pollind wrote: > The caching is setup in the branch and the release candidate is alre

Re: Micronaut/Ignite

2020-09-14 Thread Michael Pollind
here is the release: https://search.maven.org/artifact/io.micronaut.ignite/micronaut-ignite-core/1.0.0.RC1/jar On Fri, Sep 11, 2020 at 10:16 AM Michael Pollind wrote: > looks like I was wrong, will have to wait till this PR get merged and a > release is made in the repo. > > https:

Re: Micronaut/Ignite

2020-08-25 Thread Michael Pollind
:57 PM Michael Pollind wrote: > > > yea, I'm not sure about ignite-cache config. splitting it into two modules > seems kind of overly complicated, but I also don't really like the random > boolean flag. here is the tweaks from the config your provider: > https://github.com/pollen

Re: Any reason to keep ClientConfiguration final?

2020-08-25 Thread Michael Pollind
ration configuration) { try { return Ignition.startClient(configuration); } catch (Exception e) { LOG.error("Failed to instantiate Ignite Client: " + e.getMessage(), e); throw e; } } ... -- Michael Pollind On Mon, Aug 24, 2020 at 1:43 PM Igor Sapego wrote:

Re: Micronaut/Ignite

2020-08-17 Thread Michael Pollind
{ > return counters.computeIfAbsent(name, { 0 }) > } > > > Regards, > Saikat > > On Sat, Aug 15, 2020 at 7:21 PM Michael Pollind > wrote: > > > when you mean these annotations do you mean this would need to be > > implemented in ignite? >

Re: Micronaut/Ignite

2020-08-18 Thread Michael Pollind
te/configuration/IgniteThinClientConfiguration.java > > > already >adopts this approach. I would only rename "configuration" to "config", > and >remove the "transaction" field since you can pass the transactional >settings via the YAML followi

Re: Micronaut/Ignite

2020-08-19 Thread Michael Pollind
= new IgniteConfiguration(); @ConfigurationBuilder(value = "communicationSpi") private TcpCommunicationSpi communicationSpi = new TcpCommunicationSpi(); [image: image.png] On Tue, Aug 18, 2020 at 11:05 PM Michael Pollind wrote: > Its whatever is setup by default when the object i

Re: Micronaut/Ignite

2020-08-19 Thread Michael Pollind
ttings). Just in case, you can find IgniteConfiguration defaults here > < > https://github.com/apache/ignite/blob/master/modules/core/src/main/java/org/apache/ignite/configuration/IgniteConfiguration.java > > > . > > - > Denis > > > On Tue, Aug 18, 2020 at 8:59 PM

Re: Micronaut/Ignite

2020-08-19 Thread Michael Pollind
/DefaultIgniteConfiguration.java along with some relevant test: https://github.com/pollend/micronaut-ignite/blob/feature/rework-1/ignite-core/src/test/groovy/io/micronaut/ignite/IgniteConfigurationSpec.groovy#L55-L73 On Tue, Aug 18, 2020 at 11:49 PM Michael Pollind wrote: > > > The main rea

Re: Micronaut/Ignite

2020-08-21 Thread Michael Pollind
hinking? Let me know if I'm still missing something. > - > Denis > > > On Wed, Aug 19, 2020 at 8:49 PM Saikat Maitra > wrote: > > > Hi Michael, Denis > > > > I was looking into tiering options for ehcache[1] and network options for > > Hazelcast[2] and

Re: Micronaut/Ignite

2020-08-19 Thread Michael Pollind
; Will I be able to set up the communicationSpi bean below without having it > as a field of the DefaultIgniteConfiguration? Are you getting a > NullPointerException? > > ignite: > name: some_name > igniteConfiguration: > communicationSpi: > {

Re: Micronaut/Ignite

2020-08-19 Thread Michael Pollind
faultIgniteConfiguration and see what I can suggest. Could you recommend > any materials (or sources) that on Micronaut configuration specifies > (through YAML and programmatically via source code)? > > Denis > > On Wednesday, August 19, 2020, Michael Pollind wrote: > >

Re: Micronaut/Ignite

2020-08-20 Thread Michael Pollind
ds, > Saikat > > > > > On Wed, Aug 19, 2020 at 7:09 PM Michael Pollind > wrote: > > > A lot of this was just figured out through experimentation. You can ask > > questions in the micronaut gitter: > > https://gitter.im/micronautfw/questions > > . Mic

Re: Micronaut/Ignite

2020-08-26 Thread Michael Pollind
s blank for now. Would you > mind filling it with configuration options following the format taken for > the thick client? > > Ping me here once you're ready to review the API and implementation of the > ignite-caching module. > > - > Denis > > > On Tue, Aug 25,

Re: Micronaut/Ignite

2020-08-26 Thread Michael Pollind
Also you need to sign the CLA since you add a commit to my branch. branch: https://github.com/pollend/micronaut-ignite/tree/feature/rework linked PR: https://github.com/micronaut-projects/micronaut-ignite/pull/33 -- Michael Pollind On Wed, Aug 26, 2020 at 3:29 PM Denis Magda wrote: > Co

Re: Micronaut/Ignite

2020-08-26 Thread Michael Pollind
be the last part of this. The configuration from my perspective seems pretty much there. Is there anything else that is missing? On Wed, Aug 26, 2020 at 1:31 PM Denis Magda wrote: >  Nice catch! > > - > Denis > > > On Wed, Aug 26, 2020 at 12:16 PM Michael Pollind > wrote: &

Re: Micronaut/Ignite

2020-08-27 Thread Michael Pollind
> Denis > > > On Wed, Aug 26, 2020 at 3:35 PM Michael Pollind > wrote: > > > Also you need to sign the CLA since you add a commit to my branch. > > > > branch: https://github.com/pollend/micronaut-ignite/tree/feature/rework > > linked PR: > htt

Re: Micronaut/Ignite

2020-08-24 Thread Michael Pollind
lass and add Static > > with Kubernetes IP finders to the DefaultIgniteConfiguration class. The > > IgniteConfigurationSpec fails for now, but I think we'll figure how to > > modify the test on the call today. > > > > Also, let's decide if we want to configure IgniteCaches

Re: Micronaut/Ignite

2020-08-14 Thread Michael Pollind
here is the link: https://cwiki.apache.org/confluence/users/viewuserprofile.action?username=mpollind Here is the work in progress pull request that I've put together: https://github.com/micronaut-projects/micronaut-ignite/pull/33 -- Sent from:

Re: Micronaut/Ignite

2020-08-14 Thread Michael Pollind
ate wiki pages in the Ignite namespace. > > Also, please subscribe to the list by sending a note to the > dev-subscr...@ignite.apache.org address. Otherwise, we need to approve > every email you send. > > - > Denis > > > On Fri, Aug 14, 2020 at 2:43 PM Michael

[Micronaut] pubsub support

2020-10-25 Thread Michael Pollind
I've started to work on adding some basic pubsub support for Micronaut-ignite. I only have a draft PR in progress. There are a couple modules that already implement pub-sub so those modules would be a good start for reference: https://github.com/micronaut-projects/micronaut-gcp

Re: Micronaut/Ignite

2020-08-15 Thread Michael Pollind
hank you for sharing the details in dev list, it great to learn > about micronaut-ignite module. > > Regards, > Saikat > > On Sat, Aug 15, 2020 at 12:35 AM Michael Pollind > wrote: > > > Here is the page that i've stubbed out: > > https://cwiki.apache.org/confluence/disp

Re: [Micronaut] pubsub support

2020-10-31 Thread Michael Pollind
; > On Tue, Oct 27, 2020 at 12:48 PM Denis Magda wrote: > >> Michael, glad to see you back! >> >> Could you please explain in a few words what this integration does and >> what >> it enables for Ignite and Micronaout? So that we are as a community are on >>