Skip to content

Commit 3c46c40

Browse files
Replaced EOL 7.1 with evergreen attribute
1 parent ea6eaf5 commit 3c46c40

10 files changed

Lines changed: 16 additions & 16 deletions

modules/concept-docs/pages/analytics-for-sdk-users.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ For complex and long-running queries, involving large ad hoc join, set, aggregat
2121
2222
== Additional Resources
2323
24-
* Start with our xref:7.1@server:analytics:primer-beer.adoc[introductory primer].
24+
* Start with our xref:{version-server}@server:analytics:primer-beer.adoc[introductory primer].
2525
* Read the practical introduction xref:howtos:analytics-using-sdk.adoc[using analytics from the SDK].

modules/concept-docs/pages/collections.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
[abstract]
77
{description}
88

9-
The Collections feature in Couchbase Server is fully implemented in the 3.2 API version of the Couchbase SDK.
9+
The Collections feature in Couchbase Server is fully implemented in the 3.x API versions of the Couchbase SDK.
1010

11-
Information on _Collections_ can be found in the xref:7.1@server:learn:data/scopes-and-collections.adoc[server docs].
11+
Information on _Collections_ can be found in the xref:{version-server}@server:learn:data/scopes-and-collections.adoc[server docs].
1212

1313
== Using Collections & Scopes
1414

modules/concept-docs/pages/compression.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Documents may already be stored compressed with Snappy on the server.
1414
New documents may be passed from client applications to the server in compressed form, saving around 40% in bandwidth (depending on the document content and size), and also transmission time.
1515
These operations take place automatically, after the SDK negotiates the capability with the server, and do not require any changes on the client side.
1616

17-
For SDKs with Snappy compression enabled, documents will be automatically compressed if the xref:7.1@server:learn:buckets-memory-and-storage/compression.adoc#compression-modes[Couchbase Server] is not set to `Off` for Compression see xref:#minimum-size[see below].
17+
For SDKs with Snappy compression enabled, documents will be automatically compressed if the xref:{version-server}@server:learn:buckets-memory-and-storage/compression.adoc#compression-modes[Couchbase Server] is not set to `Off` for Compression see xref:#minimum-size[see below].
1818
Instructions to disable compression can be found at xref:#threshold[the bottom of the page].
1919

2020
== Limits

modules/concept-docs/pages/documents.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ If you wish to only modify certain parts of a document, you can use xref:subdocu
5757
include::devguide:example$java/DocumentsExample.java[tag=mutate-in]
5858
----
5959
60-
or xref:7.1@server:n1ql:n1ql-language-reference/update.adoc[N1QL UPDATE] to update documents based on specific query criteria:
60+
or xref:{version-server}@server:n1ql:n1ql-language-reference/update.adoc[N1QL UPDATE] to update documents based on specific query criteria:
6161
6262
[source,sql]
6363
----

modules/concept-docs/pages/n1ql-query.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ include::{version-common}@sdk:shared:partial$n1ql-queries.adoc[tag=index-consist
113113

114114
The following options are available:
115115

116-
include::7.1@server:learn:page$services-and-indexes/indexes/index-replication.adoc[tag=scan_consistency]
116+
include::{version-server}@server:learn:page$services-and-indexes/indexes/index-replication.adoc[tag=scan_consistency]
117117

118118
Consider the following snippet:
119119

modules/concept-docs/pages/querying-your-data.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ You can follow the links below for more information on the services with the Cou
284284
* xref:concept-docs:n1ql-query.adoc[Query Service]
285285
* xref:concept-docs:full-text-search-overview.adoc[Full Text Search]
286286
* xref:concept-docs:understanding-views.adoc[MapReduce Views]
287-
* xref:7.1@server:connectors:intro.adoc[Connectors]
287+
* xref:{version-server}@server:connectors:intro.adoc[Connectors]
288288
289289
290290
== Use Cases
@@ -299,7 +299,7 @@ If you know the path to the piece of information that you need within a JSON doc
299299
300300
=== Long Running Queries & Big Data
301301
302-
xref:7.1@server:learn:services-and-indexes/services/analytics-service.adoc[Couchbase Analytics Service (CBAS)] performs well on huge datasets, with complex aggregations, and uses {sqlpp} for Analytics, which gives a similar query experience to {sqlpp} for Query.
302+
xref:{version-server}@server:learn:services-and-indexes/services/analytics-service.adoc[Couchbase Analytics Service (CBAS)] performs well on huge datasets, with complex aggregations, and uses {sqlpp} for Analytics, which gives a similar query experience to {sqlpp} for Query.
303303
CBAS supports workloads involving only SELECT (not INSERT or UPDATE), and uses local secondary indexes.
304304
Scalable performance comes from multi-node partitioned-parallel join, sort, aggregate, and grouped aggregate operators, and multiple storage devices (vbuckets over several nodes).
305305
@@ -342,10 +342,10 @@ Use the Full Text Search (FTS) service when you want to take advantage of natura
342342
For phrase matching, over free-form text, or matching over word stems, FTS is a powerful solution.
343343
344344
There are more concepts to learn, as FTS offers a very flexible service.
345-
In particular, care should be taken over building indexes, to stop them becoming unnecessarily large -- see our xref:7.1@server:fts:full-text-intro.adoc[FTS documentation].
345+
In particular, care should be taken over building indexes, to stop them becoming unnecessarily large -- see our xref:{version-server}@server:fts:full-text-intro.adoc[FTS documentation].
346346
Once again, the SDK abstracts away much of the complexity from deeply nested queries, and the interface is similar to our Query Service.
347347
348-
From Couchbase Server 6.5, xref:7.1@server:n1ql:n1ql-language-reference/searchfun.adoc[Search Functions] allow the use of FTS _within_ {sqlpp} queries.
348+
From Couchbase Server 6.5, xref:{version-server}@server:n1ql:n1ql-language-reference/searchfun.adoc[Search Functions] allow the use of FTS _within_ {sqlpp} queries.
349349
350350
351351
=== Querying

modules/howtos/pages/analytics-using-sdk.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ or the Enterprise Edition of self-managed Couchbase Server.
1919

2020
== Getting Started
2121

22-
After familiarizing yourself with our xref:7.1@server:analytics:primer-beer.adoc[introductory primer],
22+
After familiarizing yourself with our xref:{version-server}@server:analytics:primer-beer.adoc[introductory primer],
2323
in particular creating a dataset and linking it to a bucket, try Couchbase Analytics using the Java SDK.
2424
Intentionally, the API for analytics is nearly identical to that of the query service.
2525

modules/howtos/pages/kv-operations.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ include::{version-common}@sdk:shared:partial$atomic.adoc[tag=xdcr]
309309

310310
== Scoped KV Operations
311311

312-
It is possible to perform scoped key-value operations on named xref:7.1@server:learn:data/scopes-and-collections.adoc[`Collections`] _with Couchbase Server release 7.x_.
312+
It is possible to perform scoped key-value operations on named xref:{version-server}@server:learn:data/scopes-and-collections.adoc[`Collections`] _with Couchbase Server release 7.x_.
313313
See the https://docs.couchbase.com/sdk-api/couchbase-java-client/com/couchbase/client/java/Collection.html[API docs] for more information.
314314

315315
Here is an example showing an upsert in the `users` collection, which lives in the `travel-sample.tenant_agent_00` keyspace:

modules/howtos/pages/sqlpp-queries-with-sdk.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ NOTE: {sqlpp} is not the only query option in Couchbase.
262262
Be sure to check that xref:concept-docs:data-services.adoc[your use case fits your selection of query service].
263263
264264
* For a deeper dive into {sqlpp} from the SDK, refer to our xref:concept-docs:n1ql-query.adoc[{sqlpp} SDK concept doc].
265-
* The xref:7.1@server:n1ql:n1ql-language-reference/index.adoc[Server doc {sqlpp} intro] introduces a complete guide to the {sqlpp} language, including all of the latest additions.
265+
* The xref:{version-server}@server:n1ql:n1ql-language-reference/index.adoc[Server doc {sqlpp} intro] introduces a complete guide to the {sqlpp} language, including all of the latest additions.
266266
* The http://query.pub.couchbase.com/tutorial/#1[{sqlpp} interactive tutorial] is a good introduction to the basics of {sqlpp} use.
267-
* For scaling up queries, be sure to xref:7.1@server:learn:services-and-indexes/indexes/index-replication.adoc[read up on Indexes].
267+
* For scaling up queries, be sure to xref:{version-server}@server:learn:services-and-indexes/indexes/index-replication.adoc[read up on Indexes].
268268
* Read more on xref:concept-docs:http-services.adoc#long-running-queries-big-data[when to choose the Analytics service].

modules/project-docs/pages/distributed-acid-transactions-migration-guide.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ We subsequently chose to integrate transactions directly into the SDKs with the
1212

1313
This document details the small changes that existing users of the legacy transactions library need to make, to migrate to the SDK-integrated version.
1414

15-
The xref:3.2@java-sdk:project-docs:distributed-transactions-java-release-notes.adoc[legacy transactions library] will continue to be supported with bugfixes for some time, but new transaction features will only be added to the SDK and it is recommended that all users migrate.
15+
The https://docs-archive.couchbase.com/java-sdk/3.2/project-docs/distributed-transactions-java-release-notes.html[legacy transactions library] will continue to be supported with bugfixes for some time, but new transaction features will only be added to the SDK and it is recommended that all users migrate.
1616

1717
== Accessing transactions
1818

@@ -184,5 +184,5 @@ include::devguide:example$java/TransactionsMigration.java[tag=log,indent=0]
184184

185185
== Further Reading
186186

187-
* There's plenty of explanation about how Transactions work in Couchbase in our xref:7.1@server:learn:data/transactions.adoc[Transactions documentation].
187+
* There's plenty of explanation about how Transactions work in Couchbase in our xref:{version-server}@server:learn:data/transactions.adoc[Transactions documentation].
188188
* The xref:howtos:distributed-acid-transactions-from-the-sdk.adoc[Java SDK transactions documentation].

0 commit comments

Comments
 (0)