Merge pull request #10499 from thalesmg/schema-registry-protobuf-rocksdb-v50
feat(schema_registry): use rocksdb as table type for protobuf cache
This commit is contained in:
commit
1557bf50e6
|
@ -1,6 +1,6 @@
|
|||
{application, emqx_ee_schema_registry, [
|
||||
{description, "EMQX Schema Registry"},
|
||||
{vsn, "0.1.1"},
|
||||
{vsn, "0.1.2"},
|
||||
{registered, [emqx_ee_schema_registry_sup]},
|
||||
{mod, {emqx_ee_schema_registry_app, []}},
|
||||
{applications, [
|
||||
|
|
|
@ -179,7 +179,7 @@ create_tables() ->
|
|||
ok = mria:create_table(?PROTOBUF_CACHE_TAB, [
|
||||
{type, set},
|
||||
{rlog_shard, ?SCHEMA_REGISTRY_SHARD},
|
||||
{storage, disc_only_copies},
|
||||
{storage, rocksdb_copies},
|
||||
{record_name, protobuf_cache},
|
||||
{attributes, record_info(fields, protobuf_cache)}
|
||||
]),
|
||||
|
|
Loading…
Reference in New Issue