Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonnerothin/f262e22d939c104ae8da1f8dad1dd057 to your computer and use it in GitHub Desktop.
Save jasonnerothin/f262e22d939c104ae8da1f8dad1dd057 to your computer and use it in GitHub Desktop.
parser error
<!-- PARSES -->
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:os-core="http://www.openspaces.org/schema/core"
xmlns:os-events="http://www.openspaces.org/schema/events"
xmlns:os-remoting="http://www.openspaces.org/schema/remoting"
xmlns:os-sla="http://www.openspaces.org/schema/sla"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd
http://www.openspaces.org/schema/core http://www.openspaces.org/schema/12.1/core/openspaces-core.xsd
http://www.openspaces.org/schema/events http://www.openspaces.org/schema/12.1/events/openspaces-events.xsd
http://www.openspaces.org/schema/remoting http://www.openspaces.org/schema/12.1/remoting/openspaces-remoting.xsd
http://www.openspaces.org/schema/sla http://www.openspaces.org/schema/12.1/sla/openspaces-sla.xsd">
<!--<os-core:local-view space="space">-->
<!--<os-core:properties>-->
<!--<props><prop key="foo">88</prop></props>-->
<!--</os-core:properties>-->
<!--<os-core:view-query where="bar=baz"/>-->
<!--</os-core:local-view>-->
<!--<os-core:local-view id="localViewSpace" space="space"-->
<!--batch-size="1000" batch-timeout="100" max-disconnection-duration="60000">-->
<!--<os-core:properties>-->
<!--<props>-->
<!--<prop key="space-config.engine.memory_usage.write_only_block_percentage">88</prop>-->
<!--<prop key="space-config.engine.memory_usage.write_only_check_percentage">86</prop>-->
<!--<prop key="space-config.engine.memory_usage.high_watermark_percentage">90</prop>-->
<!--<prop key="space-config.engine.memory_usage.retry_count">5</prop>-->
<!--<prop key="space-config.engine.memory_usage.explicit">false</prop>-->
<!--<prop key="space-config.engine.memory_usage.retry_yield_time">50</prop>-->
<!--</props>-->
<!--</os-core:properties>-->
<!--<os-core:view-query class="com.gigaspaces.app.event_processing.common.Data" where="processed=true"/>-->
<!--<os-core:view-query class="com.aa.crew.cache.model.shared.Equipment"-->
<!--where="" />-->
<!--<os-core:view-query class="com.aa.crew.cache.model.shared.StationTimeInfo"-->
<!--where="" />-->
<!--</os-core:local-view>-->
<!--<os-core:giga-space id="localView" space="localViewSpace"/>-->
</beans>
<!-- DOES NOT PARSE -->
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:os-core="http://www.openspaces.org/schema/core"
xmlns:os-events="http://www.openspaces.org/schema/events"
xmlns:os-remoting="http://www.openspaces.org/schema/remoting"
xmlns:os-sla="http://www.openspaces.org/schema/sla"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd
http://www.openspaces.org/schema/core http://www.openspaces.org/schema/12.1/core/openspaces-core.xsd
http://www.openspaces.org/schema/events http://www.openspaces.org/schema/12.1/events/openspaces-events.xsd
http://www.openspaces.org/schema/remoting http://www.openspaces.org/schema/12.1/remoting/openspaces-remoting.xsd
http://www.openspaces.org/schema/sla http://www.openspaces.org/schema/12.1/sla/openspaces-sla.xsd">
<os-core:local-view space="space">
<os-core:properties>
<props><prop key="foo">88</prop></props>
</os-core:properties>
<os-core:view-query where="bar=baz"/>
</os-core:local-view>
<!--<os-core:local-view id="localViewSpace" space="space"-->
<!--batch-size="1000" batch-timeout="100" max-disconnection-duration="60000">-->
<!--<os-core:properties>-->
<!--<props>-->
<!--<prop key="space-config.engine.memory_usage.write_only_block_percentage">88</prop>-->
<!--<prop key="space-config.engine.memory_usage.write_only_check_percentage">86</prop>-->
<!--<prop key="space-config.engine.memory_usage.high_watermark_percentage">90</prop>-->
<!--<prop key="space-config.engine.memory_usage.retry_count">5</prop>-->
<!--<prop key="space-config.engine.memory_usage.explicit">false</prop>-->
<!--<prop key="space-config.engine.memory_usage.retry_yield_time">50</prop>-->
<!--</props>-->
<!--</os-core:properties>-->
<!--<os-core:view-query class="com.gigaspaces.app.event_processing.common.Data" where="processed=true"/>-->
<!--<os-core:view-query class="com.aa.crew.cache.model.shared.Equipment"-->
<!--where="" />-->
<!--<os-core:view-query class="com.aa.crew.cache.model.shared.StationTimeInfo"-->
<!--where="" />-->
<!--</os-core:local-view>-->
<!--<os-core:giga-space id="localView" space="localViewSpace"/>-->
</beans>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment