|
| 1 | +<infinispan> |
| 2 | +<cache-container name="default" statistics="true"> |
| 3 | + <metrics accurate-size="true"/> |
| 4 | + <tracing collector-endpoint="http://localhost:4318" |
| 5 | + enabled="true" |
| 6 | + exporter-protocol="OTLP" |
| 7 | + service-name="infinispan-server" |
| 8 | + security="false" /> |
| 9 | + <security> |
| 10 | + <authorization/> |
| 11 | + </security> |
| 12 | + <distributed-cache name="people" statistics="true"> |
| 13 | + <encoding media-type="application/x-protostream"/> |
| 14 | + <transaction mode="NON_XA"/> |
| 15 | + </distributed-cache> |
| 16 | + <distributed-cache-configuration name="e2e-test-template"> |
| 17 | + <encoding media-type="application/x-protostream"/> |
| 18 | + </distributed-cache-configuration> |
| 19 | + <distributed-cache name="heap-test" statistics="true"> |
| 20 | + <encoding media-type="application/x-protostream"/> |
| 21 | + <transaction mode="NON_XA"/> |
| 22 | + <memory storage="HEAP" max-size="1.5GB"/> |
| 23 | + </distributed-cache> |
| 24 | + <distributed-cache name="off-heap-test" statistics="true"> |
| 25 | + <encoding media-type="application/x-protostream"/> |
| 26 | + <transaction mode="NON_XA"/> |
| 27 | + <memory storage="OFF_HEAP"/> |
| 28 | + </distributed-cache> |
| 29 | + <invalidation-cache name="invalidationCache" mode="SYNC" statistics="true"> |
| 30 | + <encoding media-type="application/x-protostream"/> |
| 31 | + </invalidation-cache> |
| 32 | + <distributed-cache name="a-rbac-test-cache" statistics="true"> |
| 33 | + <encoding media-type="application/x-protostream"/> |
| 34 | + <security> |
| 35 | + <authorization enabled="true" roles="admin application deployer"/> |
| 36 | + </security> |
| 37 | + <indexing enabled="true" startup-mode="reindex"> |
| 38 | + <indexed-entities> |
| 39 | + <indexed-entity>org.infinispan.Car</indexed-entity> |
| 40 | + </indexed-entities> |
| 41 | + </indexing> |
| 42 | + <persistence passivation="false"> |
| 43 | + <file-store> |
| 44 | + <data path="data"/> |
| 45 | + <index path="index"/> |
| 46 | + </file-store> |
| 47 | + </persistence> |
| 48 | + <memory storage="HEAP" max-size="1.5GB"/> |
| 49 | + </distributed-cache> |
| 50 | +</cache-container> |
| 51 | + <server> |
| 52 | + <endpoints> |
| 53 | + <endpoint socket-binding="default" security-realm="default" > |
| 54 | + <hotrod-connector name="hotrod"> |
| 55 | + <authentication> |
| 56 | + <sasl mechanisms="PLAIN" server-name="infinispan"/> |
| 57 | + </authentication> |
| 58 | + </hotrod-connector> |
| 59 | + <rest-connector name="rest"> |
| 60 | + <authentication mechanisms="BASIC DIGEST"/> |
| 61 | + </rest-connector> |
| 62 | + </endpoint> |
| 63 | + </endpoints> |
| 64 | +</server> |
| 65 | +</infinispan> |
0 commit comments