Re: Ignite process memory usage continues to grow in docker

2024-04-20 Thread Gianluca Bonetti
Hello You should give some information otherwise the problem statement is too generic. Information such as Ignite version, JVM version, JVM memory parameters, and Docker deployment resources limits are required. Cheers Gianluca On Sat, 20 Apr 2024 at 10:22, 38797715 <38797...@qq.com> wrote: >

Re: [ANNOUNCE] Apache Ignite 2.16.0 Released

2024-01-05 Thread Gianluca Bonetti
Hello I think rolling upgrades are available only for GridGain. https://www.gridgain.com/docs/latest/installation-guide/rolling-upgrades Cheers Gianluca Bonetti On Fri, 5 Jan 2024 at 16:53, John Smith wrote: > Can we Upgrade from 2.13.0 to 2.16.0 Opensource or we need to kill the >

Re: Info about time series support

2024-01-05 Thread Gianluca Bonetti
infrastructure to get some meaningful figures for your specific project and infrastructure. Cheers Gianluca Bonetti On Fri, 5 Jan 2024 at 12:40, Jagat Singh wrote: > Hi Gianluna, > > Does the Python client miss any functionality or performance compared to > Java? > > Thanks >

Re: Info about time series support

2024-01-05 Thread Gianluca Bonetti
/distributed-computing but in this case I think Python is not supported. Cheers Gianluca Bonetti On Fri, 5 Jan 2024 at 08:52, Angelo Immediata wrote: > I'm pretty new to Apache Ignite > > > I asked this also on stackoverflow ( > https://stackoverflow.com/questions/77667648/apache-ign

Re: Request handler for HTTP call for getting the topology

2023-07-25 Thread Gianluca Bonetti
Helo Please refer to the latest version, 2.9.0 is pretty old. Have a look to the section about security for the REST APIs, on the same documentation page. https://ignite.apache.org/docs/2.15.0/restapi#security You would have problems when looking for support from the community with a version so

Re: Starting Ignite Nodes

2023-07-03 Thread Gianluca Bonetti
Hello Arunima I suppose you run Spark in containers so you can create a custom Docker image to start Apache Ignite. You can also start the server nodes programmatically by Java code. Cheers Gianluca On Mon, 3 Jul 2023 at 16:03, Arunima Barik wrote: > I have around 20 spark worker nodes

Re: Re: Cache size getting zero after first restart of server node in 2.13 version

2023-05-17 Thread Gianluca Bonetti
Hello You start a client node, do you start a server node too? Cheers Gianluca On Mon, 15 May 2023 at 13:26, Krishna.Mulumudi.ril.com via user < user@ignite.apache.org> wrote: > It’s persisting data after reboot and able to retrieve inserted records > from cache. Only problem is, cache.size

Re: Re: Cache size getting zero after first restart of server node in 2.13 version

2023-05-15 Thread Gianluca Bonetti
May 13 17:02 metadataWorkDir > > drwxrwxr-x. 3 tibusr tibusr 4096 May 13 17:02 wal > > drwxrwxr-x. 3 tibusr tibusr 4096 May 13 17:02 archive > > [tibusr@*** datastore1]$ > > #

Re: Re: Cache size getting zero after first restart of server node in 2.13 version

2023-05-12 Thread Gianluca Bonetti
or group permission? Any content in these directories from previous executions? Any particular warning or failure description in the log files? Cheers Gianluca On Fri, 12 May 2023 at 19:13, Krishna.Mulumudi.ril.com via user < user@ignite.apache.org> wrote: > Hi Gianluca Bonetti, > > Pl

Re: Cache size getting zero after first restart of server node in 2.13 version

2023-05-12 Thread Gianluca Bonetti
Hello Not enough information, you didn't provide the current full configuration nor a reproducible code test case. Cheers Gianluca On Fri, 12 May 2023 at 09:07, Ganguly Gundeboina wrote: > Hi, > > We recently setup the 2.13 ignite cluster having three server nodes and > enabled write services

Re: Storage Exception using Ignite

2023-03-02 Thread Gianluca Bonetti
Hello It might be a number of things starting from no space available on your disk, partition, and/or permissions and/or other constraints on your workstation imposed by your organization. I suggest you check this with your internal support team to exclude any permission issue on your development

Re: Unable to start Ignite server node through java API

2023-03-01 Thread Gianluca Bonetti
, 1 Mar 2023 at 13:22, Abhishek Ubhe wrote: > Okay, Can you suggest any changes in maven dependencies? > > On Wed, Mar 1, 2023 at 2:07 PM Gianluca Bonetti < > gianluca.bone...@gmail.com> wrote: > >> Hello >> >> It's very strange that this method does not exi

Re: Unable to start Ignite server node through java API

2023-03-01 Thread Gianluca Bonetti
Hello It's very strange that this method does not exist in the H2 library. Can you please check you're not including the H2 library twice? For what I know, Ignite works with h2-1.4.197.jar which is included in the last bundle. I think you are including a newer version instead, or aside. Cheers

Re: H2database dependency in Apache Ignite

2023-01-20 Thread Gianluca Bonetti
Hello I am also using Apache Ignite for some projects, but I don't see any dependency on h2 in my projects. I think h2 dependency is coming from somewhere else. Can you run a "mvn dependency:tree" and share the results? Cheers Gianluca On Fri, 20 Jan 2023 at 09:56, David Cussen wrote: > Hi, >

Re: Cluster shutdown by "to many files open"

2022-12-15 Thread Gianluca Bonetti
Hello I had the same problem, with far more caches in use, as total number (but each cache was very small in size). 32768 files is definitely too low. In my ase, I had to raise it to 262144 hard limit and 131072 soft limit. Please update your /etc/security/limits.conf records for the user you

Re: Ignite-schedule

2022-08-26 Thread Gianluca Bonetti
Hello I don't think that piece of software is being used anywhere. You can see it's an old jar from year 2015, so definitely ancient and not up to date. I never had to use that ignite-schedule anywhere in my projects. Any particular reason to resurrect this old component? Cheers Gianluca On

Re: Cache directory full path on disk

2022-07-11 Thread Gianluca Bonetti
ectory empty or > not and based on that deleting it, I wanted to see if ignite gives any such > functionality out of the box through its APIs. > > On Fri, Jul 8, 2022 at 9:19 PM Gianluca Bonetti < > gianluca.bone...@gmail.com> wrote: > >> Hello Sumit >> >> You can

Re: Cache directory full path on disk

2022-07-08 Thread Gianluca Bonetti
Hello Sumit You can simply clean up with a scheduled cronjob does executes rmdir, if the directory is not empty rmdir will not proceed. Cheers Gianluca On Fri, 8 Jul 2022 at 15:38, Sumit Deshinge wrote: > Any pointers here? > > On Wed, Jun 29, 2022 at 12:55 PM Sumit Deshinge > wrote: > >>

Re: Concurrently update some keys

2022-06-24 Thread Gianluca Bonetti
Hello Unfortunately reiterating the question won't help. If you have no positive answer in days, it means there's no such features in the making. Also this is a community-based mailing list, it's not a commercial support service and there's no ETA for tickets, just best efforts from the Apache

Re: gridgain ultimate edition snapshot error

2022-06-07 Thread Gianluca Bonetti
limitedlocks > > Max pending signals 6330663306 > signals > Max msgqueue size 819200 819200 bytes > > Max nice priority 00 > Max realtime priority 00 > Max realt

Re: gridgain ultimate edition snapshot error

2022-06-07 Thread Gianluca Bonetti
Hello What is returned by this command? # cat /proc/PID/limits Cheers Gianluca Gianluca On Tue, 7 Jun 2022 at 07:35, Surinder Mehra wrote: > Hi, > I was going through this post on stackoverflow which is about the same > issue. The fact that snapshot works for apache ignite bit not in

Re: Unknown connection detected & Failed to process selector key

2021-12-01 Thread Gianluca Bonetti
Hello Siva If running in a shared cloud environment, you should put best security practices in place to secure all of your servers from connections from unknown hosts (iptables rules) especially on sensitive ports as databases or Apache Ignite. It does seem that this address in the range

Re: security issues question

2021-11-18 Thread Gianluca Bonetti
Hello Timothy I usually add iptables rules on top of every deployment, to block access from unknown locations to Apache Ignite and other services (Tomcat to name one, and others) My typical iptables rules, embedded into /etc/rc.local looks like this: iptables -A INPUT -p tcp --match multiport

Re: Ignite on a server

2021-11-16 Thread Gianluca Bonetti
Hello Timothy I usually deploy on more servers, but just 2 to 4, I don't have larger deployments. I also have single server deployments. In my opinion and personal experience, native Java integration by Ignite with persistent storage is definitely better than a "hybrid" solution (some other

Re: [External]Re: Client taking long time to connect to cluster

2021-09-02 Thread Gianluca Bonetti
_271-b09) > > Java HotSpot(TM) 64-Bit Server VM (build 25.271-b09, mixed mode) > > > > > > java.heap.size.max=2048M > > java.heap.size.initial=512M > > java.extended.properties=-XX\:+UseConcMarkSweepGC > -XX\:+CMSPermGenSweepingEnabled -XX\:+CMSClassUnloadingEnabled >

Re: [External]Re: Client taking long time to connect to cluster

2021-09-02 Thread Gianluca Bonetti
Hello I don't know if I can help you, but I'll give it a try, as I had problems for slow startup time in the past, and I solved them. Can you share a couple of information about JVM? Which JVM version are you using on the two different setups? Which JVM params are you using for them? Thank you

Re: Slow startup of server node and query

2021-04-04 Thread Gianluca Bonetti
Hi there Il giorno dom 4 apr 2021 alle ore 21:39 DonTequila ha scritto: > Hi, > > thanks for your suggestions. Unfortunately this didn't help improving the > startup time. > I only had such slow startup times because of the two problems I described before. I had a look at your logs and

Re: Slow startup of server node and query

2021-03-31 Thread Gianluca Bonetti
Hello It happened to me on a few occasions. I have a couple of suggestions which may, or may not, solve your problem. Please try :) First, please ensure you use /dev/urandom as an entropy source. /dev/random does a better job, but may cause long pauses (10 minutes or longer may happen easier

Re: Ignite Restart takes long time

2020-04-07 Thread Gianluca Bonetti
krkumar24061...@gmail.com < krkumar24061...@gmail.com> ha scritto: > Hi Gianluca Bonetti - Thanks for the help. I actually have that JVM > parameter > and now I have removed that. Looks like its working and I will do few more > rounds of testing and then update you. > > Also any ide

Re: Ignite Restart takes long time

2020-04-07 Thread Gianluca Bonetti
Hello Kumar It seems a problem similar to the one I had in the past. Please check that you are running the JVM *without* the "-XX:+AlwaysPreTouch" parameter. Also, in my experience, using /dev/random as entropy source could block startup for long time, hence I prefer using /dev/urandom (set

Re: Cannot connect to Ignite

2020-03-01 Thread Gianluca Bonetti
think it would be fixed by using the internal IP addresses. Best regards Gianluca Bonetti Il giorno dom 1 mar 2020 alle ore 08:39 Stéphane Thibaud < snthib...@gmail.com> ha scritto: > Hello Ignite users,, > > I suddenly am unable to connect to the Ignite instance. I am runn

Re: Version Mismatch Check

2019-07-05 Thread Gianluca Bonetti
Hello For what I know, Apache Ignite does not allow different versions to run on the same cluster. I think that GridGain commercial version has support for running nodes with different versions on same cluster. Cheers Gianluca Il giorno ven 5 lug 2019 alle ore 08:51 Ankit Batra ha scritto: >

Re: starting ignite in docker

2019-04-04 Thread Gianluca Bonetti
configuration file in $PWD, and the name of the file itself. Best regards Gianluca Bonetti Il giorno mer 3 apr 2019 alle ore 14:31 Coleman, JohnSteven (Agoda) < johnsteven.cole...@agoda.com> ha scritto: > I’d like to pass a local configuration file to docker as below, but ignite >

Re: When will Apache Ignite support Java 11?

2018-12-04 Thread Gianluca Bonetti
Hello Loredana You can switch to OpenJDK 8, which would be supported also for security updates by all the major Linux distribution. OpenJDK is production ready since years, actually Oracle's JDK is now a build of OpenJDK, with some additions. Cheers Gianluca Il giorno lun 3 dic 2018 alle ore

Re: Long activation times with Ignite persistence enabled

2018-11-05 Thread Gianluca Bonetti
Hello In my case of slow startup, as suggested from a member of this mailing list, I deleted the -XX:+AlwaysPreTouch command line option from JVM launch, and the cluster got back to very fast startup. Don't know if you are using this option, hope it helps. Cheers Gianluca Il giorno lun 5 nov

Re: Cluster freeze with SSL enabled and JDK 11

2018-10-19 Thread Gianluca Bonetti
Hello I think that the only supported version is Java 8 right now, and Java 11 support should come with 2.7 or 2.8 release. https://issues.apache.org/jira/browse/IGNITE-8441 Cheers Gianluca Il giorno gio 18 ott 2018 alle ore 23:56 Loredana Radulescu Ivanoff < lradu...@tibco.com> ha scritto: >

Re: Troubles in restarting Ignite with persistence enabled

2018-10-07 Thread Gianluca Bonetti
. Cheers Gianluca Il giorno mar 2 ott 2018 alle ore 10:31 Gianluca Bonetti < gianluca.bone...@gmail.com> ha scritto: > Hello everyone > > This is my first question to the mailing list, which I follow since some > time, to get hints about using Ignite. > Until now I used in other

Re: Troubles in restarting Ignite with persistence enabled

2018-10-02 Thread Gianluca Bonetti
ss.redhat.com/solutions/2685771> > > > ---- > Hamed > > > > > > > On Tuesday, October 2, 2018, 12:01:38 PM GMT+3:30, Gianluca Bonetti < > gianluca.bone...@gmail.com> wrote: > > > > > > Hello everyone > > This is my first quest

Re: Troubles in restarting Ignite with persistence enabled

2018-10-02 Thread Gianluca Bonetti
s/2685771> > > Java process takes a long time with -XX:+AlwaysPreTouch - Red Hat Custom... > > <https://access.redhat.com/solutions/2685771> > > > > Hamed > > > > > > > On Tuesday, October 2, 2018, 12:01:38 PM GMT+3:30, G

Troubles in restarting Ignite with persistence enabled

2018-10-02 Thread Gianluca Bonetti
Hello everyone This is my first question to the mailing list, which I follow since some time, to get hints about using Ignite. Until now I used in other softwares development, and Ignite always rocked and made the difference, hence I literally love it :) Now I am facing troubles in restarting an