Re: ANN: Couchbase Mobile 1.2 is released!

2016-09-20 Thread atom992
ok it works now.Thank you.

On Wednesday, September 21, 2016 at 7:40:43 AM UTC+8, ad...@couchbase.com 
wrote:
>
> That's been updated now - it should have the correct version available 
> from the download page now.  Thanks for pointing that out.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Couchbase Mobile" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mobile-couchbase+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/mobile-couchbase/ca3616c0-d3c7-4ada-a1c9-5c79887481ef%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ANN: Couchbase Mobile 1.2 is released!

2016-09-20 Thread adamf
That's been updated now - it should have the correct version available from 
the download page now.  Thanks for pointing that out.

-- 
You received this message because you are subscribed to the Google Groups 
"Couchbase Mobile" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mobile-couchbase+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/mobile-couchbase/dd62ca0a-3572-4829-8fc9-ba81050132a3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ANN: Couchbase Mobile 1.2 is released!

2016-09-20 Thread atom992
It still the same 
http://packages.couchbase.com/releases/couchbase-sync-gateway/1.3.1/couchbase-sg-accel-enterprise_1.3.1-16_x86_64.tar.gz


On Wednesday, September 21, 2016 at 1:04:18 AM UTC+8, ad...@couchbase.com 
wrote:
>
> @atom992 All web traffic should still be directed at the Sync Gateway 
> node.  The sg_accel node moves the server mutation listener and channel 
> caching work out of the individual Sync Gateway nodes - clients should be 
> communicating with the sync_gateway node in the way they always have.
>
> It looks like there's a packaging problem for Mac sg_accel - looking into 
> that now.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Couchbase Mobile" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mobile-couchbase+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/mobile-couchbase/6ff54855-9193-4692-9b45-ff4d2bc53d72%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ANN: Couchbase Mobile 1.2 is released!

2016-09-20 Thread adamf
@atom992 All web traffic should still be directed at the Sync Gateway node. 
 The sg_accel node moves the server mutation listener and channel caching 
work out of the individual Sync Gateway nodes - clients should be 
communicating with the sync_gateway node in the way they always have.

It looks like there's a packaging problem for Mac sg_accel - looking into 
that now.

-- 
You received this message because you are subscribed to the Google Groups 
"Couchbase Mobile" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mobile-couchbase+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/mobile-couchbase/ddceb9a8-1023-4df2-a00d-a44b731f710c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ANN: Couchbase Mobile 1.2 is released!

2016-09-19 Thread atom992
I am download sg_accel for MAC 
from 
http://packages.couchbase.com/releases/couchbase-sync-gateway/1.3.1/couchbase-sg-accel-enterprise_1.3.1-16_x86_64.tar.gz
but there is no sg_accel commend,and the file size is the same as 
couchbase-sync-gateway/bin/sync_gateway 
the size is 24017612.



On Tuesday, September 20, 2016 at 12:02:49 AM UTC+8, atom992 wrote:
>
> Thank you. some questions:
> The architecture  of My project looks like as following:
>
> CBLite  <--> SG
>^
>|
>v
>   Web
>
> How should I configure CBLite side and Web side for add SG Accel Cluster?
> As I understand, SG Accel Cluster offer write node, and SG Cluster offer 
> read node,
> so CBLite read data from SG,and write data to SG Accel;
> Web read data from SG,and write data to SG Accel;
> Am I right?
>
> For CBLite, when I need *pull*  data from SG, I need post /_replicate as 
> following
> ```
> {
> "headers": {
>   
> "Cookie":"SyncGatewaySession=287d228958b5d02c3dd652900cd74035a830165c"
>   },
> "source": {
>   "headers": {
>   
> "Cookie":"SyncGatewaySession=287d228958b5d02c3dd652900cd74035a830165c"
>   },
>   "url":"http://*SG_Cluster*:4984/sgdb/;
> },
> "target" : "cbldb",
> "continuous" : true
> }
> ```
>
> when I need *push*  data to SG, I need post /_replicate as following
> ```
> {
> "headers": {
>   
> "Cookie":"SyncGatewaySession=287d228958b5d02c3dd652900cd74035a830165c"
>   },
> "source":"cbldb" ,
> "target" : {
>   "headers": {
>   
> "Cookie":"SyncGatewaySession=287d228958b5d02c3dd652900cd74035a830165c"
>   },
>   "url":"http://*SG_Accel_Cluster*:4984/sgdb/;
> },
> "continuous" : true
> }
> ```
>
> And for Web, When I need *read* data from SG, I need get data from
> ```
> http://*SG_Cluster*:4984/sgdb/
> ```
> And when I need *write* data to SG,I need post data to
> ```
> http://*SG_Accel_Cluster*:4984/sgdb/?rev= -d" json data>"
> ```
>
> And Can I deploy SG_Accel_Node And SG_Node on the same mathine?
>
>
>
> On Saturday, September 17, 2016 at 12:58:31 AM UTC+8, James Nocentini 
> wrote:
>>
>> Preview docs for SG Accel are at 
>> https://github.com/couchbase/sync_gateway/wiki/Introduction-to-Sync-Gateway-Accelerator
>>
>> On Friday, 16 September 2016 16:36:49 UTC+1, atom992 wrote:
>>>
>>> Any update about document of Sync Gateway Accelerator?
>>>
>>>
>>> On Tuesday, February 16, 2016 at 12:27:33 AM UTC+8, Traun Leyden wrote:

 Hey Todd,

 The docs on sg_accel are still pending, but we're looking to have them 
 pushed up in the next week or so.

 In the meantime we have some rough notes here:

 https://github.com/couchbase/sync_gateway/wiki/Sync-Gateway-1.2-Changes

 Also, anything specific you are looking for?  Are you looking to find 
 out how to use it, how it works, or both?


 On Sat, Feb 13, 2016 at 10:18 AM, Todd Freese  
 wrote:

> Is there any documentation on Sync Gateway Accelerator?
>
> T
>
> --
> You received this message because you are subscribed to the Google 
> Groups "Couchbase Mobile" group.
> To unsubscribe from this group and stop receiving emails from it, send 
> an email to mobile-couchba...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/mobile-couchbase/75274814-a7e6-4db9-ab56-d03610a9c21c%40googlegroups.com
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 
You received this message because you are subscribed to the Google Groups 
"Couchbase Mobile" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mobile-couchbase+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/mobile-couchbase/752e4fb8-f38d-41cc-82ef-1a168dff40ea%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ANN: Couchbase Mobile 1.2 is released!

2016-09-19 Thread atom992
Thank you. some questions:
The architecture  of My project looks like as following:

CBLite  <--> SG
   ^
   |
   v
  Web

How should I configure CBLite side and Web side for add SG Accel Cluster?
As I understand, SG Accel Cluster offer write node, and SG Cluster offer 
read node,
so CBLite read data from SG,and write data to SG Accel;
Web read data from SG,and write data to SG Accel;
Am I right?

For CBLite, when I need *pull*  data from SG, I need post /_replicate as 
following
```
{
"headers": {
  
"Cookie":"SyncGatewaySession=287d228958b5d02c3dd652900cd74035a830165c"
  },
"source": {
  "headers": {
  
"Cookie":"SyncGatewaySession=287d228958b5d02c3dd652900cd74035a830165c"
  },
  "url":"http://*SG_Cluster*:4984/sgdb/;
},
"target" : "cbldb",
"continuous" : true
}
```

when I need *push*  data to SG, I need post /_replicate as following
```
{
"headers": {
  
"Cookie":"SyncGatewaySession=287d228958b5d02c3dd652900cd74035a830165c"
  },
"source":"cbldb" ,
"target" : {
  "headers": {
  
"Cookie":"SyncGatewaySession=287d228958b5d02c3dd652900cd74035a830165c"
  },
  "url":"http://*SG_Accel_Cluster*:4984/sgdb/;
},
"continuous" : true
}
```

And for Web, When I need *read* data from SG, I need get data from
```
http://*SG_Cluster*:4984/sgdb/
```
And when I need *write* data to SG,I need post data to
```
http://*SG_Accel_Cluster*:4984/sgdb/?rev= -d""
```

And Can I deploy SG_Accel_Node And SG_Node on the same mathine?



On Saturday, September 17, 2016 at 12:58:31 AM UTC+8, James Nocentini wrote:
>
> Preview docs for SG Accel are at 
> https://github.com/couchbase/sync_gateway/wiki/Introduction-to-Sync-Gateway-Accelerator
>
> On Friday, 16 September 2016 16:36:49 UTC+1, atom992 wrote:
>>
>> Any update about document of Sync Gateway Accelerator?
>>
>>
>> On Tuesday, February 16, 2016 at 12:27:33 AM UTC+8, Traun Leyden wrote:
>>>
>>> Hey Todd,
>>>
>>> The docs on sg_accel are still pending, but we're looking to have them 
>>> pushed up in the next week or so.
>>>
>>> In the meantime we have some rough notes here:
>>>
>>> https://github.com/couchbase/sync_gateway/wiki/Sync-Gateway-1.2-Changes
>>>
>>> Also, anything specific you are looking for?  Are you looking to find 
>>> out how to use it, how it works, or both?
>>>
>>>
>>> On Sat, Feb 13, 2016 at 10:18 AM, Todd Freese  
>>> wrote:
>>>
 Is there any documentation on Sync Gateway Accelerator?

 T

 --
 You received this message because you are subscribed to the Google 
 Groups "Couchbase Mobile" group.
 To unsubscribe from this group and stop receiving emails from it, send 
 an email to mobile-couchba...@googlegroups.com.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/mobile-couchbase/75274814-a7e6-4db9-ab56-d03610a9c21c%40googlegroups.com
 .
 For more options, visit https://groups.google.com/d/optout.

>>>
>>>

-- 
You received this message because you are subscribed to the Google Groups 
"Couchbase Mobile" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mobile-couchbase+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/mobile-couchbase/0e2a7fce-1463-4b35-8592-819a75ced040%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ANN: Couchbase Mobile 1.2 is released!

2016-09-16 Thread James Nocentini
Preview docs for SG Accel are 
at 
https://github.com/couchbase/sync_gateway/wiki/Introduction-to-Sync-Gateway-Accelerator

On Friday, 16 September 2016 16:36:49 UTC+1, atom992 wrote:
>
> Any update about document of Sync Gateway Accelerator?
>
>
> On Tuesday, February 16, 2016 at 12:27:33 AM UTC+8, Traun Leyden wrote:
>>
>> Hey Todd,
>>
>> The docs on sg_accel are still pending, but we're looking to have them 
>> pushed up in the next week or so.
>>
>> In the meantime we have some rough notes here:
>>
>> https://github.com/couchbase/sync_gateway/wiki/Sync-Gateway-1.2-Changes
>>
>> Also, anything specific you are looking for?  Are you looking to find out 
>> how to use it, how it works, or both?
>>
>>
>> On Sat, Feb 13, 2016 at 10:18 AM, Todd Freese  
>> wrote:
>>
>>> Is there any documentation on Sync Gateway Accelerator?
>>>
>>> T
>>>
>>> --
>>> You received this message because you are subscribed to the Google 
>>> Groups "Couchbase Mobile" group.
>>> To unsubscribe from this group and stop receiving emails from it, send 
>>> an email to mobile-couchba...@googlegroups.com.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/mobile-couchbase/75274814-a7e6-4db9-ab56-d03610a9c21c%40googlegroups.com
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"Couchbase Mobile" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mobile-couchbase+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/mobile-couchbase/5bf89ec3-8ebe-43ed-8cc8-433bfe570d89%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ANN: Couchbase Mobile 1.2 is released!

2016-09-16 Thread atom992
Any update about document of Sync Gateway Accelerator?


On Tuesday, February 16, 2016 at 12:27:33 AM UTC+8, Traun Leyden wrote:
>
> Hey Todd,
>
> The docs on sg_accel are still pending, but we're looking to have them 
> pushed up in the next week or so.
>
> In the meantime we have some rough notes here:
>
> https://github.com/couchbase/sync_gateway/wiki/Sync-Gateway-1.2-Changes
>
> Also, anything specific you are looking for?  Are you looking to find out 
> how to use it, how it works, or both?
>
>
> On Sat, Feb 13, 2016 at 10:18 AM, Todd Freese  > wrote:
>
>> Is there any documentation on Sync Gateway Accelerator?
>>
>> T
>>
>> --
>> You received this message because you are subscribed to the Google Groups 
>> "Couchbase Mobile" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to mobile-couchba...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/mobile-couchbase/75274814-a7e6-4db9-ab56-d03610a9c21c%40googlegroups.com
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Couchbase Mobile" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mobile-couchbase+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/mobile-couchbase/bfe0f060-bc88-4168-9571-7df064829bfd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ANN: Couchbase Mobile 1.2 is released!

2016-02-15 Thread Todd Freese
Looking for how to use it. 

T

-- 
You received this message because you are subscribed to the Google Groups 
"Couchbase Mobile" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mobile-couchbase+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/mobile-couchbase/436bf5d4-5207-4988-be7b-6f3f801ea332%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.