Re: Working With Prepared Statements

2017-08-30 Thread Shalom Sagges
Thanks guys for all the info! Shalom Sagges DBA T: +972-74-700-4035 We Create Meaningful Connections On Wed, Aug 30, 2017 at 10:54

Re: Working With Prepared Statements

2017-08-30 Thread Oleksandr Shulgin
On Tue, Aug 29, 2017 at 12:33 PM, Shalom Sagges wrote: > Insights, anyone? > There were reports of Cassandra failing to start due to trying to load the prepared statements from a cached table. This can only affect you if you have a lot (tens of thousands, IIRC) of

Re: Working With Prepared Statements

2017-08-29 Thread kurt greaves
>From memory prepared statements that are idempotent will not be set as idempotent, so if you are using prepared statements that you know are idempotent you should make sure to set idempotent on them. For java driver see https://github.com/datastax/java-driver/tree/3.x/manual/idempotence​

Re: Working With Prepared Statements

2017-08-29 Thread Shalom Sagges
t;>>> On Tue, Aug 29, 2017 at 2:18 PM, Matija Gobec <matija0...@gmail.com> >>>>>> wrote: >>>>>> >>>>>>> Do you have any concrete questions re prepared statements? >>>>>>> >>>>&g

Re: Working With Prepared Statements

2017-08-29 Thread I PVP
gt; We Create Meaningful Connections On Mon, Aug 28, 2017 at 10:43 AM, Shalom Sagges <shal...@liveperson.com<mailto:shal...@liveperson.com>> wrote: Hi Everyone, I want to start working with Prepared Statements. I've read https://docs.datastax.com/en/developer/java-drive

Re: Working With Prepared Statements

2017-08-29 Thread Shalom Sagges
? >>>>>> >>>>>> They are faster to execute since the statement is already parsed and >>>>>> in C* and you just pass the parameters. No additional statement >>>>>> processing >>>>>> is needed. >>>>

Re: Working With Prepared Statements

2017-08-29 Thread Nicolas Guyomar
e the statement is already parsed and >>>>> in C* and you just pass the parameters. No additional statement processing >>>>> is needed. >>>>> >>>>> Matija >>>>> >>>>> On Tue, Aug 29, 2017 at 12:33 PM, Shalom Sagges < >>>>&

Re: Working With Prepared Statements

2017-08-29 Thread Shalom Sagges
st pass the parameters. No additional statement processing is >>>> needed. >>>> >>>> Matija >>>> >>>> On Tue, Aug 29, 2017 at 12:33 PM, Shalom Sagges <shal...@liveperson.com >>>> > wrote: >>>> >

Re: Working With Prepared Statements

2017-08-29 Thread Nicolas Guyomar
2:33 PM, Shalom Sagges <shal...@liveperson.com> >>> wrote: >>> >>>> Insights, anyone? >>>> >>>> >>>> Shalom Sagges >>>> DBA >>>> <http://www.linkedin.com/company/164748> >>>> <http://twit

Re: Working With Prepared Statements

2017-08-29 Thread Matija Gobec
ne? >>> >>> >>> Shalom Sagges >>> DBA >>> <http://www.linkedin.com/company/164748> <http://twitter.com/liveperson> >>> <http://www.facebook.com/LivePersonInc> We Create Meaningful Connections >>> >>> >

Re: Working With Prepared Statements

2017-08-29 Thread Shalom Sagges
agges >> DBA >> <http://www.linkedin.com/company/164748> <http://twitter.com/liveperson> >> <http://www.facebook.com/LivePersonInc> We Create Meaningful Connections >> >> >> >> On Mon, Aug 28, 2017 at 10:43 AM, Shalom Sagges <shal...@

Re: Working With Prepared Statements

2017-08-29 Thread Matija Gobec
, Shalom Sagges <shal...@liveperson.com> > wrote: > >> Hi Everyone, >> >> I want to start working with Prepared Statements. >> >> I've read https://docs.datastax.com/en/developer/java-driver/3.1/ >> manual/statements/prepared/ and just wanted to k

Re: Working With Prepared Statements

2017-08-29 Thread Shalom Sagges
gt; Hi Everyone, > > I want to start working with Prepared Statements. > > I've read https://docs.datastax.com/en/developer/java-driver/ > 3.1/manual/statements/prepared/ and just wanted to know if there are any > other considerations I need to take into account when deciding to use &g

Working With Prepared Statements

2017-08-28 Thread Shalom Sagges
Hi Everyone, I want to start working with Prepared Statements. I've read https://docs.datastax.com/en/developer/java-driver/3.1/manual/statements/prepared/ and just wanted to know if there are any other considerations I need to take into account when deciding to use Prepared Statements. Thanks