-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Calling DataLoader.addData(object) 4 times throws org.h2.jdbc.JdbcSQLException: Table "..." already exists #76
Comments
If only two nodes there's no error. 2-node configuration : (work well)
3-node configuration : (error)
|
Thanks for reporting. This issue is related to class peer-deployment when using dataLoader, we are looking into this. As a workaround you can switch from dataLoader to cache API:
|
Hi, I am using 6.6.3 and get similary error with dataLoader with two nodes (separate JVMs) but not with one. Is this fixed already ? error class org.gridgain.grid.GridException: Failed to finish operation (too many remaps): 32 Cheers, |
Can you please configure "peerClassLoadingEnabled" to false in configuration and make all the classes available on all nodes and see if issue is reproducible? Thanks! |
I set it to false, but still getting the same exception. It's bit strange as the exceptions are raised for few first items but rest of the data gets uploaded quite allright. |
Can you try setting it explicitly on GridConfiguration.setPeerClassLoadingEnabled(false)? Also, can you paste your full exception stack trace here? I want to make sure that it is absolutely identical exception. |
Data load EXCEPTION: class org.gridgain.grid.GridException: Failed to finish operation (too many remaps): 32 org.gridgain.grid.kernal.processors.dataload.GridDataLoaderImpl.load0(GridDataLoaderImpl.java:427) |
We cannot reproduce this issue internally. It would help a great deal if you could provide a small reproducible example that we could test on. Would this be possible? |
Sure thing. It will take a moment but I will drop you an email. |
At least on my machine, calling 3 times work, 4 times it errors.
GridGain nodes = 3. If single node there's no error.
GridGain 6.1.9.
Code: https://github.com/ceefour/gggettingstarted/blob/toomanyremaps/src/main/java/com/hendyirawan/gggettingstarted/simple/LoadData.java
Error:
The text was updated successfully, but these errors were encountered: