Failed to create index..Please help

[2016-07-20 16:18:08,400][DEBUG][action.admin.indices.create] [ElasticSearch-14] [content] failed to create
org.elasticsearch.index.mapper.MapperParsingException: mapping [logs]
at org.elasticsearch.cluster.metadata.MetaDataCreateIndexService$2.execute(MetaDataCreateIndexService.java:394)
at org.elasticsearch.cluster.service.InternalClusterService$UpdateTask.run(InternalClusterService.java:374)
at org.elasticsearch.common.util.concurrent.PrioritizedEsThreadPoolExecutor$TieBreakingPrioritizedRunnable.runAndClean(PrioritizedEsThreadPoolExecutor.java:196)
at org.elasticsearch.common.util.concurrent.PrioritizedEsThreadPoolExecutor$TieBreakingPrioritizedRunnable.run(PrioritizedEsThreadPoolExecutor.java:162)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
Caused by: org.elasticsearch.index.mapper.MapperParsingException: Field [title] cannot be analyzed and have doc values
at org.elasticsearch.index.mapper.core.StringFieldMapper.(StringFieldMapper.java:207)
at org.elasticsearch.index.mapper.core.StringFieldMapper$Builder.build(StringFieldMapper.java:140)
at org.elasticsearch.index.mapper.core.StringFieldMapper$Builder.build(StringFieldMapper.java:72)
at org.elasticsearch.index.mapper.object.ObjectMapper$Builder.build(ObjectMapper.java:165)
at org.elasticsearch.index.mapper.DocumentMapper$Builder.(DocumentMapper.java:167)
at org.elasticsearch.index.mapper.MapperBuilders.doc(MapperBuilders.java:41)
at org.elasticsearch.index.mapper.DocumentMapperParser.parse(DocumentMapperParser.java:211)
Here is a portion of the mapping:
curl -XPUT localhost:9200/_template/content -d '
{
"template": "content*",
"settings": {
"index.mapper.dynamic": "false",
"index.number_of_replicas": "1",
"index.number_of_shards": "17"
},
"mappings": {
"logs": {
"properties": {
"@timestamp": {
"type": "date",
"format": "dateOptionalTime",
"doc_values": true
},
"content": {
"type": "string",
"doc_values": true
},
"keyword": {
"type": "object",
"doc_values": true
},
"title": {
"type": "string",
"doc_values": true
},
"url": {
"type": "string",
"index": "not_analyzed",
"doc_values": true
},

You need to add [quote="genesis, post:1, topic:56003"]
"index": "not_analyzed",
[/quote]

to mapping for "title"

Thanks it works