簡體   English   中英

Infinispan JDBC緩存存儲

[英]Infinispan JDBC Cache Store

我想使用Infinispan JDBC緩存存儲而不是LevelDb緩存存儲。

以下是我的配置:

<infinispan
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="urn:infinispan:config:6.0 http://www.infinispan.org/schemas/infinispan-config-6.0.xsd
                       urn:infinispan:config:jdbc:6.0 http://www.infinispan.org/schemas/infinispan-cachestore-jdbc-config-6.0.xsd"
   xmlns="urn:infinispan:config:6.0"
   xmlns:jdbc="urn:infinispan:config:jdbc:6.0" >
    <global>
        <globalJmxStatistics enabled="false" allowDuplicateDomains="true"/>
    </global>

    <!-- Define the cache loaders (i.e., cache stores). Passivation is false
     because we want *all* data to be persisted, not just what doesn't fit
     into memory. -->
    <persistence>
        <mixedKeyedJdbcStore fetchPersistentState="false" ignoreModifications="false" purgeOnStartup="false">
            <simpleConnection connectionUrl="jdbc:postgresql://localhost:5432/infinispan_binary_based" driverClass="org.postgresql.Driver" username="postgres" password="postgres"/>
            <stringKeyedTable prefix="ISPN_MIXED_STR_TABLE" createOnStart="true" dropOnExit="true">
                <idColumn name="ID_COLUMN" type="VARCHAR(255)" />
                <dataColumn name="DATA_COLUMN" type="BINARY" />
                <timestampColumn name="TIMESTAMP_COLUMN" type="BIGINT" />
            </stringKeyedTable>
            <binaryKeyedTable prefix="ISPN_MIXED_BINARY_TABLE" createOnStart="true" dropOnExit="true">
                <idColumn name="ID_COLUMN" type="VARCHAR(255)" />
                <dataColumn name="DATA_COLUMN" type="BINARY" />
                <timestampColumn name="TIMESTAMP_COLUMN" type="BIGINT" />
            </binaryKeyedTable>
        </mixedKeyedJdbcStore>
    </persistence>
</namedCache>

但我不斷收到此異常:

Message: Unexpected element '{urn:infinispan:config:jdbc:6.0}mixedKeyedJdbcStore'  
  at org.infinispan.configuration.parsing.ParserRegistry.parseElement(ParserRegistry.java:139) [infinispan-core-6.0.2.Final.jar:6.0.2.Final]  
  at org.infinispan.configuration.parsing.XMLExtendedStreamReaderImpl.handleAny(XMLExtendedStreamReaderImpl.java:37) [infinispan-core-6.0.2.Final.jar:6.0.2.Final]  
  at org.infinispan.configuration.parsing.Parser60.parsePersistence(Parser60.java:558) [infinispan-core-6.0.2.Final.jar:6.0.2.Final] 

我從依賴項中刪除了leveldb緩存存儲罐,並用jdbc緩存存儲罐替換了它。

你能告訴我是否錯過了什么嗎? 請幫助?

先感謝您。

您在聲明一個名為jdbc的名稱空間,但未使用它。 您需要在blendKeyedJdbcStore中的所有標簽前面加上jdbc:前綴,或使用如下所示的默認名稱空間:

<infinispan
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="urn:infinispan:config:6.0 http://www.infinispan.org/schemas/infinispan-config-6.0.xsd
                   urn:infinispan:config:jdbc:6.0 http://www.infinispan.org/schemas/infinispan-cachestore-jdbc-config-6.0.xsd"
    xmlns="urn:infinispan:config:6.0"
    xmlns:jdbc="urn:infinispan:config:jdbc:6.0" >
<global>
    <globalJmxStatistics enabled="false" allowDuplicateDomains="true"/>
</global>

<!-- Define the cache loaders (i.e., cache stores). Passivation is false
 because we want *all* data to be persisted, not just what doesn't fit
 into memory. -->
<namedCache name="testCache">
    <persistence>
        <mixedKeyedJdbcStore xmlns="urn:infinispan:config:jdbc:6.0" fetchPersistentState="false" ignoreModifications="false" purgeOnStartup="false">
            <simpleConnection connectionUrl="jdbc:postgresql://localhost:5432/infinispan_binary_based" driverClass="org.postgresql.Driver" username="postgres" password="postgres"/>
            <stringKeyedTable prefix="ISPN_MIXED_STR_TABLE" createOnStart="true" dropOnExit="true">
                <idColumn name="ID_COLUMN" type="VARCHAR(255)" />
                <dataColumn name="DATA_COLUMN" type="BINARY" />
                <timestampColumn name="TIMESTAMP_COLUMN" type="BIGINT" />
            </stringKeyedTable>
            <binaryKeyedTable prefix="ISPN_MIXED_BINARY_TABLE" createOnStart="true" dropOnExit="true">
                <idColumn name="ID_COLUMN" type="VARCHAR(255)" />
                <dataColumn name="DATA_COLUMN" type="BINARY" />
                <timestampColumn name="TIMESTAMP_COLUMN" type="BIGINT" />
            </binaryKeyedTable>
        </mixedKeyedJdbcStore>
    </persistence>
</namedCache>

您的配置也缺少起始的namedCache標記,但是我認為這是一個復制粘貼錯誤,否則錯誤消息將有所不同。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM