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

org.springframework.data.cassandra.core.cql.QueryOptions Maven / Gradle / Ivy

There is a newer version: 4.2.5
Show newest version
/*
 * Copyright 2013-2020 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.springframework.data.cassandra.core.cql;

import lombok.EqualsAndHashCode;

import java.time.Duration;
import java.util.concurrent.TimeUnit;

import org.springframework.lang.Nullable;
import org.springframework.util.Assert;

import com.datastax.oss.driver.api.core.ConsistencyLevel;
import com.datastax.oss.driver.api.core.config.DriverExecutionProfile;

/**
 * Cassandra Query Options for queries. {@link QueryOptions} allow tuning of various query options on a per-request
 * level. Only options that are set are applied to queries.
 *
 * @author David Webb
 * @author Mark Paluch
 */
@EqualsAndHashCode
public class QueryOptions {

	private static final QueryOptions EMPTY = QueryOptions.builder().build();

	private final @Nullable ConsistencyLevel consistencyLevel;

	private final ExecutionProfileResolver executionProfileResolver;

	private final @Nullable Integer pageSize;

	private final @Nullable ConsistencyLevel serialConsistencyLevel;

	private final Duration timeout;

	private final @Nullable Boolean tracing;

	protected QueryOptions(@Nullable ConsistencyLevel consistencyLevel, ExecutionProfileResolver executionProfileResolver,
			@Nullable Integer pageSize, @Nullable ConsistencyLevel serialConsistencyLevel, Duration timeout,
			@Nullable Boolean tracing) {

		this.consistencyLevel = consistencyLevel;
		this.executionProfileResolver = executionProfileResolver;
		this.pageSize = pageSize;
		this.serialConsistencyLevel = serialConsistencyLevel;
		this.timeout = timeout;
		this.tracing = tracing;
	}

	/**
	 * Create a new {@link QueryOptionsBuilder}.
	 *
	 * @return a new {@link QueryOptionsBuilder}.
	 * @since 1.5
	 */
	public static QueryOptionsBuilder builder() {
		return new QueryOptionsBuilder();
	}

	/**
	 * Create default {@link QueryOptions}.
	 *
	 * @return default {@link QueryOptions}.
	 * @since 2.0
	 */
	public static QueryOptions empty() {
		return EMPTY;
	}

	/**
	 * Create a new {@link QueryOptionsBuilder} to mutate properties of this {@link QueryOptions}.
	 *
	 * @return a new {@link QueryOptionsBuilder} initialized with this {@link QueryOptions}.
	 * @since 2.0
	 */
	public QueryOptionsBuilder mutate() {
		return new QueryOptionsBuilder(this);
	}

	/**
	 * @return the the driver {@link ConsistencyLevel}.
	 * @since 1.5
	 */
	@Nullable
	protected ConsistencyLevel getConsistencyLevel() {
		return this.consistencyLevel;
	}

	/**
	 * @return the the {@link ExecutionProfileResolver}.
	 * @since 3.0
	 */
	protected ExecutionProfileResolver getExecutionProfileResolver() {
		return this.executionProfileResolver;
	}

	/**
	 * @return the number of rows to fetch per chunking request. May be {@literal null} if not set.
	 * @since 1.5
	 */
	@Nullable
	protected Integer getPageSize() {
		return this.pageSize;
	}

	/**
	 * @return the command timeout. May be {@link Duration#isNegative() negative} if not set.
	 * @since 1.5
	 * @see com.datastax.oss.driver.api.core.cql.Statement#setTimeout(Duration)
	 * @deprecated since 3.0, use {@link #getTimeout()} instead.
	 */
	@Deprecated
	protected Duration getReadTimeout() {
		return getTimeout();
	}

	/**
	 * @return the command timeout. May be {@link Duration#isNegative() negative} if not set.
	 * @since 3.0
	 * @see com.datastax.oss.driver.api.core.cql.Statement#setTimeout(Duration)
	 */
	protected Duration getTimeout() {
		return this.timeout;
	}

	/**
	 * @return the the serial {@link ConsistencyLevel}.
	 * @since 3.0
	 * @see com.datastax.oss.driver.api.core.cql.Statement#setSerialConsistencyLevel(ConsistencyLevel)
	 */
	@Nullable
	protected ConsistencyLevel getSerialConsistencyLevel() {
		return this.serialConsistencyLevel;
	}

	/**
	 * @return whether to enable tracing. May be {@literal null} if not set.
	 */
	@Nullable
	protected Boolean getTracing() {
		return this.tracing;
	}

	/**
	 * Builder for {@link QueryOptions}.
	 *
	 * @author Mark Paluch
	 * @since 1.5
	 */
	public static class QueryOptionsBuilder {

		protected @Nullable ConsistencyLevel consistencyLevel;

		protected ExecutionProfileResolver executionProfileResolver = ExecutionProfileResolver.none();

		protected @Nullable Integer pageSize;

		protected @Nullable ConsistencyLevel serialConsistencyLevel;

		protected Duration timeout = Duration.ofMillis(-1);

		protected @Nullable Boolean tracing;

		QueryOptionsBuilder() {}

		QueryOptionsBuilder(QueryOptions queryOptions) {

			this.consistencyLevel = queryOptions.consistencyLevel;
			this.executionProfileResolver = queryOptions.executionProfileResolver;
			this.pageSize = queryOptions.pageSize;
			this.serialConsistencyLevel = queryOptions.serialConsistencyLevel;
			this.timeout = queryOptions.timeout;
			this.tracing = queryOptions.tracing;
		}

		/**
		 * Sets the {@link ConsistencyLevel} to use.
		 *
		 * @param consistencyLevel must not be {@literal null}.
		 * @return {@code this} {@link QueryOptionsBuilder}
		 */
		public QueryOptionsBuilder consistencyLevel(ConsistencyLevel consistencyLevel) {

			Assert.notNull(consistencyLevel, "ConsistencyLevel must not be null");

			this.consistencyLevel = consistencyLevel;

			return this;
		}

		/**
		 * Sets the {@code execution profile} to use.
		 *
		 * @param profileName must not be {@literal null} or empty.
		 * @return {@code this} {@link QueryOptionsBuilder}
		 * @since 3.0
		 * @see com.datastax.oss.driver.api.core.cql.Statement#setExecutionProfileName(String)
		 */
		public QueryOptionsBuilder executionProfile(String profileName) {
			return executionProfile(ExecutionProfileResolver.from(profileName));
		}

		/**
		 * Sets the {@link ExecutionProfileResolver} to use.
		 *
		 * @param executionProfileResolver must not be {@literal null}.
		 * @return {@code this} {@link QueryOptionsBuilder}
		 * @see com.datastax.oss.driver.api.core.cql.Statement#setExecutionProfile(DriverExecutionProfile)
		 */
		public QueryOptionsBuilder executionProfile(ExecutionProfileResolver executionProfileResolver) {

			Assert.notNull(executionProfileResolver, "ExecutionProfileResolver must not be null");

			this.executionProfileResolver = executionProfileResolver;

			return this;
		}

		/**
		 * Sets the query fetch size for {@link com.datastax.oss.driver.api.core.cql.ResultSet} chunks.
		 * 

* The fetch size controls how much resulting rows will be retrieved simultaneously (the goal being to avoid loading * too much results in memory for queries yielding large results). Please note that while value as low as 1 can be * used, it is *highly* discouraged to use such a low value in practice as it will yield very poor performance. * * @param fetchSize the number of rows to fetch per chunking request. To disable chunking of the result set, use * {@code fetchSize == Integer.MAX_VALUE}. Negative values are not allowed. * @return {@code this} {@link QueryOptionsBuilder} * @deprecated since 3.0, use {@link #pageSize(int)}. */ @Deprecated public QueryOptionsBuilder fetchSize(int fetchSize) { return pageSize(fetchSize); } /** * Sets the query fetch size for {@link com.datastax.oss.driver.api.core.cql.ResultSet} chunks. *

* The fetch size controls how much resulting rows will be retrieved simultaneously (the goal being to avoid loading * too much results in memory for queries yielding large results). Please note that while value as low as 1 can be * used, it is *highly* discouraged to use such a low value in practice as it will yield very poor performance. * * @param pageSize the number of rows to fetch per chunking request. To disable chunking of the result set, use * {@code pageSize == Integer.MAX_VALUE}. Negative values are not allowed. * @return {@code this} {@link QueryOptionsBuilder} */ public QueryOptionsBuilder pageSize(int pageSize) { Assert.isTrue(pageSize >= 0, "Page size must be greater than equal to zero"); this.pageSize = pageSize; return this; } /** * Sets the read timeout in milliseconds. Overrides the default per-host read timeout. * * @param readTimeout the read timeout in milliseconds. Negative values are not allowed. If it is {@code 0}, the * read timeout will be disabled for this statement. * @return {@code this} {@link QueryOptionsBuilder} * @see com.datastax.oss.driver.api.core.cql.SimpleStatement#setTimeout(Duration) * @deprecated since 3.0, use {@link #timeout(Duration)} */ @Deprecated public QueryOptionsBuilder readTimeout(long readTimeout) { return timeout(Duration.ofMillis(readTimeout)); } /** * Sets the read timeout. Overrides the default per-host read timeout. * * @param readTimeout the read timeout value. Negative values are not allowed. If it is {@code 0}, the read timeout * will be disabled for this statement. * @param timeUnit the {@link TimeUnit} for the supplied timeout; must not be {@literal null}. * @return {@code this} {@link QueryOptionsBuilder} * @see com.datastax.oss.driver.api.core.cql.SimpleStatement#setTimeout(Duration) * @deprecated since 2.0, use {@link #timeout(Duration)}. */ @Deprecated public QueryOptionsBuilder readTimeout(long readTimeout, TimeUnit timeUnit) { Assert.isTrue(readTimeout >= 0, "ReadTimeout must be greater than equal to zero"); Assert.notNull(timeUnit, "TimeUnit must not be null"); return timeout(Duration.ofMillis(timeUnit.toMillis(readTimeout))); } /** * Sets the read timeout. Overrides the default per-host read timeout. * * @param readTimeout the read timeout. Negative values are not allowed. If it is {@code 0}, the read timeout will * be disabled for this statement. * @return {@code this} {@link QueryOptionsBuilder} * @see com.datastax.oss.driver.api.core.cql.SimpleStatement#setTimeout(Duration) * @since 2.0 * @deprecated since 3.0, use {@link #timeout(Duration)} */ @Deprecated public QueryOptionsBuilder readTimeout(Duration readTimeout) { Assert.isTrue(!readTimeout.isZero() && !readTimeout.isNegative(), "ReadTimeout must be greater than equal to zero"); this.timeout = readTimeout; return this; } /** * Sets the serial {@link ConsistencyLevel} to use. * * @param consistencyLevel must not be {@literal null}. * @return {@code this} {@link QueryOptionsBuilder} */ public QueryOptionsBuilder serialConsistencyLevel(ConsistencyLevel consistencyLevel) { Assert.notNull(consistencyLevel, "Serial ConsistencyLevel must not be null"); this.serialConsistencyLevel = consistencyLevel; return this; } /** * Sets the request timeout. Overrides the default timeout. * * @param timeout the read timeout. Negative values are not allowed. If it is {@code 0}, the read timeout will be * disabled for this statement. * @return {@code this} {@link QueryOptionsBuilder} * @see com.datastax.oss.driver.api.core.cql.SimpleStatement#setTimeout(Duration) * @since 3.0 */ public QueryOptionsBuilder timeout(Duration timeout) { Assert.isTrue(!timeout.isZero() && !timeout.isNegative(), "ReadTimeout must be greater than equal to zero"); this.timeout = timeout; return this; } /** * Enables statement tracing. * * @param tracing {@literal true} to enable statement tracing to the executed statements. * @return {@code this} {@link QueryOptionsBuilder} */ public QueryOptionsBuilder tracing(boolean tracing) { this.tracing = tracing; return this; } /** * Enables statement tracing. * * @return {@code this} {@link QueryOptionsBuilder} */ public QueryOptionsBuilder withTracing() { return tracing(true); } /** * Builds a new {@link QueryOptions} with the configured values. * * @return a new {@link QueryOptions} with the configured values */ public QueryOptions build() { return new QueryOptions(this.consistencyLevel, this.executionProfileResolver, this.pageSize, this.serialConsistencyLevel, this.timeout, this.tracing); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy