Hello, Everyone!
My name is Michael Aglietti. I want to contribute to Ignite. I would like to
start by working on documentation tickets like IGNITE-25510. Please, help me to
start contributing.
My ASF JIRA username is maglietti and my GitHub username is maglietti.
Regards,
Michael Aglietti
> There's got to be a different plan. First of all, we need to decide what's
> our target. Is it log, or is it API?
>
> Regards,
> --
> Ilya Kasnacheev
>
>
> пт, 1 янв. 2021 г. в 02:07, Michael Cherkasov >:
>
>> Hi folks,
>>
>
Hi folks,
I was thinking how we can simplify Ignite clusters troubleshooting and the
best of course if the cluster can do self-healing, like transaction
cancellation if tx blocks exchange or note restart on OOM error. However,
sometimes those mechanisms don't work well or user interaction is requi
Mike,
>
> Thanks for providing your feedback. Please see my comments below.
>
> I would also encourage you to go through the IEP-54 [1] - it has a lot of
> detail on the topic.
>
> [1]
>
> https://cwiki.apache.org/confluence/display/IGNITE/IEP-54%3A+Schema-first+
Hi all,
I reviewed the mail thread and proposal page and I still don't fully
understand what is going to be changed, I would really appreciate it if you
will answer a few questions:
1. Are you going to leave only one schema per cache? if so, will be there
an option to have a table with arbitrary
s")
public void send(@key() String key, Animal o);
@Topic("my_topic")
public void send2(@key() Long key, Object o);
}
@PubSubListener
public class SimpleSub {
@Subscription("animals")
public class Listener(@key() String key, Animal o) {
}
}
On Tue, Oct 27, 2020 a
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
https://github.com/m
Michael Weiss created IGNITE-13584:
--
Summary: Add more options to IgniteState
Key: IGNITE-13584
URL: https://issues.apache.org/jira/browse/IGNITE-13584
Project: Ignite
Issue Type
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:
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
onaut-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 wo
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 and what can be arranged
in this case.
On Thu, Aug 27, 2020 at 3:50 PM Denis Magda wrote:
> Michael,
>
> The docs look good enough for the release. Once the integ
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
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
> wro
Aug 26, 2020 at 11:31 AM Denis Magda wrote:
> Michael,
>
> Looks terrific! I went ahead and grouped the configuration samples by a
> client type:
> https://cwiki.apache.org/confluence/display/IGNITE/Micronaut+Integration
>
> As you see, the "Ignite Thin Client" sect
at 6: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://gi
t(ClientConfiguration 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
7.0.0.1:47501",
kubernetties ip finder
"ignite.enabled" : true,
"ignite.communication-spi.local-port": "localhost:1800",
"ignite.discovery-spi.kubernetes-ip-finder.enabled" : "true",
"ignite.disc
on could be covered but I haven't quite worked that out
yet.
If this is ok then I can do another pass on the confluence.
On Fri, Aug 21, 2020 at 1:55 PM Denis Magda wrote:
> Michael,
>
> Finally, I figured out Micronaut configuration specificities. What confused
> me before, is t
Hi Saikat,
What fields in TcpCommunicationSPI are you referring to?
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 I am thinking we can implement somethin
:50 PM Denis Magda wrote:
> Michael,
>
> Alright, then the question on the possible quantity of Ignite instances is
> settled - the integration will allow to auto-configure a single instance
> only.
>
> Give me a couple of days to look into the configuration matters of
> De
thing that
should suffice for this usecase:
https://docs.micronaut.io/latest/api/io/micronaut/context/annotation/Requires.html
On Wed, Aug 19, 2020 at 2:45 PM Denis Magda wrote:
> Michael,
>
>
> > The current way I have it setup is the primary bean is used by default so
> >
ation/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 re
ation = 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 obj
pFinder or memory
> settings). 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,
127.0.0.1:10801"
thin-client-2:
address: - "127.0.0.1:10800" - "127.0.0.1:10801"
you can see it in the current snapshot documentation:
https://micronaut-projects.github.io/micronaut-ignite/snapshot/guide/
On Tue, Aug 18, 2020 at 4:16 PM Denis Magda wrot
ain/java/io/micronaut/ignite/IgniteSyncCache.java#L91-L95
On Mon, Aug 17, 2020 at 5:23 PM Saikat Maitra
wrote:
> Hi Michael,
>
> In the Example Cacheable Object you are using @CachePut, @Cacheable
> annotations and @CacheInvalidate annotations and I was trying to understand
> whe
n if that
would be more ideal.
https://github.com/pollend/micronaut-ignite/tree/feature/rework/ignite-cache/src/main/java/io/micronaut/ignite
On Sat, Aug 15, 2020 at 4:10 PM Saikat Maitra
wrote:
> Hi Michael,
>
> Welcome to the Ignite community!!!
>
> Please feel free to reach out
now you can create 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
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: http://apache-ignite-developers.2346864.n4.nabbl
onally split the message into chunks as
you suggested for the reproducer.
Regards,
Michael
On Wed, Oct 31, 2018 at 7:08 PM Yakov Zhdanov wrote:
> Hi Mike!
>
> Thanks for reproducer. Now I understand the problem. NIO worker reads
> chunks from the network and notifies the parser on
ct 31, 2018 at 1:06 PM Michael Fong wrote:
> Hi Yakov,
>
> Thanks for your reply. :)
>
> Please allow me to explain the whole situation and how to reproduce
> the problem:
>
> In the PR of IGNITE-7153, I added a test case under
> RedisProtocolConnectSelfTest, sending
that is how I got packet in the previous email. I could try
to emulate the erroneous packet then add the added in another test case via
pure socket connection per your request. Thanks!
Regards,
Michael
On Tue, Oct 30, 2018 at 6:00 PM Yakov Zhdanov wrote:
> Michael, can you please share a repro
. :-)
Regards,
Michael
On Tue, Oct 30, 2018 at 7:53 PM Dmitriy Pavlov
wrote:
> Hi Michael,
>
> I can see that https://issues.apache.org/jira/browse/IGNITE-7153 is
> already
> assigned to Roman Shtykh and is In Progress status.
>
> I hope Roman can step in and comment i
bump :)
On Fri, Oct 26, 2018 at 4:00 PM Michael Fong wrote:
> Hi,
>
> Thanks for your reply. I think current implementation (based on R2.6) does
> exactly what you mentioned as of in GridNioServer
> <https://github.com/apache/ignite/blob/ignite-2.6/modules/core/src/main/java
s case BufferUnderFlowError. I wonder if this is expected
behavior of how Ignite receive data from server perspective?
Regards,
Michael
On Fri, Oct 26, 2018 at 1:13 PM Jörn Franke wrote:
> I have not checked the exact routine, but you need to reexecute read until
> it returns -1 or if known that all by
Bump!
Anyone who could help me solve this random issue? Thanks!
Regards,
Michael
On Wed, Oct 24, 2018 at 10:32 PM Michael Fong wrote:
> Hi, all,
>
>
> I was trying to fix IGNITE-7153 which relates to parsing incomplete REDIS
> packet larger than 8192 bytes. However, I
and found sockCh.read(readBuf) only read 28 bytes for
unknown reason
The problem seems totally random. I wonder if this has anything to do
with other NioWorker
or Selector setting.
Any help would be appreciated!
Regards,
Michael
Ah, never mind. I found out that I chose the wrong test suite to begin with
on Team City. :-)
On Sun, Oct 21, 2018 at 10:20 PM Michael Fong wrote:
> Hi, all,
>
> I happened to have a fix for IGNITE-7153 and created pull request for it. (
> https://github.com/apache/ignite/pull/5044)
egards,
Michael
here that is not present in current JVM, even if the
> > rest of them are present and can be used. Thus the configuration becomes
> > fragile. However I don't think it's our job to take care of that.
> >
> > Regards,
> >
> > --
> > Ilya Kasnacheev
&g
t; > configuration?
> >
> > Regards,
> >
> > --
> > Ilya Kasnacheev
> >
> > 2018-07-26 20:16 GMT+03:00 Michael Cherkasov <
> michael.cherka...@gmail.com
> > >:
> >
> > > Hi all,
> > >
> > > I want to ad
Hi all,
I want to add SSLParameters for SslContextFactory.
Right now there's no way to specify a particular set of cipher suites that
you want to use.
there's even old request to add this functionality:
https://issues.apache.org/jira/browse/IGNITE-6167
even with current API you can achieve this,
Michael Bierwirth created IGNITE-8772:
-
Summary: WebSessionFilter does not work with jetty 9.4 anymore
Key: IGNITE-8772
URL: https://issues.apache.org/jira/browse/IGNITE-8772
Project: Ignite
Hi Dmitry,
I think we should make a user to explicitly create data region on a client.
Client nodes aren't supposed to be used for data storing, so if someone
what to use a local cache on a client node, let's make him/her create data
region explicitly. Just to make sure that user knows what he/sh
18:23 GMT+03:00 Andrey Gura :
> Guys,
>
> I doubt that we should include spring-3 module in Apache Ignite 2.4
> because we will drop Java 7 support. Only Spring Framework 4.x
> supports Java 8 without any limitations.
>
> Thoughts?
>
> On Tue, Jan 16, 2018 at 6:01 PM, M
Hi all,
as I can see there are no objections, also the fix was reviewed by Anton V
and Andrey G:
https://issues.apache.org/jira/browse/IGNITE-7050
Could one of committer please integrate the change?
Thanks,
Mike
.
2018-01-12 18:06 GMT+03:00 Michael Cherkasov :
> Hi Val,
>
> >
gt; What are the features that depend on Spring 4?
>
> -Val
>
> On Thu, Jan 11, 2018 at 12:42 PM, Michael Cherkasov <
> michael.cherka...@gmail.com> wrote:
>
> > Hi all,
> >
> > I want to integrate the following change:
> > https://github.com/apache/ign
Hi all,
I want to integrate the following change:
https://github.com/apache/ignite/pull/3147/
It adds spring3 support.
With Ignite versions older 2.1 you can to force maven to use sprint3
dependency and everything would work fine.
With newer versions this doesn't work, because now Ignite uses sp
Hello!
I want to resolve bugs. Please, grant me permission for assign tasks in
jira. My jira account MikeZhur.
Regards,
Mike Zhuravlev
Yes, I've read it. It seems strange build with skiptTest. Well, let it be.
2017-10-24 16:46 GMT+03:00 Николай Ижиков :
> Hello, Michael.
>
> Yes, it OK for local build.
> Do you have a chance to read a link from my previous mail?
>
>
> 2017-10-24 16:39 GMT+03:00 Micha
I ran "mvn package", without -DskiptTests. Is it ok to build project
without test?
2017-10-24 16:03 GMT+03:00 Николай Ижиков :
> Hello, Michael.
>
> Did you run commands described in docs?
>
> https://ignite.apache.org/community/contribute.html
>
> ```
> # Bu
Hello, everybody!
I'm new to Ignite and have just try to build it from master brunch. And
I've got test failure on test NetworkFailureTest. I've got some questions
about this test:
1. Why there are hardcoded ip addresses like 192.168.0.100? I have no such
network on my network card. I thing it's w
pache.org
To:
Cc:
Sent:Fri, 15 Sep 2017 09:57:27 -0700
Subject:Re: Unintuitive error message when invalid marshaller files
found
Mike,
Can you show the exception that is thrown?
-Val
On Fri, Sep 15, 2017 at 7:12 AM, Michael Griggs
wrote:
> This afternoon I came across an unusual case where t
This afternoon I came across an unusual case where there were files in
my work/marshaller folder with invalid filenames. It seems that the
valid format is -[0-9]+.classname[0-9]. However, I had files that
were in the format -[0-9]+.classname - i.e., no trailing zero. Where
these files came from
Dear Igniters,
Whilst checking out BenchmarkDotNet (thanks Pavel!) I came across this
issue [1]. There is some useful discussion in [2] under "Dictionary
vs IDictionary".
It seems that iterating collections via their interfaces has
performance implications, specifically that iterating interfac
Michael Griggs created IGNITE-5785:
--
Summary: C# QuerySqlField attribute should provide access to Order
parameter
Key: IGNITE-5785
URL: https://issues.apache.org/jira/browse/IGNITE-5785
Project
Michael Griggs created IGNITE-5783:
--
Summary: LINQ queries should provide the ability to generate the
SQL query plan
Key: IGNITE-5783
URL: https://issues.apache.org/jira/browse/IGNITE-5783
Project
Michael Griggs created IGNITE-5697:
--
Summary: Web Console should be configurable for IPv4 connections
Key: IGNITE-5697
URL: https://issues.apache.org/jira/browse/IGNITE-5697
Project: Ignite
If taking the quartz route, it be great if ignite could expose a distributed
ignite job store, so you could setup and use quartz in a distributed way, in a
similar way to terracotta or hazelcasts quartz jobstores.
Sent from my iPhone
> On 21 Jun 2017, at 15:43, Alexey Kuznetsov wrote:
>
> Hi
Michael Griggs created IGNITE-5416:
--
Summary: KafkaStreamer: add a helper function for single tuple
streaming
Key: IGNITE-5416
URL: https://issues.apache.org/jira/browse/IGNITE-5416
Project: Ignite
to raise a JIRA and submit a PR to implement this.
MG
[1] https://issues.apache.org/jira/browse/IGNITE-4140
--
Michael Griggs
Consultant, EMEA
GridGain Systems
ablished? Why not keep them
> open, until an endpoint explicitly closes them?
>
> On Tue, May 23, 2017 at 2:16 AM, Sergi Vladykin
> wrote:
>
> > Michael,
> >
> > I see your point. I think it must not be too hard to start asynchronously
> > establishing conne
ation lifetime under load, then
probably this should be addressed first.
- Actual communication is asynchronous, we use NIO for this. If
connection already exists, sendGeneric() basically just puts a message into
a queue.
-Val
On Mon, May 22, 2017 at 7:04 PM, Michael Griggs wrote:
> Hi
Hi Igniters,
Whilst diagnosing a problem with a slow query, I became aware of a potential
issue in the Ignite codebase. When executing a SQL query that is to run
remotely, the IgniteH2Indexing#send() method is called, with a
Collection as one of its parameters. This collection is
iterated seq
Michael Griggs created IGNITE-4878:
--
Summary: IgniteH2Indexing can throw
java.util.ConcurrentModificationException
Key: IGNITE-4878
URL: https://issues.apache.org/jira/browse/IGNITE-4878
Project
> In 99% of cases number of partition is a power of two, because it's
> > the default value. Almost no one changes it. If this change actually
> > provides better distribution, it absolutely makes sense to do it.
> >
> > Michael, can you create a Jira ticket and put you fi
Michael Griggs created IGNITE-4828:
--
Summary: Improve the distribution of keys within partitions
Key: IGNITE-4828
URL: https://issues.apache.org/jira/browse/IGNITE-4828
Project: Ignite
Hi Igniters,
Last week I was working with a group of Ignite users. They are inserting
several million string keys in to a cache. Each string key was
approximately 22-characters in length. When I exported the partition
counts (via GG Visor) I was able to see an unusual periodicity in the
number
Why not / what is wrong with GitHub?
Code is there anyhow...
I've found this seems to be the way a lot of projects have gone.
It allows me to review the code without checkout
I can comment inline with a pr or code commit
I can fork a project to my own space and create a pr back to the main rep
IGFS cache’s HDFS, as like any caching if the underlying store changes you can
end up with a dirty read/inconsistent view, or you end up having to poll the
original source, also if you want to pre-cache new data added to the underlying
the same challenges applies.
This has already been noted a
IGFS cache’s HDFS, as like any caching if the underlying store changes you can
end up with a dirty read/inconsistent view, or you end up having to poll the
original source, also if you want to pre-cache new data added to the underlying
the same challenges applies.
This has already been noted a
As many organisations use an ODPi based Hadoop cluster, namely : HDP, Pivotal,
IBM , these all are provisioned by Apache Ambari, as such to aid wider adoption
and simplify setup and monitoring, i feel it would be advantagous for an Ambari
Plugin to be supported by the ignite. currently it is a v
Michael Golovanov created IGNITE-2338:
-
Summary: KeyType and Value types are show as java.lang.Object
Key: IGNITE-2338
URL: https://issues.apache.org/jira/browse/IGNITE-2338
Project: Ignite
Michael Griggs created IGNITE-2173:
--
Summary: Some log.debug() calls in CacheAbstractJdbcStore.java are
not protected with if (log.isDebugEnabled())
Key: IGNITE-2173
URL: https://issues.apache.org/jira/browse
Michael Griggs created IGNITE-2169:
--
Summary: Ignite-import-schema tool generates incorrect null schema
for JDBC
Key: IGNITE-2169
URL: https://issues.apache.org/jira/browse/IGNITE-2169
Project
Michael Griggs created IGNITE-1903:
--
Summary: CacheStore implementation is serialised to grid clients
whether they require it or not
Key: IGNITE-1903
URL: https://issues.apache.org/jira/browse/IGNITE-1903
Subscribe me.
Is this automated only?
Michael Griggs created IGNITE-1774:
--
Summary: REST API should be implemented using Jersey
Key: IGNITE-1774
URL: https://issues.apache.org/jira/browse/IGNITE-1774
Project: Ignite
Issue Type
Michael Griggs created IGNITE-1773:
--
Summary: replace(), put() or similar modifying operations cannot
be made via the REST API
Key: IGNITE-1773
URL: https://issues.apache.org/jira/browse/IGNITE-1773
80 matches
Mail list logo