我正在尝试使用GAE中的计划备份机制,但是继续收到错误消息,而不是cron.xml有语法错误。使用Google的示例会显示相同的错误消息。
我正在使用sdk 1.7.0
<?xml version="1.0" encoding="UTF-8"?>
<cronentries>
<cron>
<url>/_ah/datastore_admin/backup.create?name=BackupToCloud&kind=LogTitle&kind=EventLog&filesystem=gs&gs_bucket_name=whitsend</url>
<description>My Daily Backup</description>
<schedule>every 12 hours</schedule>
<target>ah-builtin-python-bundle</target>
</cron>
</cronentries>
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="cronentries" type="cronentries-Type"/>
<xs:complexType name="cronentries-Type">
<xs:sequence>
<xs:element type="cron-Type" name="cron" maxOccurs="unbounded" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="cron-Type">
<xs:all>
<xs:element type="xs:string" name="url"/>
<xs:element type="xs:string" name="description" minOccurs="0"/>
<xs:element type="xs:string" name="schedule"/>
<xs:element type="xs:string" name="timezone" minOccurs="0"/>
<xs:element type="target-Type" name="target" minOccurs="0"/>
</xs:all>
</xs:complexType>
<xs:simpleType name="target-Type">
<xs:restriction base="xs:string">
<xs:pattern value="[a-z\d\-]{1,100}"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>
“对实体的引用”种类“必须以';'结尾分隔符“。我在使用在线xml验证器检查xml有效性时收到相同的错误消息。
==&GT;有人面临同样的问题,如果是这样,你是如何解决的?
答案 0 :(得分:2)
尝试逃避&amp;使用&
阅读:替换&amp;在具有&
答案 1 :(得分:0)
我们(Streak.com)开源了一个工具,可以执行自动备份以及将日志和数据存储数据自动推送到bigquery。该项目位于:https://github.com/StreakYC/mache