Hello!

The following index definition keeps giving "Error". What are the
possible reasons for an index to be error prone?

   <datastore-index kind="DbContact" ancestor="false" source="auto">
        <property name="isCustomerProfile" direction="asc"/>
        <property name="keyWords_S" direction="asc"/>
        <property name="subcategory" direction="asc"/>
        <property name="version" direction="asc"/>
        <property name="__key__" direction="asc"/>
    </datastore-index>

Here is a part of the DbContact class:

@PersistenceCapable(identityType = IdentityType.APPLICATION)
public class DbContact extends DbEntity {

    @PrimaryKey
    @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
    @Extension(vendorName="datanucleus", key="gae.encoded-pk",
value="true")
    private String encodedKey;

        @Persistent
        private String version
        @Persistent
        private List<String> category;
        @Persistent
        private List<String> subcategory;
        @Persistent
        private String isCustomerProfile;
        @Persistent
        private List<String> keyWords_S;

I shoud mention the i also have an index similar to the one above, the
only difference being "category", instead of "subcategory", which was
created succesfully and is now "Serving".
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to