-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Has Ignite 3 been officially released? #11887
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
Comments
I'm not familiar with vertx-ignite, though - can't comment on this topic. |
Thank you very much! |
What about support timespan for Ignite 2? When do you plan stop supporting it? |
There are no plans to stop Ignite 2 support. |
I have a few questions/concerns about Ignite 3. |
|
Hello |
Ignite 3 does not yet have "cache store" like we had in 2.x for RDBMS caching. I recommend sticking with 2.x for those use cases. As said above, 2.x is still being developed and supported, take it safely if it fits the use case. |
Thank you for your response. I have seen the documentation on Table API and Java API that allow table creation along with the SQL data types reference guide but I haven't found a way to create a table with xml and txt data types. even if the data type is not available, I want to be able to create a table where i can store files, string would also do but max length seems to be a limitation on Character String Types. |
IgniteClient client = IgniteClient.builder()
.addresses("localhost:10800")
.build();
TableDefinition tableDefinition = TableDefinition.builder("my_table")
.columns(
ColumnDefinition.column("ID", ColumnType.INT64),
ColumnDefinition.column("VAL", ColumnType.VARCHAR)
)
.primaryKey("ID")
.ifNotExists()
.build();
Table table = client.catalog().createTable(tableDefinition);
KeyValueView<Long, String> kvView = table.keyValueView(Long.class, String.class);
kvView.put(null, 1L, "val"); |
@ptupitsyn Thank you for your response. When the length of the file(text or XML data) exceeds 65536(max length). I get error which led me to conclude that trying to store file data like this wouldnt work even with these data types when normal file size I am working with exceed the length. I dont see a way where I can say something like I want to put a file of 1MB in my cache/table. |
@hsadia538 ohh you are right, turns out there was a bug - 65536 limit is imposed even if you say The bug is fixed but we'll have to wait for 3.1. |
I am a Ignite 2 user.
May I ask has Ignite 3 been officially released? At present, it seems a bit strange that the official website has not been updated to Ignite 3, and the content is still Ignite 2.
What I am more concerned about is whether the currently provided Ignite 3.0.0 version is a reliable and stable version? Can I use it for production projects?
And I use Ignite 2 with Vert.x, When can vertx-ignite project be upgraded to Ignite 3? Of course, it seems that I should ask this question under vertx-ignite, right?
The text was updated successfully, but these errors were encountered: