Re: TC bot problems

2021-07-12 Thread Dmitry Pavlov
Hi Alexey, Base branches dropdown menu is being built using pre-configured list of branches. So it works as expected. Sincerely, Dmitriy Pavlov On 2021/07/09 14:16:27, Alexey Gidaspov wrote: > Hi, all! > > I'm trying to compare release 2.11 against 2.10. I'm using [1] and I can't > see any

Re: TC bot problems

2021-07-12 Thread Alexey Gidaspov
Hi, Dmitriy! Ok, I got it. But drop down list is only one part of the problem. Another part - absence of data relating to 2.10 release. On 2021/07/12 09:37:03, Dmitry Pavlov wrote: > Hi Alexey, > > Base branches dropdown menu is being built using pre-configured list of > branches. > > So it

Re: [ANNOUNCE] Apache Ignite 3.0.0-alpha2 is released!

2021-07-12 Thread Kseniya Romanova
Hi Igniters! Please join the community gathering on July 20 to learn more about Alpha 2 and share your experience with it: https://www.meetup.com/Apache-Ignite-Virtual-Meetup/events/279417063/ ср, 30 июн. 2021 г. в 22:42, Valentin Kulichenko < valentin.kuliche...@gmail.com>: > Igniters, > > I'm

Review IGNITE-12749

2021-07-12 Thread Yaroslav Molochkov
Hi! Can someone please review my PR in IGNITE-12749 ticket?

Re: Ignite 3.0 Tuple API: how to check if value is null?

2021-07-12 Thread Alexei Scherbakov
+1 to make some improvements here. Using Optional doesn't make sense to me because it always involves boxing (and we already have tuple.value(colName)). I suggest to add methods similar to: tuple.doubleValue("field", double dfltValue) which returns default value if the field is null. ср, 7 ию

Re: Ignite 3.0 Tuple API: how to check if value is null?

2021-07-12 Thread Alexei Scherbakov
tuple.isNull(colName) to test for emptiness also seems useful. пн, 12 июл. 2021 г. в 18:20, Alexei Scherbakov : > +1 to make some improvements here. > > Using Optional doesn't make sense to me because it always involves boxing > (and we already have tuple.value(colName)). > > I suggest to add met

Re: TC bot problems

2021-07-12 Thread Dmitry Pavlov
That's really strange thing. I can't see anything at TC bot code that migth stop from loading history of runs. But locally I see the same picture. Folks, who could have an access to TC bot config. Could you please double check what is set in the branches.json? If we set up baseBranchForTc as ign

Re: Ignite 3.0 Ignition API, node startup, and thin client startup

2021-07-12 Thread Valentin Kulichenko
Pavel, If Ignition is the single entry point, it needs to have access to the server node instance, so it needs to depend on ignite-runner. Therefore, including Ignition in ignite-client means that ignite-client depends on ignite-runner, which we cannot have. -Val On Sat, Jul 10, 2021 at 4:17 AM

[MTCGA]: new failures in builds [6083640] needs to be handled

2021-07-12 Thread dpavlov . tasks
Hi Igniters, I've detected some new issue on TeamCity to be handled. You are more than welcomed to help. If your changes can lead to this failure(s): We're grateful that you were a volunteer to make the contribution to this project, but things change and you may no longer be able to finalize

Re: Ignite 3.0 Ignition API, node startup, and thin client startup

2021-07-12 Thread Pavel Tupitsyn
Val, Ivan D has convinced me above to try the builder pattern, which is used by many other drivers (Redis, Mongo, etc). With IgniteClient class in ignite-client module: Ignite client = IgniteClient.builder() .setAddresses("127.0.0.1:10800") .setTimeout(5000) .build(); What do you thi