Feature Support
Connector support for specific features is shown in the following table. Key: Y - Supported; N - Not Supported; N/A - not applicable| Feature | Supported? | Notes | ||
|---|---|---|---|---|
| Admin-Defined Functions | Y | |||
| Box Plots | N | |||
| Custom SQL Queries | Y | If you need to access a BigQuery partition, explicitly include an alias for the built in partition column in your select clause, such as select *, _PARTITIONTIME as pt from projectId.datasetId.tableId. | ||
| Derived Fields (Row-Level Expressions) | Y | |||
| Distinct Counts | Y | |||
| Fast Distinct Values | N/A | |||
| Group By Multiple Fields | Y | |||
| Group By Time | Y | |||
| Group By UNIX Time | Y | |||
| Histogram Floating Point Values | Y | |||
| Histograms | Y | |||
| Kerberos Authentication | N/A | |||
| Last Value | N | |||
| Live Mode and Playback | Y | |||
| Multivalued Fields | N/A | The Couchbase & Couchbase Community Edition connector supports multivalued fields with some limitations. See the detailed description below this table. | ||
| Nested Fields | N/A | |||
| Partitions | N | |||
| Pushdown Joins for Fusion Data Sources | N | |||
| Schemas | Y | |||
| Text Search | N/A | |||
| TLS | Y | |||
| User Delegation | N | |||
| Wildcard Filters | Y | |||
| Wildcard Filters, Case-Insensitive Mode | Y | |||
| Wildcard Filters, Case-Sensitive Mode | Y | |||
- The COUNT, SUM, or AVG metric result for a computed single-value field will be inaccurate when it is combined with any multivalued field in the same query.
- The COUNT, SUM, or AVG metric result for a computed multivalued field will be inaccurate when it is combined with any other multivalued field in the same query.
- With the exception of the TEXT_TO_TIME row-level function, multivalued fields created using row-level expressions can only be used as a visual’s group or metric (and in filters when the same multivalued field is used as the visual’s group or metric).
Connect to Couchbase
To establish a connection to Couchbase, the default port is 8138. If SSL/TLS authentication is required, see Configure Couchbase TLS/SSL Support. By default, the Couchbase connector uses ports 8091, 8093, and 11210 in unencrypted mode and ports 18091, 18093, and 11207 in encrypted mode. Please make sure that these ports are not blocked by a firewall and are accessible to the connector. Ordinarily, the port shown after the colon in a Couchbase URL is ignored and the defaults are used (for example, port 9999 will be ignored incouchbase://localhost:9999). If your Couchbase installation does not use the default ports, add at least one of the following HTTP parameters and preferably one of the carrier parameters to the Couchbase connection string. An HTTP parameter is required.
Here is an example of a valid connection string SSL (encrypted case) example using non-default HTTP port 18777 and non-default carrier port 11777:
Configure Couchbase TLS/SSL Support
Couchbase can use the TLS protocol for:- Full encryption of client-side traffic with server authentication. See Connecting with SSL.
- Client authentication using X.509 certificates. This form of authentication is suitable for further Couchbase role-based access control. See Certificate-Based Authentication.
- Configure TLS Server Authentication
- Configure Client Certificate-Based Authentication for a Single Couchbase Connection
- Configure Client Certificate-Based Authentication for Multiple Couchbase Connections
Configure TLS Server Authentication
To enable TLS for the Couchbase server connection, add the following properties to theedc-couchbase.properties file:
com.couchbase.sslEnabled property must be set to true. The path you specify for the com.couchbase.sslTruststoreFile property must be accessible by the Self-Service Analytics Couchbase connector.
For information about modifying connector properties in property files, see Connector Properties and Property Files.
Configure Client Certificate-Based Authentication for a Single Couchbase Connection
If your installation only needs client certificate-based authentication for a single Self-Service Analytics Couchbase connection, specify the certificate-based authentication using connector properties. You must have a keystore containing the client’s identity as well as a keystore or truststore containing the root certificate required to authenticate the server. Use one of the following setup options:-
Use a password-protected Java keystore that contains the client’s identity and the root certificate. If you select this option, enable client certificate-based authentication by specifying the following connector properties in the
edc-couchbase.propertiesfile:Thecom.couchbase.sslEnabledandcom.couchbase.certAuthEnabledproperties must be set totrue. -
Use a password-protected Java keystore that contains only the client’s identity and a separate Java truststore containing the root certificate. This approach allows you to share a single universal truststore containing all required root certificates among different services.
If you select this option, enable client certificate-based authentication by specifying the following connector properties in the
edc-couchbase.propertiesfile:Thecom.couchbase.sslEnabledandcom.couchbase.certAuthEnabledproperties must be set totrue.
Configure Client Certificate-Based Authentication for Multiple Couchbase Connections
If your installation needs client certificate-based authentication for multiple Self-Service Analytics Couchbase connections, specify the client certificate-based authentication information using Self-Service Analytics connection parameters in the definition of each connection. You must have a keystore containing the client’s identity as well as a keystore or truststore containing the root certificate required to authenticate the server. Two new input boxes have been added in the Self-Service Analytics UI when you create a Couchbase connection. Assuming your keystore contains both the required client identity and root certificate information, specifying the keystore information using these two input boxes is sufficient.- Use the Key Store Path box to specify the path to the keystore. This path must be accessible by the Self-Service Analytics Couchbase connector, so your system administrator must upload all client keystores to the machine where the connector is running before you define the Couchbase connection in the UI.
- Use the Key Store Password box to specify the mandatory password for the keystore.
edc-couchbase.properties file: