Hi L, Please properly subscribe to the mailing list so that the community can receive email notifications for your messages. To subscribe, send empty email to [email protected] and follow simple instructions in the reply.
landon9720 wrote > I have noticed @IgniteInstanceResource not working when used in the > configuration file read when running ignite.sh. Looking the implementation > it doesn't support this. This raises the question: > > How can Spring-managed beans get a reference to Ignite? It seems that in > this part of the program the Ignite has not be instantiated yet. Ignite instance is injected to objects that are executed in scope of Ignite (closures, entry processors, services, etc.). The main use case for such injection is remote execution. I.e., a closure is sent to a remote node and the instance which is actually executing the closure is injected there before the execution. As for Spring beans, you're correct. Ignite will start after the Spring context is initialized, so there is nothing to inject (and actually Ignite is not aware of these annotation, so I don't think it's even possible). What's the exact use case you're trying to address? Can you show an example of something that doesn't work? -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/compute-best-practices-examples-tp6663p8241.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.
