All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ler-io.elasticsearch-impl.0.1.2.source-code.reference.conf Maven / Gradle / Ivy

The newest version!
euler {
	http-api {
		elasticsearch {
			username = "admin"
			password = "admin"
			hosts = [ "http://localhost:9200" ]
			ssl = {
				certificate-authorities = "/src/docker/dev-certificates/root-ca.pem"
			}
			auto-initialize-indices = yes
			job-index = {
				name = "euler-jobs"
				mappings: {
					dynamic: strict
					properties: {
						status: { type: keyword }
						creation-date: { type: date }
						enqueued-date: { type: date }
						start-date: { type: date }
						end-date: { type: date }
						config: {
							properties: {},
							enabled: false
							dynamic: true
						}
						seed: { type: keyword }
					}
				}
			}
			template-index = {
				name = "euler-templates"
				mappings: {
					dynamic: strict
					properties: {
						name: {
							type: text
						}
						config: { type: keyword }
					}
				}
			}
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy