Hi, Ignite really caches metadata but restarting cluster clears the cache.
If you want to change field type at runtime (without restarting the
cluster), then you need to first remove field and then add the field
something like:
BinaryObject o = binary.builder("MyType").removeField("f").build();
o = o.toBuilder().setField("f", 10000, Integer.class);
