-
Notifications
You must be signed in to change notification settings - Fork 0
/
CouchbaseFile
29 lines (29 loc) · 1.04 KB
/
CouchbaseFile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
services:
- name: 'KV'
quota: 512
- name: 'INDEX'
- name: 'QUERY'
buckets:
- name: testbucket1
withFlushEnabled: true
scopes:
- name: testScope1
collections:
- name: testCollection1
- name: testCollectionWithOnlySecondaryIndex
indexes:
- CREATE INDEX `adv_foo` ON `testbucket1`.`testScope1`.`testCollectionWithOnlySecondaryIndex`(`foo`)
- name: testCollectionWithPrimaryAndSecondaryIndex
hasPrimaryIndex: true
indexes:
- CREATE INDEX `adv_foo` ON `testbucket1`.`testScope1`.`testCollectionWithPrimaryAndSecondaryIndex`(`foo`)
- name: testCollectionWithNoIndexes
hasPrimaryIndex: false
- name: testScope2
collections:
- name: testCollectionWithTTL
maxTTL: 1
- name: testBucketWithoutIndex
hasPrimaryIndex: false
- name: testBucketWithQuota
quota: 150