Hi!
You can always use node filter to control where the cache is, I am not
sure if there is a way to control distribution though, I guess it might
be possible to use affinity keys and some kind of custom affinity
function that is able to distribute the keys depending on some custom
criteria,
Hi,
When SQL is executed, does ignite always scan only primary partitions of
all available nodes in cluster irrespective of cache mode partitioned or
replicated?
Thanks ,
Prasad
Robert,
Could you please describe your use case? There several options that might
suit your needs.
Denis
On Thursday, October 24, 2019, Munoz, Robert wrote:
> Hello,
>
>
>
> With the removal of Hadoop accelerator from ignite binaries, are there any
> other options for using HDFS as persistence
Normally, Apache Ignite distribute data equally to nodes
How can I control this distribution?
I want to distribute more data to some nodes, and less data to other nodes
I also want to choose node to store cache
Thank you!!
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/
Normally, Apache Ignite distribute data equally to nodes
How can I control this distribution?
I want to distribute more data to some nodes, and less data to other nodes
I also want to choose node to store cache
Thank you!!
Sent from Mail for Windows 10
I got it so I have to build a jar move to aws ignite cluster node and run
it on the node.
Thanks
Sri
On Thursday, October 24, 2019, Denis Magda wrote:
> Sri,
>
> That's wrong to assume that the Ignite thin client is the only way to
> access data stored in AWS or other cloud environments. The pr
Hi!
You can use IgniteCache.close() --
https://ignite.apache.org/releases/latest/javadoc/org/apache/ignite/IgniteCache.html#close--
Or IgniteCache.destroy() --
https://ignite.apache.org/releases/latest/javadoc/org/apache/ignite/IgniteCache.html#destroy--
To close or destroy a specific
Hello,
With the removal of Hadoop accelerator from ignite binaries, are there any
other options for using HDFS as persistence store?
Thanks,
Robert Munoz
This message contains confidential information and is intended only for the
individual named. If you are not the named addressee, you shou
Hi,
1)Is there any way to invalidate specific cache partitions?
2) is there any way to invalidate the complete cache?
Thanks,
Prasad
Sri,
That's wrong to assume that the Ignite thin client is the only way to
access data stored in AWS or other cloud environments. The problems you are
experiencing are caused by the fact that your application is running on the
laptop while the cluster (server nodes) is within an AWS network.
If y
Looping in dev list.
Folks, does anybody have any experience with Striim or ready to research?
https://www.striim.com/sources-and-targets/
It might be an option for change-data-capture scenarios from Ignite
clusters (with and without persistence) to other stores like RDBMS or
Cassandra.
-
Denis
Andrey, Alexey, Nikolay,
Do we have any solutions for calling Ignite + Spark implementation from
Python?
-
Denis
On Tue, Oct 22, 2019 at 3:41 AM Muhammed Favas <
favas.muham...@expeedsoftware.com> wrote:
> Hi,
>
>
>
> Is there a way to bulk load python dataframe values to ignite table?
>
>
>
>
Hi,
What is the application doing while you are changing the topology? Is the
cluster under the load?
Generally, we've added critical failure handlers in the latest version of
Ignite and the message reported is printed out by them:
https://apacheignite.readme.io/docs/critical-failures-handling
-
Hey,
Are you already using Ignite together with JMS and what is the primary
reason for the JMS replacement?
-
Denis
On Wed, Oct 23, 2019 at 4:41 AM pauld wrote:
> I have a system that uses JMS topics with a durable subscription to process
> events between different applications, and the durab
Hi Cihan,
Is there any reason why you cannot separate applications from Ignite as a
store/database? The embedded mode makes sense for low-latency use cases
while the standard client-server deployment option is better in terms of
manageability, scalability:
https://www.gridgain.com/docs/latest/inst
Ignite user and dev community,
Next Tuesday I'll be in NY conducting in-memory computing essentials
session for one of the biggest meetup communities of the city [1]. Stop by
if you're around. Let's meet in person. Once the main track is over we can
stay and have a couple of beers/sodas discussing
Is it possible this is somehow causing the issue of the node stopping?
On Thu, 24 Oct 2019 at 11:24, Ilya Kasnacheev
wrote:
> Hello!
>
> This likely means that you have reachability problems in your cluster,
> such as, xxx.xxx.xxx.68 can connect to xxx.xxx.xxx.82 (on range
> 47100-47200) but not
Result should not be same, could you please share your logs. Couple of issues
here.
1) *With out fix *- I got null instead of "Address.street" value
[[1, Person{name='john', address=Address{street='baker', number=221}}, john,
Address{street='baker', number=221}, *null*]]
*With fix*
[[1, Pe
Thanks for the info, Ilya!
Do you think it would have any actual risk to use PartitionLossPolicy.IGNORE
with my configuration? Because as I understand the data is fully replicated on
each node, so it cannot really lose a particular partition; or do I
misunderstand?
Is there a ticket/link where
Hello!
You will soon be able to use topology auto-adjust. Until then, I guess you
will have to fix topology on entry of every node.
--
Ilya Kasnacheev
чт, 24 окт. 2019 г. в 14:52, Cihan Keser :
> Hi,
>
> I have a case where I'm trying to use Ignite (embedded i.e.:
> Ignition.getOrStart(igniteC
Hello!
I start ignite-client but it never does anything, and in thread dump I
don't see any relevant threads.
Can you perhaps make the error more apparent? I have trouble understanding
your scenario.
You can start client node (by setting cfg.clientMode=true) to avoid having
cache data locally.
Hello!
I have noticed that you have READ_COMMITTED isolation when reading. It will
doubtlessly lead to situation when you read value from TXN-1 to set1 while
TXN is in progress, and then will read value from TXN to set2 because it is
committed already.
Don't you see it as a problem?
Regards,
--
Hello!
This likely means that you have reachability problems in your cluster, such
as, xxx.xxx.xxx.68 can connect to xxx.xxx.xxx.82 (on range 47100-47200) but
not the other way around.
Regards,
--
Ilya Kasnacheev
пн, 21 окт. 2019 г. в 19:36, John Smith :
> I also see this printing every few s
Hi,
FULL OUTER JOIN is not supported as it is not supported in H2 [1]
(Ignite uses H2 internally for query processing).
[1] https://github.com/h2database/h2database/issues/457
чт, 24 окт. 2019 г. в 14:03, DS :
>
> I am giving the syntax as :
>
> SELECT * FROM person Outer join city ON person.
Hi,
I have a case where I'm trying to use Ignite (embedded i.e.:
Ignition.getOrStart(igniteConfiguration) called in a Spring bean definition) in
a multi-node Spring Boot application with active-active setup. My goal is to
utilize Ignite as a shared, atomic, and persistent key-value store.
For t
I am giving the syntax as :
SELECT * FROM person Outer join city ON person.city_id = city.city_id
Same query works well with inner ,left ,right join .
Please correct me if i am doing something wrong.
P.S.
Both tables have index over city_id column
--
Sent from: http://apache-ignite-users
Hi Hemambara,
I rewrote my example in form of a junit test [1]. And I suppose that
it should pass to make the feature useful. Could please check it and
tell me if my understanding is wrong. I tried this test with proposed
fix and without it. Result was the same.
[1]
https://gist.githubuserconten
27 matches
Mail list logo