Reputation: 21
I'm trying to store data from ignite cache to local file system. While running the code, I'm getting
Exception in thread "main" java.lang.IllegalArgumentException: IGFS is not configured:
Can some one help me on this???
Upvotes: 0
Views: 587
Reputation: 8390
IGFS is an in-memory file system, so sounds like it's not what you're looking for. Take a look at Ignite native persistence storage which should help you to achieve your goals: https://apacheignite.readme.io/docs/distributed-persistent-store
Upvotes: 3