-
Notifications
You must be signed in to change notification settings - Fork 234
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Add ttl and timestamp support to insert/update operations #90
Add ttl and timestamp support to insert/update operations #90
Conversation
… of CqlBatch and Mapper classes, which allows to specify a TTL and TIMESTAMP when doing an Insert.
…nd TIMESTAMP options, rather than int.
Hi @nicodeslandes, thanks for your contribution! In order for us to evaluate and accept your PR, we ask that you sign a contribution license agreement. It's all electronic and will take just minutes. Sincerely, |
You did it @nicodeslandes! Thank you for signing the Contribution License Agreement. Cheers, |
Looks good, I'll make a full review shortly. |
I don't think its a good idea to add more cql generation to the Mapper, I think the purpose of the Mapper is to not get in the way of the queries. It generates and completes the default queries, but if the user wants cql control (like in this case field TTL), the user should write the query using the other method overloads. Initially I thought it was related to protocol-level timestamp, but not query based timestamp and TTL, sorry for that. @LukeTillman: What do you think? |
Yeah, I agree about keeping the CQL generation to a minimum. Although I do think we should support protocol level timestamp in v3: https://github.com/apache/cassandra/blob/trunk/doc/native_protocol_v3.spec#L322 Since TTLs are in seconds, those are pretty easy to just provide as query parameters using the BCL (i.e. |
I wouldn't be opposed to including a query builder that builds |
The java driver has a query builder API, but we also have Linq that generates the cql queries from a typed expression. I think, from a product standpoint, it makes sense to recommend Linq when the user wants cql generation (and mapping) and recommend the Mapper when the user wants to write their own queries and get the results mapped. |
@jorgebay I believe this can be closed? Ttl is now supported as an overload to insert (but not update), and timestamp is supported on both insert and update via CqlQueryOptions. |
Thanks for the reminder! |
This PR updates the
Mapper
andCqlBatch
classes to provide the ability to specify a TTL or a TIMESTAMP option when performing an insert operation.This is done using the new
CqlQueryOptions
class when callingIMapper.Insert
, like this:The more "Java-like" syntax offered by
CqlQueryOptions
is also available:The
InsertIfExists
variant can also takeCqlQueryOptions
.The same can be implemented for Update operations, but I thought 'd get some feedback on the initial implementation for Inserts first before moving on to that.
Note
Another way to add TTL and TIMESTAMP options would have been to either change or subclass
CqlQueryOptions
. But I thought it might be better to add a new class altogether for 2 reasons:Insert
/InsertIfExists
methods already take aCqlQueryOptions
and I didn't want to change their signature, to avoid breaking backward compatibility issues. I could have subclassedCqlQueryOptions
without changing the signature ofInsert
, but then the new options would not have been easily discoverableCqlQueryOptions
define options to apply at theIStatement
level, and don't control how CQL query strings are generated, so it has a slightly different scope fromCqlInsertOptions
.